Method: Psych::Nodes::Stream#initialize
- Defined in:
- lib/psych/nodes/stream.rb
#initialize(encoding = UTF8) ⇒ Stream
Create a new Psych::Nodes::Stream node with an encoding that defaults to Psych::Nodes::Stream::UTF8.
See also Psych::Handler#start_stream
32 33 34 35 |
# File 'lib/psych/nodes/stream.rb', line 32 def initialize encoding = UTF8 super() @encoding = encoding end |