From 3d378cf6f4feb1f0c52d15d503f05eb032aaff24 Mon Sep 17 00:00:00 2001 From: Satoe Imaishi Date: Thu, 22 Aug 2019 13:54:34 -0400 Subject: [PATCH] Revert Gemfile tag reference update and put back branch reference --- Gemfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Gemfile b/Gemfile index bbc1d67d7bf..c26ded97b23 100644 --- a/Gemfile +++ b/Gemfile @@ -10,7 +10,7 @@ require File.join(Bundler::Plugin.index.load_paths("bundler-inject")[0], "bundle # VMDB specific gems # -gem "manageiq-gems-pending", ">0", :require => 'manageiq-gems-pending', :git => "https://github.com/ManageIQ/manageiq-gems-pending.git", :tag => "ivanchuk-1-rc1" +gem "manageiq-gems-pending", ">0", :require => 'manageiq-gems-pending', :git => "https://github.com/ManageIQ/manageiq-gems-pending.git", :branch => "ivanchuk" # Modified gems for gems-pending. Setting sources here since they are git references gem "handsoap", "~>0.2.5", :require => false, :git => "https://github.com/ManageIQ/handsoap.git", :tag => "v0.2.5-5" @@ -18,7 +18,7 @@ gem "handsoap", "~>0.2.5", :require => false, :git => "https://github.com/Manage # when using this Gemfile inside a providers Gemfile, the dependency for the provider is already declared def manageiq_plugin(plugin_name) unless dependencies.detect { |d| d.name == plugin_name } - gem plugin_name, :git => "https://github.com/ManageIQ/#{plugin_name}", :tag => "ivanchuk-1-rc1" + gem plugin_name, :git => "https://github.com/ManageIQ/#{plugin_name}", :branch => "ivanchuk" end end