Class: Awspec::Generator::Doc::Type::Subnet

Inherits:
Base
  • Object
show all
Defined in:
lib/awspec/generator/doc/type/subnet.rb

Instance Method Summary collapse

Methods inherited from Base

#collect_matchers, #doc_template, #generate_doc, #sort_num, #type_name

Constructor Details

#initializeSubnet

Returns a new instance of Subnet.



5
6
7
8
9
10
11
12
13
14
# File 'lib/awspec/generator/doc/type/subnet.rb', line 5

def initialize
  super
  @type = Awspec::Type::Subnet.new('my-route-table')
  @ret = @type.resource_via_client
  @matchers = [
    Awspec::Type::Subnet::STATES.map { |state| 'be_' + state.tr('-', '_') }.join(', ')
  ]
  @ignore_matchers = Awspec::Type::Subnet::STATES.map { |state| 'be_' + state.tr('-', '_') }
  @describes = []
end