hirobumi-argument_sensei 0.1.0 → 0.1.1

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/README.rdoc CHANGED
@@ -27,7 +27,7 @@ ArgumentSensei is yet another command-line argument parser with a minimal set of
27
27
 
28
28
  # ...
29
29
 
30
- # in the place you want to run the codes...
30
+ # in the place you want to parse the commands and then the actions...
31
31
  commands.run!
32
32
 
33
33
 
@@ -255,5 +255,13 @@ module ArgumentSensei
255
255
  end
256
256
 
257
257
  end # class Commands
258
-
258
+
259
+ class << self
260
+
261
+ def define(*a, &b)
262
+ Commands.define(*a, &b)
263
+ end # def define(*a, &b)
264
+
265
+ end # class << self
266
+
259
267
  end # module ArgumentSensei
@@ -3,7 +3,7 @@ module ArgumentSensei
3
3
 
4
4
  MAJOR = 0
5
5
  MINOR = 1
6
- TINY = 0
6
+ TINY = 1
7
7
 
8
8
  def self.to_s # :nodoc:
9
9
  [MAJOR, MINOR, TINY].join('.')
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hirobumi-argument_sensei
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Hirobumi Hama