Created
June 2, 2009 18:39
-
-
Save ohammersmith/122489 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
<%= branch = `git symbolic-ref HEAD`.gsub('refs/heads/', '').chomp.gsub('/', '_') %> | |
login: &login | |
adapter: mysql | |
username: root | |
password: xxxxxxxxxxxxxx | |
host: localhost | |
socket: /opt/local/var/run/mysql5/mysqld.sock | |
development: | |
<<: *login | |
database: <%= "protopipe_#{branch}_development" %> | |
# Warning: The database defined as "test" will be erased and | |
# re-generated from your development database when you run "rake". | |
# Do not set this db to the same as development or production. | |
test: | |
<<: *login | |
database: <%= "protopipe_#{branch}_test" %> | |
cucumber: | |
<<: *login | |
database: <%= "protopipe_#{branch}_cucumber" %> | |
production: | |
<<: *login | |
database: <%= "protopipe_#{branch}_production" %> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment