diff options
author | Emilio Tagua <miloops@gmail.com> | 2009-05-18 19:59:47 -0300 |
---|---|---|
committer | Emilio Tagua <miloops@gmail.com> | 2009-05-18 19:59:47 -0300 |
commit | b522778a61670825948e2fbd4a3353583c1c7223 (patch) | |
tree | 2b27acd0585f0555f763ffec219c2813ad2bee63 /lib | |
parent | a7dea38204f3c40e4d0c3f29ebe17af818659697 (diff) | |
download | rails-b522778a61670825948e2fbd4a3353583c1c7223.tar.gz rails-b522778a61670825948e2fbd4a3353583c1c7223.tar.bz2 rails-b522778a61670825948e2fbd4a3353583c1c7223.zip |
Require active_support/core_ext since ActiveRecord don't require it any more
Diffstat (limited to 'lib')
-rw-r--r-- | lib/arel.rb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/arel.rb b/lib/arel.rb index 00bfa1e292..0240e23959 100644 --- a/lib/arel.rb +++ b/lib/arel.rb @@ -1,7 +1,8 @@ $LOAD_PATH.unshift(File.dirname(__FILE__)) require 'rubygems' -require 'activesupport' +require 'active_support' +require 'active_support/core_ext' require 'activerecord' require 'active_record/connection_adapters/abstract/quoting' |