-
Notifications
You must be signed in to change notification settings - Fork 50
/
Gemfile
31 lines (26 loc) · 894 Bytes
/
Gemfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
source 'https://rubygems.org'
ruby(File.read(File.expand_path('.ruby-version', __dir__))[/\d+\.\d+\.\d+.*/])
ENV['TEST_VAGRANT_VERSION'] ||= 'v2.3.4'
# Using the :plugins group causes Vagrant to automagially load auto_network
# during acceptance tests.
group :plugins do
gemspec
# source "https://gems.hashicorp.com/" do
# gem "vagrant-vmware-desktop"
# end
end
group :test, :development do
if ENV['TEST_VAGRANT_VERSION'] == 'HEAD'
gem 'vagrant', :git => 'https://github.com/hashicorp/vagrant', :branch => 'main'
else
gem 'vagrant', :git => 'https://github.com/hashicorp/vagrant', :tag => ENV['TEST_VAGRANT_VERSION']
end
gem 'rubydns', '~> 2.0.0'
end
group :test do
gem 'vagrant-spec', :git => 'https://github.com/hashicorp/vagrant-spec', :branch => 'main'
gem 'rake'
end
if File.exist? "#{__FILE__}.local"
eval(File.read("#{__FILE__}.local"), binding)
end