diff options
author | Bryan Helmkamp <bryan@brynary.com> | 2009-08-06 18:22:10 -0400 |
---|---|---|
committer | Bryan Helmkamp <bryan@brynary.com> | 2009-08-06 18:22:10 -0400 |
commit | 53054c0032f46028280cd037ef31744bb54cc15f (patch) | |
tree | 61b9ae8f3c753e725df7896a64350d31a322d550 /spec/connections | |
parent | 86364591af807ed3fa4a7304f53e6f3458cb4961 (diff) | |
download | rails-53054c0032f46028280cd037ef31744bb54cc15f.tar.gz rails-53054c0032f46028280cd037ef31744bb54cc15f.tar.bz2 rails-53054c0032f46028280cd037ef31744bb54cc15f.zip |
Adding jeweler for gem management
Diffstat (limited to 'spec/connections')
-rw-r--r-- | spec/connections/mysql_connection.rb | 1 | ||||
-rw-r--r-- | spec/connections/postgresql_connection.rb | 1 | ||||
-rw-r--r-- | spec/connections/sqlite3_connection.rb | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/spec/connections/mysql_connection.rb b/spec/connections/mysql_connection.rb index a58ddc35ef..6e2950f7dc 100644 --- a/spec/connections/mysql_connection.rb +++ b/spec/connections/mysql_connection.rb @@ -1,3 +1,4 @@ +require "rubygems" require "activerecord" puts "Using native MySQL" diff --git a/spec/connections/postgresql_connection.rb b/spec/connections/postgresql_connection.rb index e376d33ec6..01d65f09dc 100644 --- a/spec/connections/postgresql_connection.rb +++ b/spec/connections/postgresql_connection.rb @@ -1,3 +1,4 @@ +require "rubygems" require "activerecord" puts "Using native PostgreSQL" diff --git a/spec/connections/sqlite3_connection.rb b/spec/connections/sqlite3_connection.rb index 649492f804..9e9503e0ca 100644 --- a/spec/connections/sqlite3_connection.rb +++ b/spec/connections/sqlite3_connection.rb @@ -1,3 +1,4 @@ +require "rubygems" require "activerecord" puts "Using native SQLite3" |