File: slop.gemspec

package info (click to toggle)
ruby-slop 4.10.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 204 kB
  • sloc: ruby: 1,163; makefile: 6
file content (19 lines) | stat: -rw-r--r-- 574 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
$:.unshift './lib'
require 'slop'

Gem::Specification.new do |s|
  s.name        = 'slop'
  s.version     = Slop::VERSION
  s.summary     = 'Simple Lightweight Option Parsing'
  s.description = 'A DSL for gathering options and parsing command line flags'
  s.author      = 'Lee Jarvis'
  s.email       = 'ljjarvis@gmail.com'
  s.homepage    = 'http://github.com/leejarvis/slop'
  s.files       = Dir.glob("**/*")
  s.license     = 'MIT'

  s.required_ruby_version = '>= 2.0.0'

  s.add_development_dependency 'rake'
  s.add_development_dependency 'minitest', '~> 5.0.0'
end