Skip to content

Instantly share code, notes, and snippets.

@elricstorm
Created December 29, 2010 15:20
Show Gist options
  • Save elricstorm/758616 to your computer and use it in GitHub Desktop.
Save elricstorm/758616 to your computer and use it in GitHub Desktop.
mysql:
adapter: mysql
database: cheese_plugin_test
username:
password:
host: localhost
port: 3306
#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