lib/ruby_terraform/commands/init.rb in ruby-terraform-0.9.0 vs lib/ruby_terraform/commands/init.rb in ruby-terraform-0.10.0

- old
+ new

@@ -9,16 +9,18 @@ backend = opts[:backend] get = opts[:get] backend_config = opts[:backend_config] || {} source = opts[:from_module] path = opts[:path] + plugin_dir = opts[:plugin_dir] builder = builder .with_subcommand('init') do |sub| sub = sub.with_option('-backend', backend) unless backend.nil? sub = sub.with_option('-get', get) unless get.nil? sub = sub.with_option('-from-module', source) if source sub = sub.with_flag('-no-color') if no_color + sub = sub.with_option('-plugin-dir', plugin_dir) unless plugin_dir.nil? backend_config.each do |key, value| sub = sub.with_option( '-backend-config', "'#{key}=#{value}'", separator: ' ')