Class: Marr::Configuration
- Inherits:
-
Object
- Object
- Marr::Configuration
- Defined in:
- lib/marr/configuration.rb
Instance Attribute Summary collapse
-
#custom_render ⇒ Object
Returns the value of attribute custom_render.
-
#namespaces ⇒ Object
Returns the value of attribute namespaces.
-
#trace_id_length ⇒ Object
Returns the value of attribute trace_id_length.
Instance Method Summary collapse
-
#initialize ⇒ Configuration
constructor
A new instance of Configuration.
Constructor Details
#initialize ⇒ Configuration
Returns a new instance of Configuration.
5 6 7 8 9 |
# File 'lib/marr/configuration.rb', line 5 def initialize @namespaces = [] @trace_id_length = 8 @custom_render = false end |
Instance Attribute Details
#custom_render ⇒ Object
Returns the value of attribute custom_render.
3 4 5 |
# File 'lib/marr/configuration.rb', line 3 def custom_render @custom_render end |
#namespaces ⇒ Object
Returns the value of attribute namespaces.
3 4 5 |
# File 'lib/marr/configuration.rb', line 3 def namespaces @namespaces end |
#trace_id_length ⇒ Object
Returns the value of attribute trace_id_length.
3 4 5 |
# File 'lib/marr/configuration.rb', line 3 def trace_id_length @trace_id_length end |