Load rubygems in environment.rb [GH-781]

This commit is contained in:
Mitchell Hashimoto 2012-03-07 22:15:45 -08:00
parent ef90fb7b0d
commit 700938b668
2 changed files with 6 additions and 0 deletions

View File

@ -1,3 +1,8 @@
## 1.0.1 (unreleased)
- Add missing `rubygems` require in `environment.rb` to avoid
possible load errors. [GH-781]
## 1.0.0 (March 6, 2012)
- `vagrant gem` should now be used to install Vagrant plugins that are

View File

@ -2,6 +2,7 @@ require 'pathname'
require 'fileutils'
require 'log4r'
require 'rubygems' # This is needed for plugin loading below.
require 'vagrant/util/file_mode'
require 'vagrant/util/platform'