Module: Hashie::Extensions::Coercion::ClassMethods

Defined in:
lib/hashie/extensions/coercion.rb

Instance Method Summary collapse

Instance Method Details

#coerce_key(*attrs) ⇒ Object Also known as: coerce_keys

Set up a coercion rule such that any time the specified key is set it will be coerced into the specified class. Coercion will occur by first attempting to call Class.coerce and then by calling Class.new with the value as an argument in either case.

Examples:

Coerce a "user" subhash into a User object

class Tweet < Hash
  include Hashie::Extensions::Coercion
  coerce_key :user, User
end

Parameters:

  • key (Object)

    the key or array of keys you would like to be coerced.

  • into (Class)

    the class into which you want the key(s) coerced.



103
104
105
106
107
# File 'lib/hashie/extensions/coercion.rb', line 103

def coerce_key(*attrs)
  @key_coercions ||= {}
  into = attrs.pop
  attrs.each { |key| @key_coercions[key] = into }
end

#coerce_value(from, into, options = {}) ⇒ Object

Set up a coercion rule such that any time a value of the specified type is set it will be coerced into the specified class.

Examples:

Coerce all hashes into this special type of hash

class SpecialHash < Hash
  include Hashie::Extensions::Coercion
  coerce_value Hash, SpecialHash

  def initialize(hash = {})
    super
    hash.each_pair do |k,v|
      self[k] = v
    end
  end
end

Parameters:

  • from (Class)

    the type you would like coerced.

  • into (Class)

    the class into which you would like the value coerced.

  • options (Hash) (defaults to: {})

    a customizable set of options

Options Hash (options):

  • :strict (Boolean) — default: true

    whether use exact source class only or include ancestors



142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
# File 'lib/hashie/extensions/coercion.rb', line 142

def coerce_value(from, into, options = {})
  options = { strict: true }.merge(options)

  if ABSTRACT_CORE_TYPES.key? from
    ABSTRACT_CORE_TYPES[from].each do | type |
      coerce_value type, into, options
    end
  end

  if options[:strict]
    (@strict_value_coercions ||= {})[from] = into
  else
    while from.superclass && from.superclass != Object
      (@lenient_value_coercions ||= {})[from] = into
      from = from.superclass
    end
  end
end

#key_coercion(key) ⇒ Object

Returns the specific key coercion for the specified key, if one exists.



118
119
120
# File 'lib/hashie/extensions/coercion.rb', line 118

def key_coercion(key)
  key_coercions[key.to_sym]
end

#key_coercionsObject

Returns a hash of any existing key coercions.



112
113
114
# File 'lib/hashie/extensions/coercion.rb', line 112

def key_coercions
  @key_coercions || {}
end

#lenient_value_coercionsObject

Return all value coercions that have the :strict rule as false.



166
167
168
# File 'lib/hashie/extensions/coercion.rb', line 166

def lenient_value_coercions
  @value_coercions || {}
end

#strict_value_coercionsObject

Return all value coercions that have the :strict rule as true.



162
163
164
# File 'lib/hashie/extensions/coercion.rb', line 162

def strict_value_coercions
  @strict_value_coercions || {}
end

#value_coercion(value) ⇒ Object

Fetch the value coercion, if any, for the specified object.



171
172
173
174
# File 'lib/hashie/extensions/coercion.rb', line 171

def value_coercion(value)
  from = value.class
  strict_value_coercions[from] || lenient_value_coercions[from]
end