module Hashie::Extensions::Coercion::ClassMethods

def coercion_cache

def coercion_cache
  @coercion_cache ||= ::Hash.new do |hash, type|
    hash[type] = build_coercion(type)
  end
end