Sha256: c28204f6bdd3cd50403830e42992f1ebf20ba522e082166889ea3549a6c02fc0

Contents?: true

Size: 303 Bytes

Versions: 1

Compression:

Stored size: 303 Bytes

Contents

require "cf/client/version"

require 'aws-sdk'


module Cf
  module Client

    class MyClient

      def initialize(options = {})
        @client = Aws::CloudFormation::Client.new(options)
      end

      def method_missing(name, *args)
        @client.send(name, *args)
      end

    end

  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
cf-client-0.1.0 lib/cf/client.rb