-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathGemfile
22 lines (20 loc) · 879 Bytes
/
Gemfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
source 'https://rubygems.org'
# this next line is needed for vagrant-vmware-workstation for acceptance testing
#source "http://gems.hashicorp.com"
group :development do
if ENV.has_key?('VAGRANT_VERSION')
gem "vagrant", git: "https://github.com/mitchellh/vagrant.git", tag: "v#{ENV['VAGRANT_VERSION']}"
else
gem "vagrant", git: "https://github.com/mitchellh/vagrant.git", branch: 'master'
end
# pinned to branch for https://github.com/mitchellh/vagrant-spec/pull/16
gem 'vagrant-spec', :github => 'jantman/vagrant-spec', :ref => 'junit_and_env'
gem 'simplecov', :require => false
gem 'codecov', :require => false
gem "rspec_junit_formatter", :require => false
gem 'rspec-matcher-num-times', git: "https://github.com/jantman/rspec-matcher-num-times.git", branch: 'rspec2'
end
group :plugins do
gemspec
#gem 'vagrant-vmware-workstation', '3.2.8'
end