module BankOfBaku

Constants

VERSION

Public Class Methods

client() click to toggle source

@return [BankOfBaku::Client]

# File lib/bank_of_baku.rb, line 13
def self.client
  BankOfBaku::Client.new
end
method_missing(method, *args, &block) click to toggle source
Calls superclass method
# File lib/bank_of_baku.rb, line 17
def self.method_missing(method, *args, &block)
  return super unless client.respond_to?(method)

  client.send(method, *args, &block)
end
respond_to_missing?(method_name, include_private = false) click to toggle source
Calls superclass method
# File lib/bank_of_baku.rb, line 23
def self.respond_to_missing?(method_name, include_private = false)
  client.respond_to?(method_name) || super
end