Allow specific bundler version to be installed #57
Closed
shanedroid wants to merge 2 commits intogeerlingguy:masterfrom
shanedroid:master
Closed
Allow specific bundler version to be installed #57shanedroid wants to merge 2 commits intogeerlingguy:masterfrom shanedroid:master
shanedroid wants to merge 2 commits intogeerlingguy:masterfrom
shanedroid:master
Conversation
added 2 commits
January 9, 2019 16:37
|
This pull request has been marked 'stale' due to lack of recent activity. If there is no further activity, the PR will be closed in another 30 days. Thank you for your contribution! Please read this blog post to see the reasons why I mark pull requests as stale. |
|
This pull request has been closed due to inactivity. If you feel this is in error, please reopen the pull request or file a new PR with the relevant details. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
I had previously hit an issue using this role when
Bundler 2.0.0was released because I am using it to install an older version of Ruby from source. I ended up in the situation where I needed to manually upgrade RubyGems withgem update --systemthen run ansible again. Setting theruby_bundler_versionallowed me to purposely installBundler 1.17.3instead.Bundler 2.0.1was then released which helped mitigate this by relaxing the RubyGems requirement to>= 2.5.0.I still think having the ability to install a specific version of Bundler is nice to have though.
ref:
rubygems/bundler#6866
rubygems/bundler#6867