jenkins-bot has submitted this change and it was merged. Change subject: Explain why vagrant gem comes from git ......................................................................
Explain why vagrant gem comes from git The last version of vagrant gem published on rubygems.org is version 1.5.0 https://rubygems.org/gems/vagrant . We need a later version hence why we point the gem to the upstream source repo on github. I have filled a bug for them to update rubygems.org again: https://github.com/mitchellh/vagrant/issues/5546 Add a note to Gemfile pointing to the upstream issue. Change-Id: Ibd173340f89b4468cfb250d376a222501b9bbe85 --- M Gemfile 1 file changed, 3 insertions(+), 0 deletions(-) Approvals: BryanDavis: Looks good to me, approved Zfilipin: Looks good to me, but someone else must approve jenkins-bot: Verified diff --git a/Gemfile b/Gemfile index a3c2fb5..35ea164 100644 --- a/Gemfile +++ b/Gemfile @@ -1,7 +1,10 @@ source 'https://rubygems.org' group :development do + # Upstream no more updates rubygems.org and we need a more recent version + # https://github.com/mitchellh/vagrant/issues/5546 gem 'vagrant', git: 'https://github.com/mitchellh/vagrant.git', tag: 'v1.7.2' + gem 'rubocop', require: false end -- To view, visit https://gerrit.wikimedia.org/r/201150 To unsubscribe, visit https://gerrit.wikimedia.org/r/settings Gerrit-MessageType: merged Gerrit-Change-Id: Ibd173340f89b4468cfb250d376a222501b9bbe85 Gerrit-PatchSet: 1 Gerrit-Project: mediawiki/vagrant Gerrit-Branch: master Gerrit-Owner: Hashar <[email protected]> Gerrit-Reviewer: BryanDavis <[email protected]> Gerrit-Reviewer: Dduvall <[email protected]> Gerrit-Reviewer: Ori.livneh <[email protected]> Gerrit-Reviewer: Zfilipin <[email protected]> Gerrit-Reviewer: jenkins-bot <> _______________________________________________ MediaWiki-commits mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits
