blob: 1720e3100acb032cdd41f39cf392a07ce3726c5b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
$:.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 simple DSL for gathering options and parsing the command line'
s.author = 'Lee Jarvis'
s.email = 'ljjarvis@gmail.com'
s.homepage = 'http://github.com/leejarvis/slop'
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- test/*`.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
|