Created
August 24, 2011 16:00
-
-
Save manuelmorales/1168391 to your computer and use it in GitHub Desktop.
Custom Gemfiles
This file contains hidden or 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
# define your BUNDLE_GEMFILE environment variable | |
# NOTE: Ubuntu users must use .bashrc instead of .bash_profile | |
echo "export BUNDLE_GEMFILE=Gemfile.dev" >> ~/.bash_profile | |
# reload your terminal | |
source ~/.bash_profile | |
# install the bundler gem | |
gem install bundler | |
# pull the latest changes | |
git pull origin edge | |
# copy the custom Gemfile | |
cp Gemfile.custom.sample Gemfile.custom | |
# IMPORTANT: Edit that Gemfile.custom to uncomment the line corresponding with the database engine you want. | |
# install all the gems | |
bundle install | |
# Enjoy |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Note for ubuntu user: use ~/bashrc instead of ~/.bash_profile