Sha256: 5e59508cbf646b61d72ac85daeab1f273e68055d62947321f1a491ce1c63ef12

Contents?: true

Size: 667 Bytes

Versions: 6277

Compression:

Stored size: 667 Bytes

Contents

# frozen_string_literal: true
module Psych
  module Streaming
    module ClassMethods
      ###
      # Create a new streaming emitter.  Emitter will print to +io+.  See
      # Psych::Stream for an example.
      def new io
        emitter      = const_get(:Emitter).new(io)
        class_loader = ClassLoader.new
        ss           = ScalarScanner.new class_loader
        super(emitter, ss, {})
      end
    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

Version data entries

6,277 entries across 6,274 versions & 27 rubygems

Version Path
passbase-1.0.0 vendor/bundle/ruby/2.7.0/gems/psych-3.2.0/lib/psych/streaming.rb
psych-3.2.0-java lib/psych/streaming.rb
psych-3.2.0 lib/psych/streaming.rb
talon_one-2.0.0 vendor/bundle/ruby/2.3.0/gems/psych-3.1.0/lib/psych/streaming.rb
dadapush_client-1.0.1 vendor/bundle/ruby/2.3.0/gems/psych-3.1.0/lib/psych/streaming.rb
psych-3.1.0-x86-mingw32 lib/psych/streaming.rb
psych-3.1.0-x64-mingw32 lib/psych/streaming.rb
psych-3.1.0-java lib/psych/streaming.rb
psych-3.1.0 lib/psych/streaming.rb
psych-3.0.3-x86-mingw32 lib/psych/streaming.rb
psych-3.0.3-x64-mingw32 lib/psych/streaming.rb
psych-3.0.3 lib/psych/streaming.rb
psych-3.0.3-java lib/psych/streaming.rb
psych-3.0.3.pre5-java lib/psych/streaming.rb
psych-3.0.3.pre4-java lib/psych/streaming.rb
psych-3.0.3.pre3-x64-mingw32 lib/psych/streaming.rb
psych-3.0.3.pre3-java lib/psych/streaming.rb
psych-3.0.3.pre3 lib/psych/streaming.rb
psych-3.0.3.pre2-x86-mingw32 lib/psych/streaming.rb
psych-3.0.3.pre2-x64-mingw32 lib/psych/streaming.rb