diff options
author | Yves Senn <yves.senn@gmail.com> | 2012-10-16 21:34:58 +0200 |
---|---|---|
committer | Yves Senn <yves.senn@gmail.com> | 2012-10-18 07:44:41 +0200 |
commit | a06012c81fc9e13dea0a549ee7cdb2074e058d3e (patch) | |
tree | 7e134ad560dac3a3826d8ba37b0a70b76b7dc381 | |
parent | f00b33e17334c92485f83313a82399d6e30aafe1 (diff) | |
download | rails-a06012c81fc9e13dea0a549ee7cdb2074e058d3e.tar.gz rails-a06012c81fc9e13dea0a549ee7cdb2074e058d3e.tar.bz2 rails-a06012c81fc9e13dea0a549ee7cdb2074e058d3e.zip |
active_model/validations requires necessary files to run
-rw-r--r-- | activemodel/lib/active_model/validations.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/activemodel/lib/active_model/validations.rb b/activemodel/lib/active_model/validations.rb index a3b87daadb..9e6ec17ce1 100644 --- a/activemodel/lib/active_model/validations.rb +++ b/activemodel/lib/active_model/validations.rb @@ -3,6 +3,7 @@ require 'active_support/core_ext/hash/keys' require 'active_support/core_ext/hash/except' require 'active_model/errors' require 'active_model/validations/callbacks' +require 'active_model/validator' module ActiveModel |