Sha256: 4af64f44e03ebfd5dc680b5908f663bf2b2787dd948196b901a8341837b02a4c

Contents?: true

Size: 964 Bytes

Versions: 8

Compression:

Stored size: 964 Bytes

Contents

require 'representable/binding'

module Representable
  module Hash
    class Binding < Representable::Binding
      def self.build_for(definition, *args)  # TODO: remove default arg.
        return Collection.new(definition, *args)  if definition.array?
        return Hash.new(definition, *args)        if definition.hash?
        new(definition, *args)
      end

      def read(hash)
        return FragmentNotFound unless hash.has_key?(as) # DISCUSS: put it all in #read for performance. not really sure if i like returning that special thing.

        hash[as] # fragment
      end

      def write(hash, fragment)
        hash[as] = fragment
      end

      def serialize_method
        :to_hash
      end

      def deserialize_method
        :from_hash
      end

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


      class Hash < self
        include Representable::Binding::Hash
      end
    end
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
representable-2.1.8 lib/representable/hash/binding.rb
representable-2.1.7 lib/representable/hash/binding.rb
representable-2.1.6 lib/representable/hash/binding.rb
representable-2.1.5 lib/representable/hash/binding.rb
representable-2.1.4 lib/representable/hash/binding.rb
representable-2.1.3 lib/representable/hash/binding.rb
representable-2.1.1 lib/representable/hash/binding.rb
representable-2.1.0 lib/representable/hash/binding.rb