summaryrefslogtreecommitdiff
path: root/slop.gemspec
diff options
context:
space:
mode:
authorLee Jarvis <lee@jarvis.co>2012-02-07 01:26:36 +0000
committerLee Jarvis <lee@jarvis.co>2012-02-07 01:26:36 +0000
commitbbd06cc1b266fc4caa48eecffbf27542b80f2ea8 (patch)
tree4b91aca704ff65d19f0756bbd34470d0c2dea30d /slop.gemspec
parent3eaf55f7c9a42f8d49ad881bed9bb9e3ba6c6106 (diff)
downloadslop-bbd06cc1b266fc4caa48eecffbf27542b80f2ea8.tar.gz
align assignments and add minitest development dep
Diffstat (limited to 'slop.gemspec')
-rw-r--r--slop.gemspec18
1 files changed, 10 insertions, 8 deletions
diff --git a/slop.gemspec b/slop.gemspec
index 9e96056..6c28607 100644
--- a/slop.gemspec
+++ b/slop.gemspec
@@ -1,11 +1,13 @@
Gem::Specification.new do |s|
- s.name = 'slop'
- s.version = '3.0.4'
- s.summary = 'Option gathering made easy'
+ s.name = 'slop'
+ s.version = '3.0.4'
+ s.summary = 'Option gathering made easy'
s.description = 'A simple DSL for gathering options and parsing the command line'
- s.author = 'Lee Jarvis'
- s.email = 'lee@jarvis.co'
- s.homepage = 'http://github.com/injekt/slop'
- s.files = `git ls-files`.split("\n")
- s.test_files = `git ls-files -- test/*`.split("\n")
+ s.author = 'Lee Jarvis'
+ s.email = 'lee@jarvis.co'
+ s.homepage = 'http://github.com/injekt/slop'
+ s.files = `git ls-files`.split("\n")
+ s.test_files = `git ls-files -- test/*`.split("\n")
+
+ s.add_development_dependency 'minitest'
end