ninjs 0.13.3 → 0.13.4
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/VERSION +1 -1
- data/bin/ninjs +2 -9
- data/ninjs.gemspec +1 -1
- metadata +3 -3
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.13.
|
|
1
|
+
0.13.4
|
data/bin/ninjs
CHANGED
|
@@ -107,13 +107,6 @@ options = {
|
|
|
107
107
|
optparse = OptionParser.new do|opts|
|
|
108
108
|
opts.on( '-h', '--help', 'Display this screen' ) do
|
|
109
109
|
options[:help] = true
|
|
110
|
-
|
|
111
|
-
if command.nil? || command.match(/^-h/)
|
|
112
|
-
help.each do |section|
|
|
113
|
-
puts section
|
|
114
|
-
end
|
|
115
|
-
exit
|
|
116
|
-
end
|
|
117
110
|
end
|
|
118
111
|
|
|
119
112
|
opts.on( '-v', '--version', 'Display the version') do
|
|
@@ -216,9 +209,9 @@ case command
|
|
|
216
209
|
exit
|
|
217
210
|
end
|
|
218
211
|
Ninjs::Command.update
|
|
219
|
-
# help
|
|
220
212
|
else
|
|
221
213
|
help.each do |section|
|
|
222
|
-
puts section
|
|
214
|
+
puts section.last + "\n"
|
|
223
215
|
end
|
|
216
|
+
exit
|
|
224
217
|
end
|
data/ninjs.gemspec
CHANGED
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ninjs
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 35
|
|
5
5
|
prerelease:
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 13
|
|
9
|
-
-
|
|
10
|
-
version: 0.13.
|
|
9
|
+
- 4
|
|
10
|
+
version: 0.13.4
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Dayton Nolan
|