Method: Metaforce::AbstractClient#initialize
- Defined in:
- lib/metaforce/abstract_client.rb
#initialize(options = {}) ⇒ AbstractClient
Public: Initialize a new client.
options - A hash of options, which should have a :session_id key
18 19 20 21 |
# File 'lib/metaforce/abstract_client.rb', line 18 def initialize(={}) raise 'Please specify a hash of options' unless .is_a?(Hash) @options = end |