yore 0.0.8 → 0.0.9
Sign up to get free protection for your applications and to get access to all the features.
- data/VERSION +1 -1
- data/bin/yore +1 -2
- data/yore.gemspec +1 -1
- metadata +1 -1
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.0.
|
1
|
+
0.0.9
|
data/bin/yore
CHANGED
@@ -6,7 +6,6 @@ require 'rubygems'
|
|
6
6
|
gem 'buzzcore'; require 'buzzcore';
|
7
7
|
gem 'cmdparse'; require 'cmdparse'
|
8
8
|
|
9
|
-
require_paths_first '../lib'
|
10
9
|
require 'yore/yore_core'
|
11
10
|
|
12
11
|
CMD_OPTIONS = {} # options given on command line
|
@@ -29,7 +28,7 @@ end
|
|
29
28
|
|
30
29
|
cmd = CmdParse::CommandParser.new( true )
|
31
30
|
cmd.program_name = "yore"
|
32
|
-
cmd.program_version = [0, 0,
|
31
|
+
cmd.program_version = [0, 0, 9]
|
33
32
|
# Options are given after a command and before arguments on the command line
|
34
33
|
# so global options are given first, before the first command
|
35
34
|
# ie ruby yore.rb --global_option command --command_option argument1 argument2 argumentn
|
data/yore.gemspec
CHANGED