Sha256: eed4df6997118f5bf240bfc1fc87f653a3438c618f6fda8293d25c2df6977c94
Contents?: true
Size: 733 Bytes
Versions: 15
Compression:
Stored size: 733 Bytes
Contents
# frozen_string_literal: true module Terradactyl module Terraform module Subcommands module Show def defaults { 'json' => false, 'no-color' => false } end def switches %w[ json no-color ] end end end module Rev011 include Terradactyl::Terraform::Subcommands::Show module Show def defaults { 'module-depth' => -1, 'no-color' => false } end def switches %w[ no-color ] end end end module Commands class Show < Base end end end end
Version data entries
15 entries across 15 versions & 1 rubygems