I'm trying to install a Vagrant plugin, but got this error:
➜ ~ vagrant plugin install vagrant-bindfs
Installing the 'vagrant-bindfs' plugin. This can take a few minutes...
Bundler, the underlying system Vagrant uses to install plugins,
reported an error. The error is shown below. These errors are usually
caused by misconfigured plugin installations or transient network
issues. The error from Bundler is:
An error occurred while installing nokogiri (1.6.6.2), and Bundler cannot continue.
Make sure that `gem install nokogiri -v '1.6.6.2'` succeeds before bundling.
➜ ~
Then, I try to install Nokogiri:
➜ ~ gem install nokogiri -v '1.6.6.2'%
Building native extensions. This could take a while...
Successfully installed nokogiri-1.6.6.2
Parsing documentation for nokogiri-1.6.6.2
Done installing documentation for nokogiri after 2 seconds
1 gem installed
➜ ~
Then I try to install vagrant plugin again, it says the same thing:
Make sure that `gem install nokogiri -v '1.6.6.2'` succeeds before bundling.
Same happens when trying to install any vagrant plugin.
I'm on OSX Yosemite with Vagrant 1.6.3.
Am I doing something wrong?