Class: Rosetta::Configuration
- Inherits:
-
Object
- Object
- Rosetta::Configuration
- Defined in:
- lib/rosetta/configuration.rb
Instance Attribute Summary collapse
-
#parent_controller_class ⇒ Object
Returns the value of attribute parent_controller_class.
-
#queues ⇒ Object
Returns the value of attribute queues.
Instance Method Summary collapse
-
#initialize ⇒ Configuration
constructor
A new instance of Configuration.
Constructor Details
#initialize ⇒ Configuration
Returns a new instance of Configuration.
6 7 8 9 |
# File 'lib/rosetta/configuration.rb', line 6 def initialize @parent_controller_class = "ActionController::Base" @queues = {} end |
Instance Attribute Details
#parent_controller_class ⇒ Object
Returns the value of attribute parent_controller_class.
3 4 5 |
# File 'lib/rosetta/configuration.rb', line 3 def parent_controller_class @parent_controller_class end |
#queues ⇒ Object
Returns the value of attribute queues.
4 5 6 |
# File 'lib/rosetta/configuration.rb', line 4 def queues @queues end |