bin/ridgepole in ridgepole-0.3.2 vs bin/ridgepole in ridgepole-0.3.3
- old
+ new
@@ -45,9 +45,13 @@
opt.on('-a', '--apply') { set_mode[:apply] }
opt.on('-m', '--merge') { set_mode[:apply]; options[:merge] = true }
opt.on('-f', '--file FILE') {|v| file = v }
opt.on('', '--dry-run') { options[:dry_run] = true }
opt.on('', '--table-options OPTIONS') {|v| options[:table_options] = v }
+ opt.on('', '--bulk-change') {
+ raise "Cannot use `bulk-change` in `merge`" if options[:merge]
+ options[:bulk_change] = true
+ }
opt.on('-e', '--export') { set_mode[:export] }
opt.on('', '--split') {|v| split = true }
opt.on('', '--split-with-dir') {|v| split = :with_dir }
opt.on('-d', '--diff DSL1 DSL2') {|diff_arg1|
set_mode[:diff]