Skip to content

Instantly share code, notes, and snippets.

@todorus
todorus / job_shell_script.sh
Last active October 12, 2015 16:36
How to install a Rails Continuos integration server in Jenkins
#!/bin/bash
source ~/.bashrc
rbenv install 2.2.0
gem install bundle
# setup the tests
bundle install
bundle exec rake db:migrate RAILS_ENV=test