module RuBittrex
Constants
- VERSION
Public Class Methods
client()
click to toggle source
# File lib/ru_bittrex.rb, line 35 def client @client ||= Client.new(configuration.auth) end
configuration()
click to toggle source
# File lib/ru_bittrex.rb, line 23 def configuration @configuration ||= Configuration.new end
configure() { |configuration| ... }
click to toggle source
# File lib/ru_bittrex.rb, line 31 def configure yield(configuration) end
reset_client()
click to toggle source
# File lib/ru_bittrex.rb, line 39 def reset_client @client = nil end
reset_config()
click to toggle source
# File lib/ru_bittrex.rb, line 27 def reset_config @configuration = Configuration.new end
root()
click to toggle source
# File lib/ru_bittrex.rb, line 43 def root File.expand_path('../..', __FILE__) end