module ActiveModel::Access

def values_at(*methods)

def values_at(*methods)
  methods.flatten.map! { |method| public_send(method) }
end