module PaylerAPI

class for request processing

class for response

Constants

AvailableMethods

Attributes

configuration[RW]

Public Class Methods

configure() { |configuration| ... } click to toggle source
# File lib/payler_api.rb, line 23
def configure
  yield(configuration)
end
method_missing(method, *arguments, &block) click to toggle source
Calls superclass method
# File lib/payler_api.rb, line 8
def self.method_missing(method, *arguments, &block)
  return super unless AvailableMethods.include? method

  PaylerAPI::Request.new(method, *arguments).process
end