Sha256: a919f442d16852b35ea1547f7e85dc22c6c0fd19e0face3eeb483abdad8a02e2
Contents?: true
Size: 519 Bytes
Versions: 8
Compression:
Stored size: 519 Bytes
Contents
module Awspec::Generator module Doc module Type class Vpc < Base def initialize super @type_name = 'VPC' @type = Awspec::Type::Vpc.new('my-vpc') @ret = @type.resource @matchers = [ Awspec::Type::Vpc::STATES.map { |state| 'be_' + state.tr('-', '_') }.join(', ') ] @ignore_matchers = Awspec::Type::Vpc::STATES.map { |state| 'be_' + state.tr('-', '_') } @describes = [] end end end end end
Version data entries
8 entries across 8 versions & 1 rubygems