Sha256: 692f9eb5ea7dc882e550504940264029a54d396d6791efbe53ddbdcb8cb7b2f0

Contents?: true

Size: 1.08 KB

Versions: 3

Compression:

Stored size: 1.08 KB

Contents

require 'hashie'
require 'hashie/mash'

module VariaModel
  class Attributes < Hashie::Mash
    alias_method :old_setter, :[]=
    alias_method :old_dup, :dup

    attr_writer :coercions

    # @return [Hashie::Mash]
    def coercions
      @coercions ||= Hashie::Mash.new
    end

    def coercion(key)
      self.coercions[key]
    end

    def set_coercion(key, fun)
      self.coercions[key] = fun
    end

    # Override setter to coerce the given value if a coercion is defined
    def []=(key, value)
      coerced_value = coercion(key).present? ? coercion(key).call(value) : value
      old_setter(key, coerced_value)
    end

    # Return the containing Hashie::Mash of the given dotted path
    #
    # @param [String] path
    #
    # @return [Hashie::Mash, nil]
    def container(path)
      parts = path.split('.', 2)
      match = (self[parts[0].to_s] || self[parts[0].to_sym])
      if !parts[1] or match.nil?
        self
      else
        match.container(parts[1])
      end
    end

    def dup
      mash = old_dup
      mash.coercions = self.coercions
      mash
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
varia_model-0.6.0 lib/varia_model/attributes.rb
varia_model-0.5.0 lib/varia_model/attributes.rb
varia_model-0.4.1 lib/varia_model/attributes.rb