aboutsummaryrefslogtreecommitdiffstats
path: root/lib/arel/select_manager.rb
diff options
context:
space:
mode:
authorAaron Patterson <aaron.patterson@gmail.com>2012-01-12 11:36:24 -0800
committerAaron Patterson <aaron.patterson@gmail.com>2012-01-12 11:37:54 -0800
commit34f7d3442e7b0fa8f6dd2d270ee26545232ca816 (patch)
tree91efe7d1e820995efece5ee806694b608a2e2370 /lib/arel/select_manager.rb
parent529013d974312595555e2f080c5494ea23b3d892 (diff)
downloadrails-34f7d3442e7b0fa8f6dd2d270ee26545232ca816.tar.gz
rails-34f7d3442e7b0fa8f6dd2d270ee26545232ca816.tar.bz2
rails-34f7d3442e7b0fa8f6dd2d270ee26545232ca816.zip
bumping to 3.0.0
Diffstat (limited to 'lib/arel/select_manager.rb')
-rw-r--r--lib/arel/select_manager.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/arel/select_manager.rb b/lib/arel/select_manager.rb
index 82b73cf3aa..32f833f686 100644
--- a/lib/arel/select_manager.rb
+++ b/lib/arel/select_manager.rb
@@ -49,7 +49,7 @@ module Arel
def where_clauses
if $VERBOSE
- warn "(#{caller.first}) where_clauses is deprecated and will be removed in arel 3.0.0 with no replacement"
+ warn "(#{caller.first}) where_clauses is deprecated and will be removed in arel 4.0.0 with no replacement"
end
to_sql = Visitors::ToSql.new @engine.connection
@ctx.wheres.map { |c| to_sql.accept c }
@@ -160,7 +160,7 @@ module Arel
end
def wheres
- warn "#{caller[0]}: SelectManager#wheres is deprecated and will be removed in ARel 3.0.0 with no replacement"
+ warn "#{caller[0]}: SelectManager#wheres is deprecated and will be removed in ARel 4.0.0 with no replacement"
Compatibility::Wheres.new @engine.connection, @ctx.wheres
end
@@ -238,7 +238,7 @@ module Arel
def joins manager
if $VERBOSE
- warn "joins is deprecated and will be removed in 3.0.0"
+ warn "joins is deprecated and will be removed in 4.0.0"
warn "please remove your call to joins from #{caller.first}"
end
manager.join_sql
@@ -266,7 +266,7 @@ module Arel
def insert values
if $VERBOSE
warn <<-eowarn
-insert (#{caller.first}) is deprecated and will be removed in ARel 3.0.0. Please
+insert (#{caller.first}) is deprecated and will be removed in ARel 4.0.0. Please
switch to `compile_insert`
eowarn
end