module Bitflyer

Constants

VERSION

Public Class Methods

http_private_client(key, secret) click to toggle source
# File lib/bitflyer.rb, line 16
def http_private_client(key, secret)
  Bitflyer::HTTP::Private::Client.new(key, secret)
end
http_public_client() click to toggle source
# File lib/bitflyer.rb, line 12
def http_public_client
  Bitflyer::HTTP::Public::Client.new
end
realtime_client(key = nil, secret = nil) click to toggle source
# File lib/bitflyer.rb, line 8
def realtime_client(key = nil, secret = nil)
  Bitflyer::Realtime::Client.new(key, secret)
end

Private Instance Methods

http_private_client(key, secret) click to toggle source
# File lib/bitflyer.rb, line 16
def http_private_client(key, secret)
  Bitflyer::HTTP::Private::Client.new(key, secret)
end
http_public_client() click to toggle source
# File lib/bitflyer.rb, line 12
def http_public_client
  Bitflyer::HTTP::Public::Client.new
end
realtime_client(key = nil, secret = nil) click to toggle source
# File lib/bitflyer.rb, line 8
def realtime_client(key = nil, secret = nil)
  Bitflyer::Realtime::Client.new(key, secret)
end