Sha256: a5d365dbd805046b5e1b151cef27a94921fe017332c1f4086f89b6b4010a7075

Contents?: true

Size: 510 Bytes

Versions: 8

Compression:

Stored size: 510 Bytes

Contents

module Awspec::Generator
  module Doc
    module Type
      class Subnet < Base
        def initialize
          super
          @type = Awspec::Type::Subnet.new('my-route-table')
          @ret = @type.resource
          @matchers = [
            Awspec::Type::Subnet::STATES.map { |state| 'be_' + state.tr('-', '_') }.join(', ')
          ]
          @ignore_matchers = Awspec::Type::Subnet::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/subnet.rb
awspec-0.25.2 lib/awspec/generator/doc/type/subnet.rb
awspec-0.25.1 lib/awspec/generator/doc/type/subnet.rb
awspec-0.25.0 lib/awspec/generator/doc/type/subnet.rb
awspec-0.24.2 lib/awspec/generator/doc/type/subnet.rb
awspec-0.24.1 lib/awspec/generator/doc/type/subnet.rb
awspec-0.24.0 lib/awspec/generator/doc/type/subnet.rb
awspec-0.23.0 lib/awspec/generator/doc/type/subnet.rb