diff options
author | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2014-04-16 19:03:25 -0300 |
---|---|---|
committer | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2014-04-16 19:03:25 -0300 |
commit | 542457b5d2f56baafd60a0e46f1bfb9eb481e61b (patch) | |
tree | 5a93fa175cbd6b7516edbec3db303f944451a2eb /activemodel | |
parent | db5a610e779da3db94c6b24a10480c6d05e50a1c (diff) | |
parent | 9be22bd8d86733639fd0992a7862101cc463061d (diff) | |
download | rails-542457b5d2f56baafd60a0e46f1bfb9eb481e61b.tar.gz rails-542457b5d2f56baafd60a0e46f1bfb9eb481e61b.tar.bz2 rails-542457b5d2f56baafd60a0e46f1bfb9eb481e61b.zip |
Merge pull request #14783 from hakanensari/autoload-strict-validation-failed
Autoload ActiveModel::StrictValidationFailed
Diffstat (limited to 'activemodel')
-rw-r--r-- | activemodel/lib/active_model.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/activemodel/lib/active_model.rb b/activemodel/lib/active_model.rb index 3e49c34182..feb3d9371d 100644 --- a/activemodel/lib/active_model.rb +++ b/activemodel/lib/active_model.rb @@ -48,6 +48,7 @@ module ActiveModel eager_autoload do autoload :Errors + autoload :StrictValidationFailed, 'active_model/errors' end module Serializers |