Sha256: 52c00745be03a74fe77c233f3a54324b92918b3fa2d8fedfe48b0e587ad5048e

Contents?: true

Size: 504 Bytes

Versions: 21

Compression:

Stored size: 504 Bytes

Contents

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

Version data entries

21 entries across 21 versions & 1 rubygems

Version Path
awspec-0.74.1 lib/awspec/generator/doc/type/alb.rb