Class: Thincloud::Authentication::Configuration
- Inherits:
-
Object
- Object
- Thincloud::Authentication::Configuration
- Defined in:
- lib/thincloud/authentication/configuration.rb
Overview
Public: Configuration options for the Thincloud::Authentication module
Instance Attribute Summary collapse
-
#cookie_options ⇒ Object
Returns the value of attribute cookie_options.
-
#layout ⇒ Object
Returns the value of attribute layout.
-
#mailer_sender ⇒ Object
Returns the value of attribute mailer_sender.
-
#providers ⇒ Object
Returns the value of attribute providers.
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 19 20 21 |
# File 'lib/thincloud/authentication/configuration.rb', line 16 def initialize @layout = "application" @providers = {} @mailer_sender = "[email protected]" @cookie_options = {} end |
Instance Attribute Details
#cookie_options ⇒ Object
Returns the value of attribute cookie_options.
14 15 16 |
# File 'lib/thincloud/authentication/configuration.rb', line 14 def @cookie_options end |
#layout ⇒ Object
Returns the value of attribute layout.
14 15 16 |
# File 'lib/thincloud/authentication/configuration.rb', line 14 def layout @layout end |
#mailer_sender ⇒ Object
Returns the value of attribute mailer_sender.
14 15 16 |
# File 'lib/thincloud/authentication/configuration.rb', line 14 def mailer_sender @mailer_sender end |
#providers ⇒ Object
Returns the value of attribute providers.
14 15 16 |
# File 'lib/thincloud/authentication/configuration.rb', line 14 def providers @providers end |