Created
December 29, 2010 15:20
-
-
Save elricstorm/758616 to your computer and use it in GitHub Desktop.
This file contains 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
mysql: | |
adapter: mysql | |
database: cheese_plugin_test | |
username: | |
password: | |
host: localhost | |
port: 3306 |
This file contains 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
#require File.dirname(__FILE__) + "/../" + 'app/models/cheese/widget.rb' | |
# should be changed to | |
require File.join(File.dirname(__FILE__),"..","app/models/cheese/widget.rb") | |
# this will allow users for all OS environments to access the correct require path for widget.rb | |
# Under manually configuring the database, the conn should be changed to allow for ports | |
conn = Mysql.real_connect( config['mysql']['host'], | |
config['mysql']['username'], | |
config['mysql']['password'], | |
nil, # not providing a named database in real connect | |
config['mysql']['port'] | |
) | |
conn.query( "CREATE DATABASE IF NOT EXISTS #{config['mysql']['database']}" ) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment