Class: Charyf::Application::Configuration
- Inherits:
-
Extension::Configuration
- Object
- Extension::Configuration
- Charyf::Application::Configuration
- Defined in:
- lib/charyf/utils/application/configuration.rb
Instance Attribute Summary collapse
-
#console ⇒ Object
Returns the value of attribute console.
-
#dispatcher ⇒ Object
Returns the value of attribute dispatcher.
-
#enabled_intent_processors ⇒ Object
Returns the value of attribute enabled_intent_processors.
-
#root ⇒ Object
readonly
Returns the value of attribute root.
-
#router ⇒ Object
Returns the value of attribute router.
-
#session_processor ⇒ Object
Returns the value of attribute session_processor.
-
#storage_provider ⇒ Object
Returns the value of attribute storage_provider.
Instance Method Summary collapse
- #error_handlers ⇒ Object
- #i18n ⇒ Object
-
#initialize(root) ⇒ Configuration
constructor
A new instance of Configuration.
Methods inherited from Extension::Configuration
Constructor Details
#initialize(root) ⇒ Configuration
Returns a new instance of Configuration.
15 16 17 18 19 |
# File 'lib/charyf/utils/application/configuration.rb', line 15 def initialize(root) @root = root end |
Dynamic Method Handling
This class handles dynamic methods through the method_missing method in the class Charyf::Extension::Configuration
Instance Attribute Details
#console ⇒ Object
Returns the value of attribute console.
10 11 12 |
# File 'lib/charyf/utils/application/configuration.rb', line 10 def console @console end |
#dispatcher ⇒ Object
Returns the value of attribute dispatcher.
12 13 14 |
# File 'lib/charyf/utils/application/configuration.rb', line 12 def dispatcher @dispatcher end |
#enabled_intent_processors ⇒ Object
Returns the value of attribute enabled_intent_processors.
13 14 15 |
# File 'lib/charyf/utils/application/configuration.rb', line 13 def enabled_intent_processors @enabled_intent_processors end |
#root ⇒ Object (readonly)
Returns the value of attribute root.
8 9 10 |
# File 'lib/charyf/utils/application/configuration.rb', line 8 def root @root end |
#router ⇒ Object
Returns the value of attribute router.
12 13 14 |
# File 'lib/charyf/utils/application/configuration.rb', line 12 def router @router end |
#session_processor ⇒ Object
Returns the value of attribute session_processor.
12 13 14 |
# File 'lib/charyf/utils/application/configuration.rb', line 12 def session_processor @session_processor end |
#storage_provider ⇒ Object
Returns the value of attribute storage_provider.
12 13 14 |
# File 'lib/charyf/utils/application/configuration.rb', line 12 def storage_provider @storage_provider end |
Instance Method Details
#error_handlers ⇒ Object
25 26 27 |
# File 'lib/charyf/utils/application/configuration.rb', line 25 def error_handlers Charyf::ErrorHandlers end |
#i18n ⇒ Object
21 22 23 |
# File 'lib/charyf/utils/application/configuration.rb', line 21 def i18n I18n end |