class ActiveSupport::HashWithIndifferentAccess
def values_at(*keys)
hash[:b] = 'y'
hash[:a] = 'x'
hash = ActiveSupport::HashWithIndifferentAccess.new
Returns an array of the values at the specified indices:
def values_at(*keys) keys.map! { |key| convert_key(key) } super end