Sha256: aa614a5bae4453d4f43a801f7dd15f20b59fb4baa7e0189ce0713aa2d7a62e95

Contents?: true

Size: 568 Bytes

Versions: 2

Compression:

Stored size: 568 Bytes

Contents

module Awspec::Generator
  module Doc
    class Elb < Base
      def initialize
        @type_name = 'ELB'
        require File.dirname(__FILE__) + '/../../../../spec/stub/' + @type_name.to_snake_case
        @type = Awspec::Type::Elb.new('my-elb')
        @ret = @type.lb
        @matchers = %w(belong_to_vpc belong_to_subnet)
        @ignore_matchers = []
        @describes = %w(
          health_check_target health_check_interval health_check_timeout
          health_check_unhealthy_threshold health_check_healthy_threshold
        )
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
awspec-0.6.1 lib/awspec/generator/doc/elb.rb
awspec-0.6.0 lib/awspec/generator/doc/elb.rb