Sha256: a919f442d16852b35ea1547f7e85dc22c6c0fd19e0face3eeb483abdad8a02e2

Contents?: true

Size: 519 Bytes

Versions: 8

Compression:

Stored size: 519 Bytes

Contents

module Awspec::Generator
  module Doc
    module Type
      class Vpc < Base
        def initialize
          super
          @type_name = 'VPC'
          @type = Awspec::Type::Vpc.new('my-vpc')
          @ret = @type.resource
          @matchers = [
            Awspec::Type::Vpc::STATES.map { |state| 'be_' + state.tr('-', '_') }.join(', ')
          ]
          @ignore_matchers = Awspec::Type::Vpc::STATES.map { |state| 'be_' + state.tr('-', '_') }
          @describes = []
        end
      end
    end
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
awspec-0.25.3 lib/awspec/generator/doc/type/vpc.rb
awspec-0.25.2 lib/awspec/generator/doc/type/vpc.rb
awspec-0.25.1 lib/awspec/generator/doc/type/vpc.rb
awspec-0.25.0 lib/awspec/generator/doc/type/vpc.rb
awspec-0.24.2 lib/awspec/generator/doc/type/vpc.rb
awspec-0.24.1 lib/awspec/generator/doc/type/vpc.rb
awspec-0.24.0 lib/awspec/generator/doc/type/vpc.rb
awspec-0.23.0 lib/awspec/generator/doc/type/vpc.rb