debra 0.0.2 → 0.0.3

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.
Files changed (3) hide show
  1. data/lib/debra/cli.rb +1 -1
  2. data/lib/debra.rb +1 -1
  3. 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
@@ -8,7 +8,7 @@ module Debra
8
8
  include Cli
9
9
  include Execute
10
10
 
11
- VERSION = [0,0,2]
11
+ VERSION = [0,0,3]
12
12
 
13
13
  module_function :exec, :find_debfile, :run, :load_file
14
14
 
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 0
8
- - 2
9
- version: 0.0.2
8
+ - 3
9
+ version: 0.0.3
10
10
  platform: ruby
11
11
  authors:
12
12
  - Matt Haynes