quamen / disable-mass-assignment

Rails plugin to disable mass assignment by default on ActiveRecord objects

This URL has Read+Write access

Gareth Townsend (author)
Mon Mar 30 01:00:45 -0700 2009
name age message
file MIT-LICENSE Loading commit data...
file README
file Rakefile
file init.rb
directory tasks/
directory test/
README
DisableMassAssignment
=====================

This plugin sets attr_accessible to nil on the ActiveRecord::Base object, thus disabling mass assignment by default.

In each of your ActiveRecord models you will need to declare which attributes can be mass assigned by using 
attr_accessible.

Example
=======

attr_accessible :email, :first_name, :last_name


Copyright (c) 2009 Gareth Townsend, released under the MIT license