Sha256: 625a3cc27815c0c9a4747117d4d10f98497fc70b7bd4380722779bff455171a1

Contents?: true

Size: 451 Bytes

Versions: 1

Compression:

Stored size: 451 Bytes

Contents

# frozen_string_literal: true

module Terradactyl
  module Terraform
    module Rev011
      module Checklist
        def defaults
          {}
        end

        def switches
          []
        end

        def subcmd
          '0.12checklist'
        end
      end
    end

    module Rev012
      module Checklist
        include Rev011::Checklist
      end
    end

    module Commands
      class Checklist < Base
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
terradactyl-terraform-0.13.0 lib/terradactyl/terraform/commands/checklist.rb