Sha256: a1747be5fb2bd6a55ec06367b23fe5dacd02fdd91172c4cbb2fcdd239401a6f1
Contents?: true
Size: 987 Bytes
Versions: 2
Compression:
Stored size: 987 Bytes
Contents
require 'stringio' require_relative 'base' module RubyTerraform module Commands class Output < Base def initialize(**kwargs) super(**kwargs) @stdout = StringIO.new unless defined?(@stdout) && @stdout.respond_to?(:string) end def configure_command(builder, opts) name = opts[:name] state = opts[:state] no_color = opts[:no_color] json = opts[:json] mod = opts[:module] builder = builder .with_subcommand('output') do |sub| sub = sub.with_flag('-no-color') if no_color sub = sub.with_flag('-json') if json sub = sub.with_option('-state', state) if state sub = sub.with_option('-module', mod) if mod sub end builder = builder.with_argument(name) if name builder end def do_after(opts) result = stdout.string opts[:name] ? result.chomp : result end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
ruby-terraform-0.65.0.pre.2 | lib/ruby_terraform/commands/output.rb |
ruby-terraform-0.65.0.pre.1 | lib/ruby_terraform/commands/output.rb |