Load rubygems in environment.rb [GH-781]
This commit is contained in:
parent
ef90fb7b0d
commit
700938b668
|
@ -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)
|
## 1.0.0 (March 6, 2012)
|
||||||
|
|
||||||
- `vagrant gem` should now be used to install Vagrant plugins that are
|
- `vagrant gem` should now be used to install Vagrant plugins that are
|
||||||
|
|
|
@ -2,6 +2,7 @@ require 'pathname'
|
||||||
require 'fileutils'
|
require 'fileutils'
|
||||||
|
|
||||||
require 'log4r'
|
require 'log4r'
|
||||||
|
require 'rubygems' # This is needed for plugin loading below.
|
||||||
|
|
||||||
require 'vagrant/util/file_mode'
|
require 'vagrant/util/file_mode'
|
||||||
require 'vagrant/util/platform'
|
require 'vagrant/util/platform'
|
||||||
|
|
Loading…
Reference in New Issue