Skip to content

Instantly share code, notes, and snippets.

@ohammersmith
Created June 2, 2009 18:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save ohammersmith/122489 to your computer and use it in GitHub Desktop.
Save ohammersmith/122489 to your computer and use it in GitHub Desktop.
<%= 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