Sha256: 8afecb332244ad26f1f0fa9fb4aa9adcf44902f9a9eafedf4d5b5e9225aea6bd
Contents?: true
Size: 534 Bytes
Versions: 50
Compression:
Stored size: 534 Bytes
Contents
module Awspec::Generator module Doc module Type class Acm < Base def initialize super @type_name = 'Acm' @type = Awspec::Type::Acm.new('example.jp') @ret = @type.resource_via_client @matchers = [ Awspec::Type::Acm::STATUSES.map { |status| 'be_' + status.downcase }.join(', ') ] @ignore_matchers = Awspec::Type::Acm::STATUSES.map { |status| 'be_' + status.downcase } @describes = [] end end end end end
Version data entries
50 entries across 50 versions & 3 rubygems