mirror of
https://github.com/hashicorp/vagrant.git
synced 2026-02-03 20:39:27 -05:00
Co-authored-by: hashicorp-copywrite[bot] <110428419+hashicorp-copywrite[bot]@users.noreply.github.com>
12 lines
320 B
Ruby
12 lines
320 B
Ruby
# Copyright IBM Corp. 2010, 2025
|
|
# 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
|