Sha256: f5d0d79ccf99e41d21328b3f5d3ce4cd4f654f4ae9d836c46d3c0bb4dff49a68

Contents?: true

Size: 953 Bytes

Versions: 8

Compression:

Stored size: 953 Bytes

Contents

module Representable
  module HashMethods
    # FIXME: refactor Definition so we can simply add options in #items to existing definition.
    def representable_attrs
      attrs = super
      attrs << Definition.new(*definition_opts) if attrs.size == 0
      attrs
    end
    
    def create_representation_with(doc, options, format)
      bin   = representable_bindings_for(format).first
      hash  = filter_keys_for(self, options)
      bin.write(doc, hash)
    end
    
    def update_properties_from(doc, options, format)
      bin   = representable_bindings_for(format).first
      hash  = filter_keys_for(doc, options)
      value = bin.deserialize_from(hash)
      replace(value)
      self
    end
    
  private
    def filter_keys_for(hash, options)
      return hash unless props = options[:exclude] || options[:include]
      hash.reject { |k,v| options[:exclude] ? props.include?(k.to_sym) : !props.include?(k.to_sym) }
    end
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
representable-1.2.9 lib/representable/hash_methods.rb
representable-1.2.8 lib/representable/hash_methods.rb
representable-1.2.7 lib/representable/hash_methods.rb
representable-1.2.6 lib/representable/hash_methods.rb
representable-1.2.5 lib/representable/hash_methods.rb
representable-1.2.4 lib/representable/hash_methods.rb
representable-1.2.3 lib/representable/hash_methods.rb
representable-1.2.2 lib/representable/hash_methods.rb