aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/Rakefile
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2005-11-16 08:18:13 +0000
committerJeremy Kemper <jeremy@bitsweat.net>2005-11-16 08:18:13 +0000
commit9cb02c5317759ab4741fb2786173287879534c1c (patch)
treebc674616bfe0099bc7eb169b0a134a6aa32bc5b9 /activerecord/Rakefile
parent2076dca63fde71693e4b8e23c4b1ace0a35b964f (diff)
downloadrails-9cb02c5317759ab4741fb2786173287879534c1c.tar.gz
rails-9cb02c5317759ab4741fb2786173287879534c1c.tar.bz2
rails-9cb02c5317759ab4741fb2786173287879534c1c.zip
r3116@asus: jeremy | 2005-11-16 00:17:06 -0800
Introducing the Firebird adapter. Closes #1874. git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@3052 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activerecord/Rakefile')
-rwxr-xr-xactiverecord/Rakefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/Rakefile b/activerecord/Rakefile
index ad38139eba..ac6bfb36c3 100755
--- a/activerecord/Rakefile
+++ b/activerecord/Rakefile
@@ -27,7 +27,7 @@ task :default => [ :test_mysql, :test_sqlite, :test_postgresql ]
# Run the unit tests
-for adapter in %w( mysql postgresql sqlite sqlite3 sqlserver sqlserver_odbc db2 oci )
+for adapter in %w( mysql postgresql sqlite sqlite3 firebird sqlserver sqlserver_odbc db2 oci )
Rake::TestTask.new("test_#{adapter}") { |t|
t.libs << "test" << "test/connections/native_#{adapter}"
t.pattern = "test/*_test{,_#{adapter}}.rb"