Class: Redox::Configuration

Inherits:
Object
  • Object
show all
Defined in:
lib/redox.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeConfiguration

Returns a new instance of Configuration.



33
34
35
36
# File 'lib/redox.rb', line 33

def initialize
  @api_key  =  nil
  @secret   =  nil
end

Instance Attribute Details

#api_keyObject

Returns the value of attribute api_key.



31
32
33
# File 'lib/redox.rb', line 31

def api_key
  @api_key
end

#secretObject

Returns the value of attribute secret.



31
32
33
# File 'lib/redox.rb', line 31

def secret
  @secret
end

Instance Method Details

#api_endpointObject



42
43
44
# File 'lib/redox.rb', line 42

def api_endpoint
  return Connection.base_uri
end

#api_endpoint=(endpoint) ⇒ Object



38
39
40
# File 'lib/redox.rb', line 38

def api_endpoint=(endpoint)
  Connection.base_uri(endpoint.freeze)
end

#from_h(h) ⇒ Object



63
64
65
66
67
68
69
70
# File 'lib/redox.rb', line 63

def from_h(h)
  self.api_key = h[:api_key]
  self.secret  = h[:secret]
  self.api_endpoint = h[:api_endpoint]
  self.token_expiry_padding = h[:token_expiry_padding]

  return self
end

#to_hObject



54
55
56
57
58
59
60
61
# File 'lib/redox.rb', line 54

def to_h
  return {
    api_key: @api_key,
    secret: @secret,
    api_endpoint: api_endpoint,
    token_expiry_padding: token_expiry_padding
  }
end

#token_expiry_paddingObject



50
51
52
# File 'lib/redox.rb', line 50

def token_expiry_padding
  return Authentication.token_expiry_padding
end

#token_expiry_padding=(time_in_seconds) ⇒ Object



46
47
48
# File 'lib/redox.rb', line 46

def token_expiry_padding=(time_in_seconds)
  Authentication.token_expiry_padding = time_in_seconds
end