commandant 0.2.0 → 0.2.1
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG +14 -0
- data/README.rdoc +9 -2
- data/VERSION +1 -1
- metadata +3 -2
data/CHANGELOG
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
v0.2.0
|
2
|
+
======
|
3
|
+
5adfe67 Version bump to 0.2.0
|
4
|
+
2d5766a Change name to commandant
|
5
|
+
04945c5 Update README
|
6
|
+
2eafab0 Version bump to 0.1.1
|
7
|
+
87e4ccc Fig bug when command called without any arguments
|
8
|
+
defbcdf Version bump to 0.1.0
|
9
|
+
512cc72 Add aliases with add_alias
|
10
|
+
15379fc Run a :main command by default
|
11
|
+
3ab2dc7 Version bump to 0.0.0
|
12
|
+
5ae789f Initial commit of Commander
|
13
|
+
79d7ea8 Initial commit to commander.
|
14
|
+
|
data/README.rdoc
CHANGED
@@ -5,9 +5,11 @@ what you want and none of what you don't. If you don't like it, don't use it.
|
|
5
5
|
|
6
6
|
== Example:
|
7
7
|
|
8
|
+
=== <tt>basic</tt> executable:
|
9
|
+
|
8
10
|
#!/usr/bin/env ruby -rubygems
|
9
|
-
require '
|
10
|
-
include
|
11
|
+
require 'commandant'
|
12
|
+
include Commandant
|
11
13
|
|
12
14
|
command :hello do
|
13
15
|
puts "Hello, World!"
|
@@ -19,6 +21,11 @@ what you want and none of what you don't. If you don't like it, don't use it.
|
|
19
21
|
|
20
22
|
run
|
21
23
|
|
24
|
+
=== Provides:
|
25
|
+
|
26
|
+
* <tt>basic hello</tt>
|
27
|
+
* <tt>basic argprint foo bar bazz
|
28
|
+
|
22
29
|
== Note on Patches/Pull Requests
|
23
30
|
|
24
31
|
* Fork the project.
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.2.
|
1
|
+
0.2.1
|
metadata
CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
5
5
|
segments:
|
6
6
|
- 0
|
7
7
|
- 2
|
8
|
-
-
|
9
|
-
version: 0.2.
|
8
|
+
- 1
|
9
|
+
version: 0.2.1
|
10
10
|
platform: ruby
|
11
11
|
authors:
|
12
12
|
- Rein Henrichs
|
@@ -55,6 +55,7 @@ extra_rdoc_files:
|
|
55
55
|
files:
|
56
56
|
- .document
|
57
57
|
- .gitignore
|
58
|
+
- CHANGELOG
|
58
59
|
- LICENSE
|
59
60
|
- README.rdoc
|
60
61
|
- Rakefile
|