📁 File Manager Pro
v10.0.3 | PHP: 8.1.34
Server: Apache
2026-06-22 18:14:40
📂
/ (Root)
/
opt
/
alt
/
ruby20
/
lib64
/
ruby
/
2.0.0
/
psych
📍 /opt/alt/ruby20/lib64/ruby/2.0.0/psych
🔄 Refresh
✏️
Editing: streaming.rb
Read Only
module Psych module Streaming ### # Create a new streaming emitter. Emitter will print to +io+. See # Psych::Stream for an example. def initialize io super({}, self.class.const_get(:Emitter).new(io)) end ### # Start streaming using +encoding+ def start encoding = Nodes::Stream::UTF8 super.tap { yield self if block_given? } ensure finish if block_given? end private def register target, obj end end end
💾 Save Changes
❌ Cancel