mirror of
https://github.com/hashicorp/vagrant.git
synced 2025-12-18 15:46:05 -05:00
12 lines
319 B
Ruby
12 lines
319 B
Ruby
# Copyright (c) HashiCorp, Inc.
|
|
# SPDX-License-Identifier: BUSL-1.1
|
|
|
|
source "https://rubygems.org"
|
|
|
|
gemspec
|
|
|
|
if File.exist?(File.expand_path("../../vagrant-spec", __FILE__))
|
|
gem 'vagrant-spec', path: "../vagrant-spec"
|
|
else
|
|
gem 'vagrant-spec', git: "https://github.com/hashicorp/vagrant-spec.git", branch: :main
|
|
end
|