module Robinhood
Constants
- VERSION
Public Class Methods
configure() { |configuration| ... }
click to toggle source
Pre-configure with account SID and auth token so that you don“t need to pass them to various initializers each time.
# File lib/robinhood-ruby.rb, line 29 def self.configure(&block) yield configuration end
Private Class Methods
configuration()
click to toggle source
Returns an existing or instantiates a new configuration object.
# File lib/robinhood-ruby.rb, line 35 def self.configuration @configuration ||= Util::Configuration.new end