cmdparse 1.0.0
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.
- data/COPYING +340 -0
- data/ChangeLog +80 -0
- data/README +52 -0
- data/Rakefile +207 -0
- data/TODO +5 -0
- data/VERSION +1 -0
- data/doc/src/default.css +137 -0
- data/doc/src/default.template +32 -0
- data/doc/src/download.fragment +32 -0
- data/doc/src/features.fragment +8 -0
- data/doc/src/index.fragment +21 -0
- data/doc/src/metainfo.backing +25 -0
- data/lib/cmdparse.rb +305 -0
- data/setup.rb +1331 -0
- metadata +53 -0
metadata
ADDED
@@ -0,0 +1,53 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
rubygems_version: 0.8.1
|
3
|
+
specification_version: 1
|
4
|
+
name: cmdparse
|
5
|
+
version: !ruby/object:Gem::Version
|
6
|
+
version: 1.0.0
|
7
|
+
date: 2004-09-27
|
8
|
+
summary: An advanced command line parser using optparse which supports commands
|
9
|
+
require_paths:
|
10
|
+
- lib
|
11
|
+
author: Thomas Leitner
|
12
|
+
email: t_leitner@gmx.at
|
13
|
+
homepage: cmdparse.rubyforge.org
|
14
|
+
rubyforge_project: cmdparse
|
15
|
+
description: "cmdparse extends the default option parser 'optparse' by adding support for commands. Programs that use such command line interfaces are, for example, subversion's 'svn' or Rubygem's 'gem' program."
|
16
|
+
autorequire:
|
17
|
+
default_executable:
|
18
|
+
bindir: bin
|
19
|
+
has_rdoc: true
|
20
|
+
required_ruby_version: !ruby/object:Gem::Version::Requirement
|
21
|
+
requirements:
|
22
|
+
-
|
23
|
+
- ">"
|
24
|
+
- !ruby/object:Gem::Version
|
25
|
+
version: 0.0.0
|
26
|
+
version:
|
27
|
+
platform: ruby
|
28
|
+
files:
|
29
|
+
- setup.rb
|
30
|
+
- TODO
|
31
|
+
- COPYING
|
32
|
+
- README
|
33
|
+
- Rakefile
|
34
|
+
- ChangeLog
|
35
|
+
- VERSION
|
36
|
+
- lib/cmdparse.rb
|
37
|
+
- doc/src
|
38
|
+
- doc/src/metainfo.backing
|
39
|
+
- doc/src/default.css
|
40
|
+
- doc/src/index.fragment
|
41
|
+
- doc/src/default.template
|
42
|
+
- doc/src/features.fragment
|
43
|
+
- doc/src/download.fragment
|
44
|
+
test_files: []
|
45
|
+
rdoc_options:
|
46
|
+
- "--line-numbers"
|
47
|
+
- "-m README"
|
48
|
+
extra_rdoc_files:
|
49
|
+
- README
|
50
|
+
executables: []
|
51
|
+
extensions: []
|
52
|
+
requirements: []
|
53
|
+
dependencies: []
|