class Hashie::Trash

in Ruby.
such as a Java api, where the keys are named differently from how we would
Trashes are useful when you need to read data from another application,
hash.
A Trash is a ‘translated’ Dash where the keys can be remapped from a source

def self.inherited(klass)

def self.inherited(klass)
  super
  klass.instance_variable_set('@transforms', transforms.dup)
  klass.instance_variable_set('@translations_hash', translations_hash.dup)
end

def self.inverse_translations

def self.inverse_translations
  @inverse_translations ||= begin
    h = {}
    translations_hash.each do |(property_name, property_translations)|
      property_translations.keys.each do |k|
        h[k] = property_name
      end
    end
    h
  end
end

def self.permitted_input_keys

def self.permitted_input_keys
  @permitted_input_keys ||= properties.map { |property| inverse_translations.fetch property, property }
end

def self.property(property_name, options = {})

without using the :from option. It transform the property itself.
* :transform_with - Specify a lambda to be used to convert value
* :with - Specify a lambda to be used to convert value.
* :from - Specify the original key name that will be write only.
returned before a value is set on the property in a new Dash.
* :default - Specify a default value for this property, to be

Defines a property on the Trash. Options are as follows:
def self.property(property_name, options = {})
  super
  options[:from] = options[:from] if options[:from]
  if options[:from]
    if property_name == options[:from]
      fail ArgumentError, "Property name (#{property_name}) and :from option must not be the same"
    end
    translations_hash[options[:from]] ||= {}
    translations_hash[options[:from]][property_name] = options[:with] || options[:transform_with]
    define_method "#{options[:from]}=" do |val|
      self.class.translations_hash[options[:from]].each do |name, with|
        self[name] = with.respond_to?(:call) ? with.call(val) : val
      end
    end
  else
    if options[:transform_with].respond_to? :call
      transforms[property_name] = options[:transform_with]
    end
  end
end

def self.transformation_exists?(name)

def self.transformation_exists?(name)
  transforms.key? name
end

def self.transformed_property(property_name, value)

def self.transformed_property(property_name, value)
  transforms[property_name].call(value)
end

def self.translation_exists?(name)

def self.translation_exists?(name)
  translations_hash.key? name
end

def self.translations

def self.translations
  @translations ||= begin
    h = {}
    translations_hash.each do |(property_name, property_translations)|
      h[property_name] = property_translations.size > 1 ? property_translations.keys : property_translations.keys.first
    end
    h
  end
end

def []=(property, value)

on pre-existing properties.
Set a value on the Dash in a Hash-like way. Only works
def []=(property, value)
  if self.class.translation_exists? property
    send("#{property}=", value)
  elsif self.class.transformation_exists? property
    super property, self.class.transformed_property(property, value)
  elsif property_exists? property
    super
  end
end

def initialize_attributes(attributes)

Deletes any keys that have a translation
def initialize_attributes(attributes)
  return unless attributes
  attributes_copy = attributes.dup.delete_if do |k, v|
    if self.class.translations_hash.include?(k)
      self[k] = v
      true
    end
  end
  super attributes_copy
end

def property_exists?(property)


Raises an NoMethodError if the property doesn't exist
def property_exists?(property)
  fail_no_property_error!(property) unless self.class.property?(property)
  true
end