Skip to content

Instantly share code, notes, and snippets.

@rubysolo
Forked from jbarnette/ar.rb
Created March 6, 2012 14:02
Show Gist options
  • Save rubysolo/1986436 to your computer and use it in GitHub Desktop.
Save rubysolo/1986436 to your computer and use it in GitHub Desktop.
class ActiveRecord::Base
attr_accessible nil
def update_attributes *args
raise "Don't call #{self.class.name}#update_attributes. " +
"Mass assignment is pure evil."
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment