Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@bigfleet
Forked from ohammersmith/gist:122489
Created June 2, 2009 19:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bigfleet/122506 to your computer and use it in GitHub Desktop.
Save bigfleet/122506 to your computer and use it in GitHub Desktop.
DB per branch
<%= 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