aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorEmilio Tagua <miloops@gmail.com>2010-02-18 18:58:01 -0300
committerEmilio Tagua <miloops@gmail.com>2010-02-18 18:58:01 -0300
commit39d88b8bce309fe9bdc1011b312c857ef194fbfa (patch)
treec26e07e8fc7144579b4e63629d974327484ffbdd /lib
parentd51697d2bd2cdd6394cb5e665aab8ab43ce9a14a (diff)
downloadrails-39d88b8bce309fe9bdc1011b312c857ef194fbfa.tar.gz
rails-39d88b8bce309fe9bdc1011b312c857ef194fbfa.tar.bz2
rails-39d88b8bce309fe9bdc1011b312c857ef194fbfa.zip
Fixed compiler require.
Diffstat (limited to 'lib')
-rw-r--r--lib/arel/engines/sql/relations/table.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/arel/engines/sql/relations/table.rb b/lib/arel/engines/sql/relations/table.rb
index 9ea07a00a1..e4b75d6c3d 100644
--- a/lib/arel/engines/sql/relations/table.rb
+++ b/lib/arel/engines/sql/relations/table.rb
@@ -18,7 +18,7 @@ module Arel
if @engine.connection
begin
- require "lib/arel/engines/sql/compilers/#{@engine.adapter_name.downcase}_compiler"
+ require "arel/engines/sql/compilers/#{@engine.adapter_name.downcase}_compiler"
rescue LoadError
raise "#{@engine.adapter_name} is not supported by Arel."
end