mushin 0.0.0.pre62 → 0.0.0.pre63
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.
- checksums.yaml +4 -4
- data/bin/mushin +11 -13
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0279d8a53900c44f0a4d6c0c342d62a5759bb48a
|
4
|
+
data.tar.gz: edb1937015846f3e9ab8cbf0a60d8bb6a83620c3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 060017d23869e905153d578a207737371332341e719b436d938ad5458c92d9e32cda7016302924767111906306bc2f6bea16869c7fe288ab66cea0d3e6e85440
|
7
|
+
data.tar.gz: de0c372f679ee7869209b86b7908b390e0b854b052e88739b17dab968c48dde2ed56431bdba7d094d3994dcb2380388d5235309f3a74f1ce9b9495c0591dfc59
|
data/bin/mushin
CHANGED
@@ -4,28 +4,26 @@ require 'fileutils'
|
|
4
4
|
require 'optparse'
|
5
5
|
|
6
6
|
subtext = <<HELP
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
7
|
+
_ _
|
8
|
+
_ __ ___ _ _ ___| |__ (_)_ __
|
9
|
+
| '_ ` _ \\| | | / __| '_ \\| | '_ \\
|
10
|
+
| | | | | | |_| \\__ \\ | | | | | | |
|
11
|
+
|_| |_| |_|\\__,_|___/_| |_|_|_| |_|
|
13
12
|
|
14
13
|
|
15
14
|
|
16
15
|
Usage: mushin [command] [options]
|
17
16
|
|
18
|
-
|
19
17
|
Commonly used command are:
|
20
|
-
config :
|
21
|
-
roll :
|
22
|
-
share :
|
23
|
-
clean :
|
18
|
+
config : generats mushin config.rb i.e. rubygems & github authentications
|
19
|
+
roll : roll your own framework
|
20
|
+
share : share your framework on rubygems.org
|
21
|
+
clean : clean out generated 0.0.0.pre1 gems
|
24
22
|
|
25
23
|
HELP
|
26
24
|
|
27
25
|
global = OptionParser.new do |opts|
|
28
|
-
opts.banner = "'In the beginner's mind there are many possibilities, in the expert's mind there are few!'"
|
26
|
+
opts.banner = " 'In the beginner's mind there are many possibilities, in the expert's mind there are few!' "
|
29
27
|
opts.separator ""
|
30
28
|
opts.separator subtext
|
31
29
|
end
|
@@ -55,7 +53,7 @@ when "roll"
|
|
55
53
|
end
|
56
54
|
end
|
57
55
|
end
|
58
|
-
|
56
|
+
require "#{Dir.pwd}/config"
|
59
57
|
|
60
58
|
#@framework = Mushin[:framework]
|
61
59
|
@framework = ARGV[0]
|