Class: MyState
Constant Summary collapse
- WS =
" \r\t\n"
Instance Method Summary collapse
-
#initialize ⇒ MyState
constructor
A new instance of MyState.
- #make_spaces ⇒ Object
Constructor Details
#initialize ⇒ MyState
Returns a new instance of MyState.
88 89 90 91 92 93 94 95 96 97 |
# File 'lib/vendor/json_pure/tools/fuzz.rb', line 88 def initialize super( :indent => make_spaces, :space => make_spaces, :space_before => make_spaces, :object_nl => make_spaces, :array_nl => make_spaces, :max_nesting => false ) end |