2c2630a788
We now depend on vagrant 1.9+ and LXC 2.0+, following bundled version in debian stretch. Also, update Gemfile to target latest vagrant/vagrant-spec. It's too complicated to test against old vagrant versions. Vagrant 1.8.x didn't specify an upper bound for supported versions but vagrant 1.9 does (<2.4). This breaks out CI testing matrix which tests against 2.3, 2.4 and 2.5. So let's make our live easier and just test against the latest vagrant version and try not to mistakenly drop support for our lowest supported vagrant version...
23 lines
733 B
Ruby
23 lines
733 B
Ruby
source 'https://rubygems.org'
|
|
|
|
group :development do
|
|
gem 'vagrant', git: 'https://github.com/mitchellh/vagrant.git'
|
|
gem 'guard'
|
|
gem 'guard-rspec'
|
|
gem 'rb-inotify'
|
|
end
|
|
|
|
group :development, :test do
|
|
gem 'rake', '~> 10.4.2'
|
|
gem 'rspec', '~> 3.5.0'
|
|
gem 'coveralls', '~> 0.7.2', require: (ENV['COVERAGE'] == 'true')
|
|
gem 'vagrant-spec', git: 'https://github.com/mitchellh/vagrant-spec.git'
|
|
end
|
|
|
|
group :plugins do
|
|
acceptance = (ENV['ACCEPTANCE'] == 'true')
|
|
gem 'vagrant-cachier', git: 'https://github.com/fgrehm/vagrant-cachier.git', require: !acceptance
|
|
gem 'vagrant-pristine', git: 'https://github.com/fgrehm/vagrant-pristine.git', require: !acceptance
|
|
gem 'vagrant-omnibus', require: !acceptance
|
|
gemspec
|
|
end
|