summaryrefslogtreecommitdiff
path: root/slop.gemspec
blob: 0faafc15a21a0ddf714c7b5eb549749cc87472fe (plain)
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       = `git ls-files`.split("\n")
  s.license     = 'MIT'

  s.required_ruby_version = '>= 2.0.0'

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