module ActiveRecord::Reflection::ClassMethods

def reflections


Account.reflections # => {"balance" => AggregateReflection}

Returns a Hash of name of the reflection as the key and an AssociationReflection as the value.
def reflections
  @__reflections ||= begin
    ref = {}
    _reflections.each do |name, reflection|
      parent_reflection = reflection.parent_reflection
      if parent_reflection
        parent_name = parent_reflection.name
        ref[parent_name.to_s] = parent_reflection
      else
        ref[name] = reflection
      end
    end
    ref
  end
end