lib/kumogata/argument_parser.rb in kumogata-0.3.2 vs lib/kumogata/argument_parser.rb in kumogata-0.3.3
- old
+ new
@@ -74,27 +74,28 @@
ARGV.options do |opt|
update_usage(opt)
begin
- opt.on('-k', '--access-key ACCESS_KEY') {|v| options[:access_key_id] = v }
- opt.on('-s', '--secret-key SECRET_KEY') {|v| options[:secret_access_key] = v }
- opt.on('-r', '--region REGION') {|v| options[:region] = v }
- opt.on('' , '--skip-replace-underscore') { options[:replace_underscore] = false }
- opt.on('' , '--deletion-policy-retain') { options[:deletion_policy_retain] = true }
- opt.on('-p', '--parameters KEY_VALUES', Array) {|v| options[:parameters] = v }
- opt.on('-e', '--encrypt-parameters KEYS', Array) {|v| options[:encrypt_parameters] = v }
- opt.on('', '--encryption-password PASS') {|v| options[:encryption_password] = v }
- opt.on('', '--skip-send-password') { options[:skip_send_password] = true }
- opt.on('' , '--capabilities CAPABILITIES', Array) {|v| options[:capabilities] = v }
- opt.on('' , '--disable-rollback') { options[:disable_rollback] = true }
- opt.on('' , '--notify SNS_TOPICS', Array) {|v| options[:notify] = v }
- opt.on('' , '--timeout MINUTES', Integer) {|v| options[:timeout] = v }
- opt.on('' , '--result-log PATH') {|v| options[:result_log] = v }
- opt.on('' , '--force') { options[:force] = true }
- opt.on('-w', '--ignore-all-space') { options[:ignore_all_space] = true }
- opt.on('' , '--no-color') { options[:color] = false }
- opt.on('' , '--debug') { options[:debug] = true }
+ opt.on('-k', '--access-key ACCESS_KEY') {|v| options[:access_key_id] = v }
+ opt.on('-s', '--secret-key SECRET_KEY') {|v| options[:secret_access_key] = v }
+ opt.on('-r', '--region REGION') {|v| options[:region] = v }
+ opt.on('' , '--format TMPLATE_FORMAT', [:ruby, :json]) {|v| options[:format] = v }
+ opt.on('' , '--skip-replace-underscore') { options[:replace_underscore] = false }
+ opt.on('' , '--deletion-policy-retain') { options[:deletion_policy_retain] = true }
+ opt.on('-p', '--parameters KEY_VALUES', Array) {|v| options[:parameters] = v }
+ opt.on('-e', '--encrypt-parameters KEYS', Array) {|v| options[:encrypt_parameters] = v }
+ opt.on('', '--encryption-password PASS') {|v| options[:encryption_password] = v }
+ opt.on('', '--skip-send-password') { options[:skip_send_password] = true }
+ opt.on('' , '--capabilities CAPABILITIES', Array) {|v| options[:capabilities] = v }
+ opt.on('' , '--disable-rollback') { options[:disable_rollback] = true }
+ opt.on('' , '--notify SNS_TOPICS', Array) {|v| options[:notify] = v }
+ opt.on('' , '--timeout MINUTES', Integer) {|v| options[:timeout] = v }
+ opt.on('' , '--result-log PATH') {|v| options[:result_log] = v }
+ opt.on('' , '--force') { options[:force] = true }
+ opt.on('-w', '--ignore-all-space') { options[:ignore_all_space] = true }
+ opt.on('' , '--no-color') { options[:color] = false }
+ opt.on('' , '--debug') { options[:debug] = true }
opt.parse!
unless (command = ARGV.shift)
puts opt.help
exit 1