-
Notifications
You must be signed in to change notification settings - Fork 4
/
Gemfile
39 lines (30 loc) · 851 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
32
33
34
35
36
37
38
39
# frozen_string_literal: true
source 'https://rubygems.org'
require 'rubygems/version'
vagrant_branch = ENV['TEST_VAGRANT_VERSION'] || 'v2.2.9'
group :plugins do
gemspec
end
group :development do
gem 'rake'
gem 'redcarpet'
gem 'rubocop'
gem 'rubocop-rspec'
gem 'yard', '~> 0.9.16'
gem 'github_changelog_generator'
end
group :test do
if %r{head}i.match?(vagrant_branch)
gem 'vagrant', git: 'https://github.com/hashicorp/vagrant.git',
branch: 'main'
else
gem 'vagrant', git: 'https://github.com/hashicorp/vagrant.git',
tag: vagrant_branch
end
gem 'vagrant-spec', git: 'https://github.com/hashicorp/vagrant-spec.git',
branch: 'main'
end
group :system_tests do
gem 'bolt', "~> 2.36.0"
end
eval_gemfile "#{__FILE__}.local" if File.exist? "#{__FILE__}.local"