clamp 0.5.0 → 0.5.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +15 -0
- data/.rspec +1 -0
- data/Gemfile +2 -2
- data/lib/clamp/parameter.rb +13 -19
- data/lib/clamp/version.rb +1 -1
- data/spec/clamp/command_group_spec.rb +27 -26
- data/spec/clamp/command_spec.rb +166 -166
- data/spec/clamp/option_module_spec.rb +10 -10
- data/spec/clamp/option_spec.rb +37 -36
- data/spec/clamp/parameter_spec.rb +77 -44
- data/spec/spec_helper.rb +2 -2
- metadata +6 -13
data/spec/spec_helper.rb
CHANGED
metadata
CHANGED
@@ -1,15 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: clamp
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.5.
|
5
|
-
prerelease:
|
4
|
+
version: 0.5.1
|
6
5
|
platform: ruby
|
7
6
|
authors:
|
8
7
|
- Mike Williams
|
9
8
|
autorequire:
|
10
9
|
bindir: bin
|
11
10
|
cert_chain: []
|
12
|
-
date:
|
11
|
+
date: 2013-03-07 00:00:00.000000000 Z
|
13
12
|
dependencies: []
|
14
13
|
description: ! "Clamp provides an object-model for command-line utilities. \nIt handles
|
15
14
|
parsing of command-line options, and generation of usage help.\n"
|
@@ -19,6 +18,7 @@ extensions: []
|
|
19
18
|
extra_rdoc_files: []
|
20
19
|
files:
|
21
20
|
- .gitignore
|
21
|
+
- .rspec
|
22
22
|
- .travis.yml
|
23
23
|
- Gemfile
|
24
24
|
- README.markdown
|
@@ -54,33 +54,26 @@ files:
|
|
54
54
|
- spec/spec_helper.rb
|
55
55
|
homepage: http://github.com/mdub/clamp
|
56
56
|
licenses: []
|
57
|
+
metadata: {}
|
57
58
|
post_install_message:
|
58
59
|
rdoc_options: []
|
59
60
|
require_paths:
|
60
61
|
- lib
|
61
62
|
required_ruby_version: !ruby/object:Gem::Requirement
|
62
|
-
none: false
|
63
63
|
requirements:
|
64
64
|
- - ! '>='
|
65
65
|
- !ruby/object:Gem::Version
|
66
66
|
version: '0'
|
67
|
-
segments:
|
68
|
-
- 0
|
69
|
-
hash: 1042041036949173101
|
70
67
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
71
|
-
none: false
|
72
68
|
requirements:
|
73
69
|
- - ! '>='
|
74
70
|
- !ruby/object:Gem::Version
|
75
71
|
version: '0'
|
76
|
-
segments:
|
77
|
-
- 0
|
78
|
-
hash: 1042041036949173101
|
79
72
|
requirements: []
|
80
73
|
rubyforge_project:
|
81
|
-
rubygems_version:
|
74
|
+
rubygems_version: 2.0.0
|
82
75
|
signing_key:
|
83
|
-
specification_version:
|
76
|
+
specification_version: 4
|
84
77
|
summary: a minimal framework for command-line utilities
|
85
78
|
test_files:
|
86
79
|
- spec/clamp/command_group_spec.rb
|