Go to file
Mitchell Hashimoto c8ae1a265a Extra protection in the rgloader file 2013-01-31 19:54:50 -08:00
bin Warn if Vagrant is run outside of installers 2013-01-28 13:39:56 -08:00
config Upgrade V1 shared folders to V2 2013-01-23 09:27:47 -08:00
contrib Make it more future proof by not using first and last command 2012-04-24 21:46:54 +02:00
keys DOC: keys/README.md -- fix urls to docs. 2013-01-03 11:32:39 -05:00
lib Improve subprocess logging 2013-01-31 19:47:54 -08:00
plugins Fix issue where set name doesn't work if saved 2013-01-31 11:26:45 -08:00
tasks Make acceptance tasks easier to run 2012-01-08 23:04:14 -08:00
templates Extra protection in the rgloader file 2013-01-31 19:54:50 -08:00
test Give a nice human-friendly error message when problems loading Vfile 2013-01-30 20:01:41 -08:00
.gitignore Gemspec no longer depends on git. 2012-12-01 11:13:33 -08:00
.travis.yml Fix whitespace in travis.yml 2013-01-29 11:23:42 -08:00
.yardopts YARD and some documentation 2010-09-22 09:43:30 -06:00
CHANGELOG.md VirtualBox config: "name" to set the VM name [GH-1126] 2013-01-30 23:03:21 -08:00
Gemfile Remove all the virtualbox shenanigans in the Gemfile 2011-12-21 23:30:45 -08:00
LICENSE Update year in LICENSE 2013-01-25 16:29:13 -08:00
README.md Update the README 2013-01-13 17:44:08 -08:00
Rakefile stdout.sync = true for rake tasks. 2011-11-13 19:41:38 -08:00
vagrant.gemspec Remove archive-tar-minitar dependency 2013-01-28 13:29:48 -08:00

README.md

Vagrant

Vagrant is a tool for building and distributing development environments.

Vagrant provides the framework and configuration format to create and manage complete portable development environments. These development environments can live on your computer or in the cloud, and are portable between Windows, Mac OS X, and Linux.

Quick Start

First, make sure your development machine has VirtualBox installed. After this, download and install the appropriate Vagrant package for your OS. If you're not on Mac OS X or Windows, you'll need to add /opt/vagrant/bin to your PATH. After this, you're ready to go!

To build your first virtual environment:

vagrant init precise32 http://files.vagrantup.com/precise32.box
vagrant up

Note: The above vagrant up command will also trigger Vagrant to download the precise32 box via the specified URL. Vagrant only does this if it detects that the box doesn't already exist on your system.

Getting Started Guide

To learn how to build a fully functional rails development environment, view the getting started guide.

Installing the Gem from Git

If you want the bleeding edge version of Vagrant, we try to keep master pretty stable and you're welcome to give it a shot. The following is an example showing how to do this:

rake install

Contributing to Vagrant

Dependencies and Unit Tests

To hack on vagrant, you'll need bundler which can be installed with a simple gem install bundler. Afterwords, do the following:

bundle install
rake

This will run the unit test suite, which should come back all green! Then you're good to go!

If you want to run Vagrant without having to install the gem, you may use bundle exec, like so:

bundle exec bin/vagrant help

Acceptance Tests

Vagrant also comes with an acceptance test suite which runs the system end-to-end, without mocking out any dependencies. Note that this test suite is extremely slow, with the test suite taking hours on even a decent system. A CI will be setup in due time to run these tests automatically. However, it is still useful to know how to run these tests since it is often useful to run a single test if you're working on a specific feature.

The acceptance tests have absolutely zero dependence on the Vagrant source. Instead, an external configuration file must be used to give the acceptance tests some parameters (such as what Vagrant version is running, where the Vagrant vagrant binary is, etc.). If you want to run acceptance tests against source, or just want to see an example of this file, you can generate it automatically for the source code:

rake acceptance:config

This will drop an acceptance_config.yml file in your working directory. You can then run a specific acceptance test like so:

ACCEPTANCE_CONFIG=./acceptance_config.yml ruby test/acceptance/version_test.rb

That's it!

If you're developing an acceptance test and you're unsure why things might be failing, you can also view log output for the acceptance tests, which can be very verbose but are a great help in finding bugs:

ACCEPTANCE_LOGGING=debug ACCEPTANCE_CONFIG=./acceptance_config.yml ruby test/acceptance/version_test.rb