Sha256: 934c01dd56085d452bab67c66f9134cb808e4d80b578731b1524633e4dea20da

Contents?: true

Size: 376 Bytes

Versions: 2

Compression:

Stored size: 376 Bytes

Contents

module Awspec::Generator
  module Doc
    module Type
      class Lambda < Base
        def initialize
          super
          @type_name = 'Lambda'
          @type = Awspec::Type::Lambda.new('my-lambda-function-name')
          @ret = @type.function
          @matchers = []
          @ignore_matchers = []
          @describes = []
        end
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
awspec-0.8.0 lib/awspec/generator/doc/type/lambda.rb
awspec-0.7.0 lib/awspec/generator/doc/type/lambda.rb