Sha256: 418dacf16a443515f6c53a2658425884bee128745f15b01af7bcdb8f3b077229

Contents?: true

Size: 891 Bytes

Versions: 6165

Compression:

Stored size: 891 Bytes

Contents

# frozen_string_literal: true
require_relative '../handler'

module Psych
  module Handlers
    ###
    # This handler will capture an event and record the event.  Recorder events
    # are available vial Psych::Handlers::Recorder#events.
    #
    # For example:
    #
    #   recorder = Psych::Handlers::Recorder.new
    #   parser = Psych::Parser.new recorder
    #   parser.parse '--- foo'
    #
    #   recorder.events # => [list of events]
    #
    #   # Replay the events
    #
    #   emitter = Psych::Emitter.new $stdout
    #   recorder.events.each do |m, args|
    #     emitter.send m, *args
    #   end

    class Recorder < Psych::Handler
      attr_reader :events

      def initialize
        @events = []
        super
      end

      EVENTS.each do |event|
        define_method event do |*args|
          @events << [event, args]
        end
      end
    end
  end
end

Version data entries

6,165 entries across 6,165 versions & 19 rubygems

Version Path
cybrid_api_id_ruby-0.123.2 vendor/bundle/ruby/3.3.0/gems/psych-5.2.0/lib/psych/handlers/recorder.rb
cybrid_api_bank_ruby-0.123.2 vendor/bundle/ruby/3.3.0/gems/psych-5.2.0/lib/psych/handlers/recorder.rb
cybrid_api_organization_ruby-0.123.2 vendor/bundle/ruby/3.3.0/gems/psych-5.2.0/lib/psych/handlers/recorder.rb
cybrid_api_bank_ruby-0.122.72 vendor/bundle/ruby/3.3.0/gems/psych-5.2.0/lib/psych/handlers/recorder.rb
cybrid_api_organization_ruby-0.122.72 vendor/bundle/ruby/3.3.0/gems/psych-5.2.0/lib/psych/handlers/recorder.rb
cybrid_api_id_ruby-0.122.72 vendor/bundle/ruby/3.3.0/gems/psych-5.2.0/lib/psych/handlers/recorder.rb
cybrid_api_bank_ruby-0.122.71 vendor/bundle/ruby/3.3.0/gems/psych-5.2.0/lib/psych/handlers/recorder.rb
cybrid_api_id_ruby-0.122.71 vendor/bundle/ruby/3.3.0/gems/psych-5.2.0/lib/psych/handlers/recorder.rb
cybrid_api_organization_ruby-0.122.71 vendor/bundle/ruby/3.3.0/gems/psych-5.2.0/lib/psych/handlers/recorder.rb
cybrid_api_bank_ruby-0.122.70 vendor/bundle/ruby/3.3.0/gems/psych-5.2.0/lib/psych/handlers/recorder.rb
cybrid_api_organization_ruby-0.122.70 vendor/bundle/ruby/3.3.0/gems/psych-5.2.0/lib/psych/handlers/recorder.rb
cybrid_api_id_ruby-0.122.70 vendor/bundle/ruby/3.3.0/gems/psych-5.2.0/lib/psych/handlers/recorder.rb
cybrid_api_bank_ruby-0.122.69 vendor/bundle/ruby/3.3.0/gems/psych-5.2.0/lib/psych/handlers/recorder.rb
cybrid_api_id_ruby-0.122.69 vendor/bundle/ruby/3.3.0/gems/psych-5.2.0/lib/psych/handlers/recorder.rb
cybrid_api_organization_ruby-0.122.69 vendor/bundle/ruby/3.3.0/gems/psych-5.2.0/lib/psych/handlers/recorder.rb
cybrid_api_organization_ruby-0.122.68 vendor/bundle/ruby/3.3.0/gems/psych-5.2.0/lib/psych/handlers/recorder.rb
cybrid_api_bank_ruby-0.122.68 vendor/bundle/ruby/3.3.0/gems/psych-5.2.0/lib/psych/handlers/recorder.rb
cybrid_api_id_ruby-0.122.68 vendor/bundle/ruby/3.3.0/gems/psych-5.2.0/lib/psych/handlers/recorder.rb
cybrid_api_bank_ruby-0.122.67 vendor/bundle/ruby/3.3.0/gems/psych-5.2.0/lib/psych/handlers/recorder.rb
cybrid_api_organization_ruby-0.122.67 vendor/bundle/ruby/3.3.0/gems/psych-5.2.0/lib/psych/handlers/recorder.rb