optplus 0.0.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +15 -0
- data/Bugs.rdoc +5 -0
- data/Gemfile +3 -0
- data/History.txt +39 -0
- data/Intro.txt +3 -0
- data/LICENCE.rdoc +159 -0
- data/README.md +296 -0
- data/bin/optplus +78 -0
- data/bin/optplus-installer +32 -0
- data/lib/optplus.rb +416 -0
- data/lib/optplus/errors.rb +31 -0
- data/lib/optplus/nested.rb +159 -0
- data/lib/optplus/version.rb +13 -0
- data/spec/optplus_spec.rb +41 -0
- data/spec/spec_helper.rb +12 -0
- data/test/conf.d/optplus.rb +1 -0
- data/test/my_nested_parser.rb +130 -0
- data/test/my_parser.rb +90 -0
- metadata +89 -0
metadata
ADDED
@@ -0,0 +1,89 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: optplus
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.8
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Dr Robert
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2013-09-13 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: !binary |-
|
15
|
+
Y29sb3JlZA==
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
17
|
+
requirements:
|
18
|
+
- - ! '>='
|
19
|
+
- !ruby/object:Gem::Version
|
20
|
+
version: '0'
|
21
|
+
type: :runtime
|
22
|
+
prerelease: false
|
23
|
+
version_requirements: !ruby/object:Gem::Requirement
|
24
|
+
requirements:
|
25
|
+
- - ! '>='
|
26
|
+
- !ruby/object:Gem::Version
|
27
|
+
version: '0'
|
28
|
+
description: ! 'Wraps Optparser into a class to enable thor-like scripting with a
|
29
|
+
few meta-methods
|
30
|
+
|
31
|
+
and a built-in command or action dispatcher. Its much smaller than Thor and aimed
|
32
|
+
|
33
|
+
at saving time when scripting with Optparser.'
|
34
|
+
email: robert@osburn-sharp.ath.cx
|
35
|
+
executables:
|
36
|
+
- optplus
|
37
|
+
- optplus-installer
|
38
|
+
extensions: []
|
39
|
+
extra_rdoc_files:
|
40
|
+
- History.txt
|
41
|
+
- Bugs.rdoc
|
42
|
+
- Intro.txt
|
43
|
+
- LICENCE.rdoc
|
44
|
+
- Gemfile
|
45
|
+
- README.md
|
46
|
+
files:
|
47
|
+
- History.txt
|
48
|
+
- Bugs.rdoc
|
49
|
+
- Intro.txt
|
50
|
+
- LICENCE.rdoc
|
51
|
+
- Gemfile
|
52
|
+
- README.md
|
53
|
+
- lib/optplus/version.rb
|
54
|
+
- lib/optplus/errors.rb
|
55
|
+
- lib/optplus/nested.rb
|
56
|
+
- lib/optplus.rb
|
57
|
+
- bin/optplus
|
58
|
+
- bin/optplus-installer
|
59
|
+
- spec/spec_helper.rb
|
60
|
+
- spec/optplus_spec.rb
|
61
|
+
- test/conf.d/optplus.rb
|
62
|
+
- test/my_parser.rb
|
63
|
+
- test/my_nested_parser.rb
|
64
|
+
homepage: ''
|
65
|
+
licenses:
|
66
|
+
- Open Software Licence v3.0
|
67
|
+
metadata: {}
|
68
|
+
post_install_message:
|
69
|
+
rdoc_options:
|
70
|
+
- --main=README.rdoc
|
71
|
+
require_paths:
|
72
|
+
- lib
|
73
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
74
|
+
requirements:
|
75
|
+
- - ! '>='
|
76
|
+
- !ruby/object:Gem::Version
|
77
|
+
version: '0'
|
78
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - ! '>='
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '0'
|
83
|
+
requirements: []
|
84
|
+
rubyforge_project:
|
85
|
+
rubygems_version: 2.0.7
|
86
|
+
signing_key:
|
87
|
+
specification_version: 4
|
88
|
+
summary: A simple wrapper class to make optparser-based scripts easy to write.
|
89
|
+
test_files: []
|