optparse-lite 0.0.0

Sign up to get free protection for your applications and to get access to all the features.
metadata ADDED
@@ -0,0 +1,87 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: optparse-lite
3
+ version: !ruby/object:Gem::Version
4
+ hash: 31
5
+ prerelease: false
6
+ segments:
7
+ - 0
8
+ - 0
9
+ - 0
10
+ version: 0.0.0
11
+ platform: ruby
12
+ authors:
13
+ - Chip Malice
14
+ autorequire:
15
+ bindir: bin
16
+ cert_chain: []
17
+
18
+ date: 2010-06-21 00:00:00 -04:00
19
+ default_executable:
20
+ dependencies: []
21
+
22
+ description: "You've seen Getopt::Long, OptionParser, Thor? What the world needs now is one more command-line parser. This serves as a backend command line parser that passes the option-parsing portion of it off to OptionParser, Trollop, or any other option-parser that has an adapter[^adapter]. But the parts it *does* do are really exciting: It features arbitrarily deeply nested subcommands, optionally colorized help screens with smart formatting, automatically generated usage syntaxes, manpage generation[^maybe2], lazy-loading of subcommands, and (get this:) you can turn your command line app into a web app. (is processing a form then displaying a record really that different from CLI that does the same?)[^maybe3]"
23
+ email: chip.malice@gmail.com
24
+ executables: []
25
+
26
+ extensions: []
27
+
28
+ extra_rdoc_files:
29
+ - README
30
+ files:
31
+ - NEWS.md
32
+ - README
33
+ - Rakefile
34
+ - VERSION
35
+ - doc/high-concept.md
36
+ - doc/high-concept/terms.md
37
+ - doc/installation.md
38
+ - doc/svg/not-funny.svg
39
+ - doc/usage.md
40
+ - lib/optparse-lite.rb
41
+ - lib/optparse-lite/test/gentest/gentest.rb
42
+ - lib/optparse-lite/test/gentest/tasklib.rb
43
+ - lib/optparse-lite/test/gentest/tasks.rb
44
+ - lib/optparse-lite/test/gentest/tasks/gentest.rb
45
+ - lib/optparse-lite/test/gentest/tasks/ungen.rb
46
+ - lib/optparse-lite/test/nandoc-custom-tags.rb
47
+ - lib/optparse-lite/test/nandoc-custom-tags/app.rb
48
+ - lib/optparse-lite/test/nandoc-custom-tags/playback.rb
49
+ - lib/optparse-lite/test/setup.rb
50
+ - lib/optparse-lite/treebis-extlib.rb
51
+ - test/test.rb
52
+ has_rdoc: true
53
+ homepage: http://optparse-lite.hipeland.org
54
+ licenses: []
55
+
56
+ post_install_message:
57
+ rdoc_options:
58
+ - --charset=UTF-8
59
+ require_paths:
60
+ - lib
61
+ required_ruby_version: !ruby/object:Gem::Requirement
62
+ none: false
63
+ requirements:
64
+ - - ">="
65
+ - !ruby/object:Gem::Version
66
+ hash: 3
67
+ segments:
68
+ - 0
69
+ version: "0"
70
+ required_rubygems_version: !ruby/object:Gem::Requirement
71
+ none: false
72
+ requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ hash: 3
76
+ segments:
77
+ - 0
78
+ version: "0"
79
+ requirements: []
80
+
81
+ rubyforge_project: optparse-lite
82
+ rubygems_version: 1.3.7
83
+ signing_key:
84
+ specification_version: 3
85
+ summary: You've seen Getopt::Long, OptionParser, Rake, Thor? What the world needs now is one more command-line parser. Arbitrarily deeply nested subcommands (lazily loaded), colors, manpage generation, usage syntax generation, option-parsing adapter interface.[^maybe]
86
+ test_files:
87
+ - test/test.rb