aboutsummaryrefslogtreecommitdiffstats
path: root/activemodel/lib/active_model/validations.rb
diff options
context:
space:
mode:
authorAmiel Martin <amiel@carnesmedia.com>2014-06-20 15:49:27 -0700
committerAmiel Martin <amiel@carnesmedia.com>2014-06-24 17:20:24 -0700
commit6b0e834a194d112585f41deba0a40780d68e38c6 (patch)
treefeac948ca1c91cadc8c9361eeeb56f2bf1bcc965 /activemodel/lib/active_model/validations.rb
parent5b23e31771b898cf5e715e72f75dd9427c0a0875 (diff)
downloadrails-6b0e834a194d112585f41deba0a40780d68e38c6.tar.gz
rails-6b0e834a194d112585f41deba0a40780d68e38c6.tar.bz2
rails-6b0e834a194d112585f41deba0a40780d68e38c6.zip
Use #model_name on instances instead of classes
This allows rails code to be more confdent when asking for a model name, instead of having to ask for the class. Rails core discussion here: https://groups.google.com/forum/#!topic/rubyonrails-core/ThSaXw9y1F8
Diffstat (limited to 'activemodel/lib/active_model/validations.rb')
-rw-r--r--activemodel/lib/active_model/validations.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/activemodel/lib/active_model/validations.rb b/activemodel/lib/active_model/validations.rb
index cf97f45dba..e546863305 100644
--- a/activemodel/lib/active_model/validations.rb
+++ b/activemodel/lib/active_model/validations.rb
@@ -39,6 +39,7 @@ module ActiveModel
extend ActiveSupport::Concern
included do
+ extend ActiveModel::Naming
extend ActiveModel::Callbacks
extend ActiveModel::Translation