sprinkle 0.3.2 → 0.3.3
Sign up to get free protection for your applications and to get access to all the features.
- data/VERSION +1 -1
- data/bin/sprinkle +5 -5
- metadata +4 -4
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.3.
|
1
|
+
0.3.3
|
data/bin/sprinkle
CHANGED
@@ -43,15 +43,15 @@ Options are:
|
|
43
43
|
BANNER
|
44
44
|
opts.separator ""
|
45
45
|
opts.on("-s", "--script=PATH", String,
|
46
|
-
"Path to a sprinkle script to run") { |OPTIONS[:path]
|
46
|
+
"Path to a sprinkle script to run") { |v| OPTIONS[:path] = v }
|
47
47
|
opts.on("-t", "--test",
|
48
|
-
"Process but don't perform any actions") { |OPTIONS[:testing]
|
48
|
+
"Process but don't perform any actions") { |v| OPTIONS[:testing] = v }
|
49
49
|
opts.on("-v", "--verbose",
|
50
|
-
"Verbose output") { |OPTIONS[:verbose]
|
50
|
+
"Verbose output") { |v| OPTIONS[:verbose] = v }
|
51
51
|
opts.on("-c", "--cloud",
|
52
|
-
"Show powder cloud, ie. package hierarchy and installation order") { |OPTIONS[:cloud]
|
52
|
+
"Show powder cloud, ie. package hierarchy and installation order") { |v| OPTIONS[:cloud] = v }
|
53
53
|
opts.on("-f", "--force",
|
54
|
-
"Force installation of all packages even if it is detected that it has been previously installed") { |OPTIONS[:force]
|
54
|
+
"Force installation of all packages even if it is detected that it has been previously installed") { |v| OPTIONS[:force] = v }
|
55
55
|
opts.on("-h", "--help",
|
56
56
|
"Show this help message.") { puts opts; exit }
|
57
57
|
opts.parse!(ARGV)
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sprinkle
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 21
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 3
|
9
|
-
-
|
10
|
-
version: 0.3.
|
9
|
+
- 3
|
10
|
+
version: 0.3.3
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Marcus Crafter
|
@@ -15,7 +15,7 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date: 2010-12-
|
18
|
+
date: 2010-12-12 00:00:00 +11:00
|
19
19
|
default_executable: sprinkle
|
20
20
|
dependencies:
|
21
21
|
- !ruby/object:Gem::Dependency
|