Created
May 4, 2010 16:32
-
-
Save jeroenvandijk/389621 to your computer and use it in GitHub Desktop.
Instructions for setting up the prepackaged Rails test environment
This file contains 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
# These commands will help you setup the Rails test environment without problems | |
# | |
# MAKE SURE YOU HAVE VIRTUAL BOX INSTALLED http://www.virtualbox.org/wiki/Downloads | |
# | |
# Copy paste all of following commands in your normal terminal and the following things will happen: | |
# - rails_test_box dir is created | |
# - rails master branch is checkout in the dir rails | |
# - A Gemfile is created and all the gems to run the virtualbox are installed using bundler | |
# - The rails vagrant box is downloaded and added to your vagrant boxes | |
# - A Vagrantfile is created for vagrant | |
# - The rails box will be activated, meaning it will be copied from your vagrant boxes directory and started | |
# - The 'vagrant ssh' makes you go into the box from now on all the commands are in the virtualbox until you type 'exit' | |
gem install bundler | |
mkdir rails_test_box | |
cd rails_test_box | |
git clone git://github.com/rails/rails.git | |
echo 'source :rubygems | |
group :virtualbox do | |
gem "vagrant", "0.3.4" | |
end' > Gemfile | |
bundle install | |
bundle exec vagrant box add rails_test_box http://files.cookiestack.com/rails_test_env.box | |
echo 'Vagrant::Config.run do |config| | |
config.vm.share_folder("rails", "rails", "rails") | |
config.vm.box = "rails_test_box" | |
end' > Vagrantfile | |
bundle exec vagrant up | |
bundle exec vagrant ssh | |
# Now you are in the Virtualbox. Start running the tests! | |
cd rails | |
bundle install | |
rake |
This file contains 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
# To run the tests for 1.9.1-p376 do the following in the VirtualBox | |
# If you have logged out, you can log into the box again with 'vagrant ssh' | |
# (The bundle install only needs to be run the first time) | |
cd ~/rails | |
rvm 1.9.1-p376 | |
bundle install | |
rake |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment