aboutsummaryrefslogtreecommitdiffstats
path: root/spec
diff options
context:
space:
mode:
authorBryan Helmkamp <bryan@brynary.com>2009-08-06 18:22:10 -0400
committerBryan Helmkamp <bryan@brynary.com>2009-08-06 18:22:10 -0400
commit53054c0032f46028280cd037ef31744bb54cc15f (patch)
tree61b9ae8f3c753e725df7896a64350d31a322d550 /spec
parent86364591af807ed3fa4a7304f53e6f3458cb4961 (diff)
downloadrails-53054c0032f46028280cd037ef31744bb54cc15f.tar.gz
rails-53054c0032f46028280cd037ef31744bb54cc15f.tar.bz2
rails-53054c0032f46028280cd037ef31744bb54cc15f.zip
Adding jeweler for gem management
Diffstat (limited to 'spec')
-rw-r--r--spec/connections/mysql_connection.rb1
-rw-r--r--spec/connections/postgresql_connection.rb1
-rw-r--r--spec/connections/sqlite3_connection.rb1
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"