aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/Rakefile
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2006-03-02 01:15:41 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2006-03-02 01:15:41 +0000
commit6a3f4c932a50eff696f4e8cb646249afaf8f47a1 (patch)
treeb6da4fa60a5aa9530198acf4714ead02f513b30d /activerecord/Rakefile
parent8fdb4bc8f61391be185c1e65e37e83535f680a8c (diff)
downloadrails-6a3f4c932a50eff696f4e8cb646249afaf8f47a1.tar.gz
rails-6a3f4c932a50eff696f4e8cb646249afaf8f47a1.tar.bz2
rails-6a3f4c932a50eff696f4e8cb646249afaf8f47a1.zip
Added Sybase database adapter that relies on the Sybase Open Client bindings (see http://raa.ruby-lang.org/project/sybase-ctlib) (closes #3765) [John Sheets]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@3734 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 e2d24472e9..e07ebd445c 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 firebird sqlserver sqlserver_odbc db2 oracle )
+for adapter in %w( mysql postgresql sqlite sqlite3 firebird sqlserver sqlserver_odbc db2 oracle sybase )
Rake::TestTask.new("test_#{adapter}") { |t|
t.libs << "test" << "test/connections/native_#{adapter}"
t.pattern = "test/*_test{,_#{adapter}}.rb"