debra 0.0.2 → 0.0.3
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/debra/cli.rb +1 -1
- data/lib/debra.rb +1 -1
- metadata +2 -2
data/lib/debra/cli.rb
CHANGED
@@ -15,7 +15,7 @@ module Debra
|
|
15
15
|
|
16
16
|
opts.banner = 'Usage: debra [options]'
|
17
17
|
opts.on("-h", "--help", "Show this message") {|h| options.help = h}
|
18
|
-
opts.on("-r", "--revision", "Append a revision to the file, useful if you are doing CI") {|r| options.revision = r}
|
18
|
+
opts.on("-r", "--revision revision", "Append a revision to the file, useful if you are doing CI") {|r| options.revision = r}
|
19
19
|
opts.on("-v", "--verbose", "Run verbosely") {|v| options.verbose = v}
|
20
20
|
opts.on("-ffile", "--file file", String, "Load a specific Debfile") {|f| options.file = f}
|
21
21
|
opts.on("--version", "Show version") do
|
data/lib/debra.rb
CHANGED