Sha256: fca4f80d7eba13c4475014f3b584008c20d15e48323ccf21d4cc961b024d68ab

Contents?: true

Size: 779 Bytes

Versions: 6277

Compression:

Stored size: 779 Bytes

Contents

# frozen_string_literal: true
module Psych
  module JSON
    module YAMLEvents # :nodoc:
      def start_document version, tag_directives, implicit
        super(version, tag_directives, !streaming?)
      end

      def end_document implicit_end = !streaming?
        super(implicit_end)
      end

      def start_mapping anchor, tag, implicit, style
        super(anchor, nil, true, Nodes::Mapping::FLOW)
      end

      def start_sequence anchor, tag, implicit, style
        super(anchor, nil, true, Nodes::Sequence::FLOW)
      end

      def scalar value, anchor, tag, plain, quoted, style
        if "tag:yaml.org,2002:null" == tag
          super('null', nil, nil, true, false, Nodes::Scalar::PLAIN)
        else
          super
        end
      end
    end
  end
end

Version data entries

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

Version Path
mx-platform-ruby-0.3.1 vendor/bundle/ruby/2.6.0/gems/psych-4.0.1/lib/psych/json/yaml_events.rb
passbase-1.3.0 vendor/bundle/ruby/2.7.0/gems/psych-3.2.0/lib/psych/json/yaml_events.rb
psych-4.0.1-java lib/psych/json/yaml_events.rb
psych-4.0.1 lib/psych/json/yaml_events.rb
psych-4.0.0-java lib/psych/json/yaml_events.rb
psych-4.0.0 lib/psych/json/yaml_events.rb
psych-3.3.2-java lib/psych/json/yaml_events.rb
psych-3.3.2 lib/psych/json/yaml_events.rb
mfk_openapi_ruby_client-1.0.0 vendor/bundle/ruby/2.7.0/gems/psych-3.3.1/lib/psych/json/yaml_events.rb
psych-3.3.1-java lib/psych/json/yaml_events.rb
psych-3.3.1 lib/psych/json/yaml_events.rb
psych-3.3.0-java lib/psych/json/yaml_events.rb
psych-3.3.0 lib/psych/json/yaml_events.rb
psych-3.2.1-java lib/psych/json/yaml_events.rb
psych-3.2.1 lib/psych/json/yaml_events.rb
passbase-1.2.0 vendor/bundle/ruby/2.7.0/gems/psych-3.2.0/lib/psych/json/yaml_events.rb
passbase-1.1.0 vendor/bundle/ruby/2.7.0/gems/psych-3.2.0/lib/psych/json/yaml_events.rb
passbase-1.0.3 vendor/bundle/ruby/2.7.0/gems/psych-3.2.0/lib/psych/json/yaml_events.rb
passbase-1.0.2 vendor/bundle/ruby/2.7.0/gems/psych-3.2.0/lib/psych/json/yaml_events.rb
passbase-1.0.1 vendor/bundle/ruby/2.7.0/gems/psych-3.2.0/lib/psych/json/yaml_events.rb