slop 2.4.4 → 3.0.0.rc1
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGES.md +0 -15
- data/README.md +46 -206
- data/lib/slop.rb +399 -888
- data/lib/slop/commands.rb +154 -0
- data/lib/slop/option.rb +149 -0
- data/slop.gemspec +1 -1
- data/test/commands_test.rb +58 -119
- data/test/option_test.rb +65 -159
- data/test/slop_test.rb +174 -497
- metadata +7 -5
metadata
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: slop
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
5
|
-
prerelease:
|
4
|
+
version: 3.0.0.rc1
|
5
|
+
prerelease: 6
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
8
8
|
- Lee Jarvis
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2012-
|
12
|
+
date: 2012-01-20 00:00:00.000000000 Z
|
13
13
|
dependencies: []
|
14
14
|
description: A simple DSL for gathering options and parsing the command line
|
15
15
|
email: lee@jarvis.co
|
@@ -23,6 +23,8 @@ files:
|
|
23
23
|
- README.md
|
24
24
|
- Rakefile
|
25
25
|
- lib/slop.rb
|
26
|
+
- lib/slop/commands.rb
|
27
|
+
- lib/slop/option.rb
|
26
28
|
- slop.gemspec
|
27
29
|
- test/commands_test.rb
|
28
30
|
- test/helper.rb
|
@@ -43,9 +45,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
43
45
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
44
46
|
none: false
|
45
47
|
requirements:
|
46
|
-
- - ! '
|
48
|
+
- - ! '>'
|
47
49
|
- !ruby/object:Gem::Version
|
48
|
-
version:
|
50
|
+
version: 1.3.1
|
49
51
|
requirements: []
|
50
52
|
rubyforge_project:
|
51
53
|
rubygems_version: 1.8.11
|