Sha256: 666c69815077452eaaa602b9d58380a6b3ef5fe12eb47f05001274a83096b9eb

Contents?: true

Size: 519 Bytes

Versions: 8

Compression:

Stored size: 519 Bytes

Contents

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