Class: Interceptors::Configuration
- Inherits:
-
Object
- Object
- Interceptors::Configuration
- Defined in:
- lib/interceptors.rb
Instance Attribute Summary collapse
-
#logger ⇒ Object
Returns the value of attribute logger.
-
#notification_namespace ⇒ Object
Returns the value of attribute notification_namespace.
Instance Method Summary collapse
-
#initialize ⇒ Configuration
constructor
A new instance of Configuration.
Constructor Details
#initialize ⇒ Configuration
Returns a new instance of Configuration.
51 52 53 54 |
# File 'lib/interceptors.rb', line 51 def initialize @notification_namespace = "use_case" @logger = nil end |
Instance Attribute Details
#logger ⇒ Object
Returns the value of attribute logger.
49 50 51 |
# File 'lib/interceptors.rb', line 49 def logger @logger end |
#notification_namespace ⇒ Object
Returns the value of attribute notification_namespace.
49 50 51 |
# File 'lib/interceptors.rb', line 49 def notification_namespace @notification_namespace end |