mushin 0.0.0.pre61 → 0.0.0.pre62
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 +4 -2
- 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: 82f34360e3b93df7f05931ed4f43d1f875280e08
|
4
|
+
data.tar.gz: 7bd109841d000eaceb536ea2b6590d0590296b5f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 10edd6d8a76eb9dcfd8b26d6bf6d5bd0aa7c07e1734f6d06e12ec3e2eb909a7b8cd5032c989e52a6dd311ed16bdc213ae6643f0b1b17940363bcc9964ec48a57
|
7
|
+
data.tar.gz: e4ef896988f9ed96121e4fb087dc02aeb30b20a6304abf56aacf153e6c68ffc7eacc3444795a83881a2ce6ec4a6c6c528601006bf21afa873a934ca9c1fa5324
|
data/bin/mushin
CHANGED
@@ -6,7 +6,7 @@ require 'optparse'
|
|
6
6
|
subtext = <<HELP
|
7
7
|
_ _
|
8
8
|
_ __ ___ _ _ ___| |__ (_)_ __
|
9
|
-
| '_ ` _ \\| | | / __| '_ \\| | '_
|
9
|
+
| '_ ` _ \\| | | / __| '_ \\| | '_ \\
|
10
10
|
| | | | | | |_| \\__ \\ | | | | | | |
|
11
11
|
|_| |_| |_|\\__,_|___/_| |_|_|_| |_|
|
12
12
|
|
@@ -19,11 +19,13 @@ subtext = <<HELP
|
|
19
19
|
Commonly used command are:
|
20
20
|
config : generats mushin config.rb i.e. rubygems & github authentications
|
21
21
|
roll : roll your own framework
|
22
|
+
share : share your framework on rubygems.org
|
23
|
+
clean : remove generated 0.0.0.pre1 gem
|
22
24
|
|
23
25
|
HELP
|
24
26
|
|
25
27
|
global = OptionParser.new do |opts|
|
26
|
-
opts.banner = "In the beginner's mind there are many possibilities, in the expert's mind there are few!"
|
28
|
+
opts.banner = "'In the beginner's mind there are many possibilities, in the expert's mind there are few!'"
|
27
29
|
opts.separator ""
|
28
30
|
opts.separator subtext
|
29
31
|
end
|