Sha256: 344455c6a58d8da7c03be0a35c929fff1799b724e967a7d4db173b9c06e25704
Contents?: true
Size: 353 Bytes
Versions: 42
Compression:
Stored size: 353 Bytes
Contents
module Braintree class AddOnGateway # :nodoc def initialize(gateway) @gateway = gateway @config = gateway.config end def all response = @config.http.get "/add_ons" attributes_collection = response[:add_ons] attributes_collection.map do |attributes| AddOn._new(attributes) end end end end
Version data entries
42 entries across 42 versions & 1 rubygems