0.0
Repository is archived
No commit activity in last 3 years
No release in over 3 years
Rails helper that simplifies database per branch development.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

>= 0

Runtime

>= 4.2.0
 Project Readme

Branchinator

Gem Version

Database per branch so you can easily switch between database models.

Works with Rails 4.x and 5.x

How to use

bin/rails db:branch

Will create a new database and load it with seed. It will create .branchinator with db name for each env.

bin/rails db:unbranch

Will remove the database and .branchinator

bin/rails db:branch:reset

Shortcut for branch remove + create.

How to install

Put it into:

group :development, :test do
  gem 'branchinator'
end

In you database.yml put:

development:
  <<: *default
  database: <%= Branchinator.database %>
  
test:
  <<: *default
  database: <%= Branchinator.database %>

Update your .gitingore as well:

echo .branchinator >> .gitignore

Additional configuration

By default database name is taken from application name and looks something like:

awesomeproject_branch_environment

If you want you can change the first part and the separator.

In your database.yml put:

branchinator:
  prefix: awesome-project
  separator: _