Sha256: e81a8dabc37959f9ee6de6802f0f735d979229fa903ba3357e77769e81571120

Contents?: true

Size: 1.09 KB

Versions: 12

Compression:

Stored size: 1.09 KB

Contents

require 'representable/hash/binding'

module Representable
  module YAML
    class Binding < Representable::Hash::Binding
      def self.build_for(definition)
        return Collection.new(definition) if definition.array?
        new(definition)
      end

      def write(map, fragment, as)
        map.children << Psych::Nodes::Scalar.new(as)
        map.children << node_for(fragment)  # FIXME: should be serialize.
      end
    # private

      def node_for(fragment)
        write_scalar(fragment)
      end

      def write_scalar(value)
        return value if typed?

        Psych::Nodes::Scalar.new(value.to_s)
      end

      def serialize_method
        :to_ast
      end

      def deserialize_method
        :from_hash
      end


      class Collection < self
        include Representable::Binding::Collection

        def node_for(fragments)
          Psych::Nodes::Sequence.new.tap do |seq|
            seq.style = Psych::Nodes::Sequence::FLOW if self[:style] == :flow
            fragments.each { |frag| seq.children << write_scalar(frag) }
          end
        end
      end
    end
  end
end

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
representable-3.0.4 lib/representable/yaml/binding.rb
representable-3.0.3 lib/representable/yaml/binding.rb
representable-3.0.2 lib/representable/yaml/binding.rb
representable-3.0.1 lib/representable/yaml/binding.rb
representable-3.0.0 lib/representable/yaml/binding.rb
representable-2.4.1 lib/representable/yaml/binding.rb
representable-2.4.0 lib/representable/yaml/binding.rb
representable-2.4.0.rc5 lib/representable/yaml/binding.rb
representable-2.4.0.rc4 lib/representable/yaml/binding.rb
representable-2.4.0.rc3 lib/representable/yaml/binding.rb
representable-2.4.0.rc2 lib/representable/yaml/binding.rb
representable-2.4.0.rc1 lib/representable/yaml/binding.rb