forked from hashicorp/vagrant-vmware-desktop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
30 lines (24 loc) · 720 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
# Copyright (c) HashiCorp, Inc.
# SPDX-License-Identifier: MPL-2.0
# A sample Gemfile
source "https://rubygems.org"
group :development do
if File.exist?(File.expand_path("../../vagrant", __FILE__))
gem "vagrant", path: "../vagrant"
elsif ENV["VAGRANT_PATH"]
gem "vagrant", path: ENV["VAGRANT_PATH"]
else
gem "vagrant", git: "https://github.com/hashicorp/vagrant.git"
end
gem "rake"
gem "rspec", "~> 3.1"
gem "rspec-its", "~> 1.1"
gem "webmock", "~> 1.9.3"
#gem "debugger", "~> 1.3.1"
#gem "vagrant-spec", :git => "git://github.com/mitchellh/vagrant-spec.git"
end
group :plugins do
gem "vagrant-vmware-desktop",
:path => ".", :require => "vagrant-vmware-desktop"
end
gem "fpm"