origen 0.1.2 → 0.1.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 41e855c1ebab21cebe7c3e881fec4c22b35d813a
4
- data.tar.gz: f9df00b9bfe5bea352025c0d0f65b5b4d12fa8a0
3
+ metadata.gz: 649e449c295842f6dcd2381fd17eb485e4932b65
4
+ data.tar.gz: 136869fb9cf4ba5006e3db33e055f64c01cf23e0
5
5
  SHA512:
6
- metadata.gz: 9113bde64e19aaf592d7f21641c3d41d96c4fadfa127678798601da05cf205343349947c34db66b911c2ecb884d52d1e8de7643b390b0de5a4bf2c64f5ece991
7
- data.tar.gz: 1c6d3e8758e65c04c520e1a692cc3c04bddee81a8c7b7b45d19636bd3f07aec0a1eb2214e3ea2f8a9fba7d0ce9d0bd522c877b2a7bb516395d409c6540028ca4
6
+ metadata.gz: eb114bdf1e8531c675f99b4d9f0507b13d6b7cba858e38972a3a7f78ba99d3435e47985234fb4d875de1d23c185d1450a52cc2c6a35c6aa968f78aac4ac09904
7
+ data.tar.gz: 1ea70aaeca94170041b27a088b1a5933506546ae2a9b134e00ca41b2b23ed77da253936ba1854cb9e2cc81a781e297cbdb2d2baba18b311f8809e54020a298e6
@@ -1,7 +1,7 @@
1
1
  module Origen
2
2
  MAJOR = 0
3
3
  MINOR = 1
4
- BUGFIX = 2
4
+ BUGFIX = 3
5
5
  DEV = nil
6
6
 
7
7
  VERSION = [MAJOR, MINOR, BUGFIX].join(".") + (DEV ? ".pre#{DEV}" : '')
@@ -44,7 +44,7 @@ The following options are available:
44
44
  opts.on('-d', '--debugger', 'Enable the debugger') { options[:debugger] = true }
45
45
  opts.on('-m', '--mode MODE', Origen::Mode::MODES, 'Force the Origen operating mode:', ' ' + Origen::Mode::MODES.join(', ')) { |_m| }
46
46
  opts.on('--no-serve', "Don't serve the website after compiling without the remote option") { options[:no_serve] = true }
47
- opts.on('-c', '--comment', 'Supply a commit comment when deploying to Git') { |o| options[:comment] = o }
47
+ opts.on('-c', '--comment COMMENT', String, 'Supply a commit comment when deploying to Git') { |o| options[:comment] = o }
48
48
  app_options.each do |app_option|
49
49
  opts.on(*app_option) {}
50
50
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: origen
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Stephen McGinty