diff options
author | Tom Meier <ozmeier@yahoo.co.uk> | 2010-06-07 14:18:56 +1000 |
---|---|---|
committer | José Valim <jose.valim@gmail.com> | 2010-06-07 10:29:26 +0200 |
commit | 3f1cdb85b80b935791018e59161e527617af6f1f (patch) | |
tree | 1eb3a4a39046727cfedae5a8b96101b337508f83 | |
parent | 5273bd97e6746bd5bdc2450ad5a2d60f6a6eb7ae (diff) | |
download | rails-3f1cdb85b80b935791018e59161e527617af6f1f.tar.gz rails-3f1cdb85b80b935791018e59161e527617af6f1f.tar.bz2 rails-3f1cdb85b80b935791018e59161e527617af6f1f.zip |
Require active support/string/conversions so constantize can be used in associations.rb
Signed-off-by: José Valim <jose.valim@gmail.com>
-rwxr-xr-x | activerecord/lib/active_record/associations.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/activerecord/lib/active_record/associations.rb b/activerecord/lib/active_record/associations.rb index 5b0ba86308..284ae6695b 100755 --- a/activerecord/lib/active_record/associations.rb +++ b/activerecord/lib/active_record/associations.rb @@ -2,6 +2,7 @@ require 'active_support/core_ext/array/wrap' require 'active_support/core_ext/enumerable' require 'active_support/core_ext/module/delegation' require 'active_support/core_ext/object/blank' +require 'active_support/core_ext/string/conversions' module ActiveRecord class InverseOfAssociationNotFoundError < ActiveRecordError #:nodoc: |