lib/origen/commands/web.rb in origen-0.1.2 vs lib/origen/commands/web.rb in origen-0.1.3
- old
+ new
@@ -42,10 +42,10 @@
opts.on('-a', '--api', 'Generate API documentation after compiling') { options[:api] = true }
opts.on('--archive ID', String, 'Archive the documents after compiling or deploying remotely') { |id| options[:archive] = id }
opts.on('-d', '--debugger', 'Enable the debugger') { options[:debugger] = true }
opts.on('-m', '--mode MODE', Origen::Mode::MODES, 'Force the Origen operating mode:', ' ' + Origen::Mode::MODES.join(', ')) { |_m| }
opts.on('--no-serve', "Don't serve the website after compiling without the remote option") { options[:no_serve] = true }
- opts.on('-c', '--comment', 'Supply a commit comment when deploying to Git') { |o| options[:comment] = o }
+ opts.on('-c', '--comment COMMENT', String, 'Supply a commit comment when deploying to Git') { |o| options[:comment] = o }
app_options.each do |app_option|
opts.on(*app_option) {}
end
opts.separator ''
opts.on('-h', '--help', 'Show this message') { puts opts; exit }