origen 0.1.2 → 0.1.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.
- checksums.yaml +4 -4
- data/config/version.rb +1 -1
- data/lib/origen/commands/web.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 649e449c295842f6dcd2381fd17eb485e4932b65
|
|
4
|
+
data.tar.gz: 136869fb9cf4ba5006e3db33e055f64c01cf23e0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: eb114bdf1e8531c675f99b4d9f0507b13d6b7cba858e38972a3a7f78ba99d3435e47985234fb4d875de1d23c185d1450a52cc2c6a35c6aa968f78aac4ac09904
|
|
7
|
+
data.tar.gz: 1ea70aaeca94170041b27a088b1a5933506546ae2a9b134e00ca41b2b23ed77da253936ba1854cb9e2cc81a781e297cbdb2d2baba18b311f8809e54020a298e6
|
data/config/version.rb
CHANGED
data/lib/origen/commands/web.rb
CHANGED
|
@@ -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
|