module Ecommerce

Constants

RequestError
RequestTimeout
VERSION

Public Class Methods

client() click to toggle source
# File lib/ecommerce.rb, line 29
def self.client
  Client.new(Ecommerce.configuration.token, Ecommerce.configuration.secret)
end
configuration() click to toggle source
# File lib/ecommerce.rb, line 21
def self.configuration
  @configuration ||= Configuration.new
end
configure() { |configuration| ... } click to toggle source
# File lib/ecommerce.rb, line 25
def self.configure
  yield(configuration) if block_given?
end