Module: Tradier::Configurable

Extended by:
Forwardable
Included in:
Tradier, Client
Defined in:
lib/tradier/configurable.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#access_token=(value) ⇒ Object (writeonly)

Sets the attribute access_token

Parameters:

  • value

    the value to set the attribute access_token to.



7
8
9
# File 'lib/tradier/configurable.rb', line 7

def access_token=(value)
  @access_token = value
end

#connection_optionsObject

Returns the value of attribute connection_options.



8
9
10
# File 'lib/tradier/configurable.rb', line 8

def connection_options
  @connection_options
end

#endpointObject

Returns the value of attribute endpoint.



8
9
10
# File 'lib/tradier/configurable.rb', line 8

def endpoint
  @endpoint
end

#middlewareObject

Returns the value of attribute middleware.



8
9
10
# File 'lib/tradier/configurable.rb', line 8

def middleware
  @middleware
end

#versionObject

Returns the value of attribute version.



8
9
10
# File 'lib/tradier/configurable.rb', line 8

def version
  @version
end

Class Method Details

.keysObject



13
14
15
16
17
18
19
20
21
# File 'lib/tradier/configurable.rb', line 13

def keys
  @keys ||= [
    :access_token,
    :endpoint,
    :version,
    :connection_options,
    :middleware
  ]
end

Instance Method Details

#configure {|_self| ... } ⇒ Object

Convenience method to allow configuration options to be set in a block

Yields:

  • (_self)

Yield Parameters:

Raises:



29
30
31
32
33
# File 'lib/tradier/configurable.rb', line 29

def configure
  yield self
  validate_credentials!
  self
end

#credentials?Boolean

Returns:

  • (Boolean)


36
37
38
# File 'lib/tradier/configurable.rb', line 36

def credentials?
  credentials.values.all?
end

#reset!Object Also known as: setup



40
41
42
43
44
45
# File 'lib/tradier/configurable.rb', line 40

def reset!
  Tradier::Configurable.keys.each do |key|
    instance_variable_set(:"@#{key}", Tradier::Default.options[key])
  end
  self
end