Sha256: 8c0780050e9812279dabba7fce0a2682d455e59b5a562fd3abbb7c5bc6d8b0de

Contents?: true

Size: 480 Bytes

Versions: 5

Compression:

Stored size: 480 Bytes

Contents

module Awspec::Generator
  module Doc
    module Type
      class SecurityGroup < Base
        def initialize
          super
          @type = Awspec::Type::SecurityGroup.new('my-security-group-name')
          @ret = @type.sg
          @matchers = ['its(:inbound), its(:outbound)']
          @ignore_matchers = %w(be_opened be_inbound_opened be_outbound_opened)
          @describes = %w(ip_permissions_count ip_permissions_egress_count)
        end
      end
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
awspec-0.8.0 lib/awspec/generator/doc/type/security_group.rb
awspec-0.7.0 lib/awspec/generator/doc/type/security_group.rb
awspec-0.6.4 lib/awspec/generator/doc/type/security_group.rb
awspec-0.6.3 lib/awspec/generator/doc/type/security_group.rb
awspec-0.6.2 lib/awspec/generator/doc/type/security_group.rb