aboutsummaryrefslogtreecommitdiffstats
path: root/activemodel/test/models
diff options
context:
space:
mode:
authorGuillermo Iguaran <guilleiguaran@gmail.com>2012-09-01 22:36:27 -0500
committerGuillermo Iguaran <guilleiguaran@gmail.com>2012-09-16 23:58:21 -0500
commit9bfa13bb06d510b95f9af27bf12abf031f9af0a5 (patch)
tree59ac0ae191f1f0350d73d477841c6c2bf35cff59 /activemodel/test/models
parent91bcebbdef0e31d38622785a064d023272f712db (diff)
downloadrails-9bfa13bb06d510b95f9af27bf12abf031f9af0a5.tar.gz
rails-9bfa13bb06d510b95f9af27bf12abf031f9af0a5.tar.bz2
rails-9bfa13bb06d510b95f9af27bf12abf031f9af0a5.zip
attr_accessible and attr_protected raise an exception pointing to use plugin or new protection model
Diffstat (limited to 'activemodel/test/models')
-rw-r--r--activemodel/test/models/project.rb3
1 files changed, 3 insertions, 0 deletions
diff --git a/activemodel/test/models/project.rb b/activemodel/test/models/project.rb
new file mode 100644
index 0000000000..581b6dc0b3
--- /dev/null
+++ b/activemodel/test/models/project.rb
@@ -0,0 +1,3 @@
+class Project
+ include ActiveModel::DeprecatedMassAssignmentSecurity
+end