Created
November 24, 2008 15:00
-
-
Save oki/28485 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/env ruby | |
| require 'rubygems' | |
| require 'activerecord' | |
| # require 'activesupport' | |
| require 'pp' | |
| require 'logger' | |
| ActiveRecord::Base.establish_connection( | |
| :adapter => "mysql", | |
| :host => "fobar", | |
| :database => "fobase", | |
| :username => "bla", | |
| :password => "bl4h" | |
| ) | |
| # logs to stdout | |
| # ActiveRecord::Base.logger = Logger.new(STDOUT) | |
| class Customer < ActiveRecord::Base | |
| end | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment