Class: Configuration
- Inherits:
-
Object
- Object
- 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.
4 5 6 7 8 |
# File 'lib/marr/configuration.rb', line 4 def initialize @namespaces = [] @trace_id_length = 8 @custom_render = false end |
Instance Attribute Details
#custom_render ⇒ Object
Returns the value of attribute custom_render.
2 3 4 |
# File 'lib/marr/configuration.rb', line 2 def custom_render @custom_render end |
#namespaces ⇒ Object
Returns the value of attribute namespaces.
2 3 4 |
# File 'lib/marr/configuration.rb', line 2 def namespaces @namespaces end |
#trace_id_length ⇒ Object
Returns the value of attribute trace_id_length.
2 3 4 |
# File 'lib/marr/configuration.rb', line 2 def trace_id_length @trace_id_length end |