aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/Rakefile
diff options
context:
space:
mode:
authorPratik Naik <pratiknaik@gmail.com>2009-08-17 13:56:59 +0100
committerPratik Naik <pratiknaik@gmail.com>2009-08-17 14:54:34 +0100
commit25e5b0c4a8d0045715a6ad11e2898585826e4e9b (patch)
treedad28e05c5b6fee48b32e025b880d5b3144d076f /activerecord/Rakefile
parentff1b0d3c86c2b26470a30a5edb958a365f00098e (diff)
downloadrails-25e5b0c4a8d0045715a6ad11e2898585826e4e9b.tar.gz
rails-25e5b0c4a8d0045715a6ad11e2898585826e4e9b.tar.bz2
rails-25e5b0c4a8d0045715a6ad11e2898585826e4e9b.zip
Remove support for SQLite 2.
If you're still using it, please install the plugin from git://github.com/rails/sqlite2_adapter.git
Diffstat (limited to 'activerecord/Rakefile')
-rw-r--r--activerecord/Rakefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/Rakefile b/activerecord/Rakefile
index fb3e81066c..c4971e88b0 100644
--- a/activerecord/Rakefile
+++ b/activerecord/Rakefile
@@ -36,7 +36,7 @@ task :isolated_test => defined?(JRUBY_VERSION) ?
%w(isolated_test_jdbcmysql isolated_test_jdbcsqlite3 isolated_test_jdbcpostgresql) :
%w(isolated_test_mysql isolated_test_sqlite3 isolated_test_postgresql)
-%w( mysql postgresql sqlite sqlite3 firebird db2 oracle sybase openbase frontbase jdbcmysql jdbcpostgresql jdbcsqlite3 jdbcderby jdbch2 jdbchsqldb ).each do |adapter|
+%w( mysql postgresql sqlite3 firebird db2 oracle sybase openbase frontbase jdbcmysql jdbcpostgresql jdbcsqlite3 jdbcderby jdbch2 jdbchsqldb ).each do |adapter|
Rake::TestTask.new("test_#{adapter}") { |t|
connection_path = "test/connections/#{adapter =~ /jdbc/ ? 'jdbc' : 'native'}_#{adapter}"
adapter_short = adapter == 'db2' ? adapter : adapter[/^[a-z]+/]