From 4ffb63cd790740f045d0fe8cbe7366e023d0ff01 Mon Sep 17 00:00:00 2001 From: Darragh Bailey Date: Fri, 6 May 2022 20:25:50 +0100 Subject: [PATCH] Switch to https from git for vagrant-spec (#1492) Bundle now complains about cloning using the git protocol which is insecure by default. Switching to https urls resolves. --- Gemfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Gemfile b/Gemfile index 6981790..ff59bd7 100644 --- a/Gemfile +++ b/Gemfile @@ -26,11 +26,11 @@ group :development do vagrant_spec_verison = ENV['VAGRANT_SPEC_VERSION'] if !vagrant_spec_verison.nil? && !vagrant_spec_verison.empty? - gem 'vagrant-spec', :github => 'hashicorp/vagrant-spec', :ref => vagrant_spec_verison + gem 'vagrant-spec', :git => 'https://github.com/hashicorp/vagrant-spec', :ref => vagrant_spec_verison elsif vagrant_gem_version <= Gem::Version.new('2.2.7') - gem 'vagrant-spec', :github => 'hashicorp/vagrant-spec', :ref => '161128f2216cee8edb7bcd30da18bd4dea86f98a' + gem 'vagrant-spec', :git => 'https://github.com/hashicorp/vagrant-spec', :ref => '161128f2216cee8edb7bcd30da18bd4dea86f98a' else - gem 'vagrant-spec', :github => 'hashicorp/vagrant-spec', :branch => "main" + gem 'vagrant-spec', :git => 'https://github.com/hashicorp/vagrant-spec', :branch => "main" end if Gem::Version.new(RUBY_VERSION) >= Gem::Version.new('3.0.0')