Module: Buttercoin

Extended by:
Forwardable
Defined in:
lib/buttercoin.rb,
lib/buttercoin/client.rb,
lib/buttercoin/version.rb,
lib/buttercoin/client/order_methods.rb,
lib/buttercoin/client/unauth_methods.rb,
lib/buttercoin/client/transaction_methods.rb,
lib/buttercoin/client/account_query_methods.rb

Defined Under Namespace

Classes: AuthenticationError, BadRequestError, Client, ConfigurationError, Error, HttpError, NotFoundError

Constant Summary collapse

VERSION =
"0.0.4"

Class Attribute Summary collapse

Class Attribute Details

.loggerObject



61
62
63
64
65
66
67
# File 'lib/buttercoin.rb', line 61

def logger
  @logger ||= lambda {
    logger = Logger.new($stdout)
    logger.level = Logger::INFO
    logger
  }.call
end