aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/examples/shared_setup.rb
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2007-09-09 23:30:09 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2007-09-09 23:30:09 +0000
commit250f871b9012fc461f83d7767cc49fe40dbbc104 (patch)
tree284266c8e0fc1a99b201092a0e999c09084aab5f /activerecord/examples/shared_setup.rb
parentff9ca2ca1e1646e22ff43ec1a5844a0b733d5ba3 (diff)
downloadrails-250f871b9012fc461f83d7767cc49fe40dbbc104.tar.gz
rails-250f871b9012fc461f83d7767cc49fe40dbbc104.tar.bz2
rails-250f871b9012fc461f83d7767cc49fe40dbbc104.zip
Removed outdated benchmarks and examples
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@7439 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activerecord/examples/shared_setup.rb')
-rw-r--r--activerecord/examples/shared_setup.rb15
1 files changed, 0 insertions, 15 deletions
diff --git a/activerecord/examples/shared_setup.rb b/activerecord/examples/shared_setup.rb
deleted file mode 100644
index 6ede4b1d35..0000000000
--- a/activerecord/examples/shared_setup.rb
+++ /dev/null
@@ -1,15 +0,0 @@
-# Be sure to change the mysql_connection details and create a database for the example
-
-$: << File.dirname(__FILE__) + '/../lib'
-
-require 'active_record'
-require 'logger'; class Logger; def format_message(severity, timestamp, msg, progname) "#{msg}\n" end; end
-
-ActiveRecord::Base.logger = Logger.new(STDOUT)
-ActiveRecord::Base.establish_connection(
- :adapter => "mysql",
- :host => "localhost",
- :username => "root",
- :password => "",
- :database => "activerecord_examples"
-)