Rails: update_attribute vs update_attributes

Object.update_attribute(:only_one_field, "Some Value") Object.update_attributes(:field1 => "value", :field2 => "value2", :field3 => "value3") Ambos actualizarán un objeto sin tener que decirle explícitamente a AR que actualice. Rails API dice: para update_attribute Actualiza un solo...