Class: Authentise::Configuration
- Inherits:
-
Object
- Object
- Authentise::Configuration
- Defined in:
- lib/authentise/configuration.rb
Overview
Store the config
Instance Attribute Summary collapse
-
#secret_partner_key ⇒ Object
The partner key Authentise gave you.
-
#use_ssl ⇒ Object
DEPRECATED Switch off the use of SSL for the old streaming API.
Instance Method Summary collapse
-
#initialize ⇒ Configuration
constructor
A new instance of Configuration.
Constructor Details
#initialize ⇒ Configuration
Returns a new instance of Configuration.
16 17 18 |
# File 'lib/authentise/configuration.rb', line 16 def initialize @use_ssl = true end |
Instance Attribute Details
#secret_partner_key ⇒ Object
The partner key Authentise gave you
10 11 12 |
# File 'lib/authentise/configuration.rb', line 10 def secret_partner_key @secret_partner_key end |
#use_ssl ⇒ Object
DEPRECATED Switch off the use of SSL for the old streaming API
14 15 16 |
# File 'lib/authentise/configuration.rb', line 14 def use_ssl @use_ssl end |