We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c5e3b5e commit 3350c07Copy full SHA for 3350c07
Gemfile
@@ -1,7 +1,9 @@
1
source 'https://rubygems.org'
2
3
group :development do
4
- gem 'vagrant', :git => 'git://github.com/mitchellh/vagrant.git', :tag => 'v1.2.7'
+ gem 'vagrant', :git => 'git://github.com/mitchellh/vagrant.git', :tag => 'v1.5.1'
5
end
6
7
-gemspec
+group :plugins do
8
+ gemspec
9
+end
test/Vagrantfile
# -*- mode: ruby -*-
# vi: set ft=ruby :
-Vagrant.require_plugin('vagrant-hostmanager')
+if Gem::Version.new(::Vagrant::VERSION) < Gem::Version.new('1.5')
+ Vagrant.require_plugin('vagrant-hostmanager')
Vagrant.configure('2') do |config|
config.vm.box = 'precise64'
0 commit comments