Class: Rookout::Processor::Namespaces::ObjectDumpConfig
- Inherits:
-
Object
- Object
- Rookout::Processor::Namespaces::ObjectDumpConfig
- Defined in:
- lib/rookout/processor/namespaces/ruby_object_namespace.rb
Instance Attribute Summary collapse
-
#max_collection_depth ⇒ Object
readonly
Returns the value of attribute max_collection_depth.
-
#max_depth ⇒ Object
readonly
Returns the value of attribute max_depth.
-
#max_string ⇒ Object
readonly
Returns the value of attribute max_string.
-
#max_width ⇒ Object
readonly
Returns the value of attribute max_width.
Instance Method Summary collapse
-
#initialize(max_depth, max_width, max_collection_depth, max_string) ⇒ ObjectDumpConfig
constructor
A new instance of ObjectDumpConfig.
Constructor Details
#initialize(max_depth, max_width, max_collection_depth, max_string) ⇒ ObjectDumpConfig
Returns a new instance of ObjectDumpConfig.
13 14 15 16 17 18 |
# File 'lib/rookout/processor/namespaces/ruby_object_namespace.rb', line 13 def initialize max_depth, max_width, max_collection_depth, max_string @max_depth = max_depth @max_width = max_width @max_collection_depth = max_collection_depth @max_string = max_string end |
Instance Attribute Details
#max_collection_depth ⇒ Object (readonly)
Returns the value of attribute max_collection_depth.
22 23 24 |
# File 'lib/rookout/processor/namespaces/ruby_object_namespace.rb', line 22 def max_collection_depth @max_collection_depth end |
#max_depth ⇒ Object (readonly)
Returns the value of attribute max_depth.
20 21 22 |
# File 'lib/rookout/processor/namespaces/ruby_object_namespace.rb', line 20 def max_depth @max_depth end |
#max_string ⇒ Object (readonly)
Returns the value of attribute max_string.
23 24 25 |
# File 'lib/rookout/processor/namespaces/ruby_object_namespace.rb', line 23 def max_string @max_string end |
#max_width ⇒ Object (readonly)
Returns the value of attribute max_width.
21 22 23 |
# File 'lib/rookout/processor/namespaces/ruby_object_namespace.rb', line 21 def max_width @max_width end |