new(output, maxwidth=nil, newline=nil)
public
Create a PrettyPrint::SingleLine
object
Arguments:
-
output - String (or similar) to store
rendered text. Needs to
respond to ‘<<’
-
maxwidth - Argument position expected to be here for
compatibility.
This argument is a noop.
-
newline - Argument position expected to be here for compatibility.
This argument is a noop.
# File lib/prettyprint.rb, line 501
def initialize(output, maxwidth=nil, newline=nil)
@output = output
@first = [true]
end