'Why is bundle adding an extra 0 at the end of my Ruby version?
I'm trying to install dependencies by running bundle install
.
My Gemfile
specifies Ruby version as follows:
source 'https://rubygems.org'
ruby '2.6.6'
gem 'cocoapods', '1.10.2'
...
However when I run bundle install
I get the following output:
geoff:PayPalMobileSafariExtension git:(develop*) $ bundle install
Fetching <internal URL>
Fetching gem metadata from https://rubygems.org/........
Resolving dependencies...
Bundler found conflicting requirements for the Ruby version:
In Gemfile:
Ruby (~> 2.6.6.0)
<some-internal-dependency> was resolved to 1.0.0, which depends on
Ruby (= 2.6.6)
It's saying that I specified Ruby version 2.6.6.0 which is completely nonsensical, no such Ruby version exists and that's not even in the Gemfile
. What is causing this?
For context I am using rbenv
to manage my Ruby versions, it is currently set to 2.6.6.
Solution 1:[1]
Seems like this may have been due to a conflict between gem install
ed gems and bundle install
ing the same gems over again.
Doing gem uninstall -aIx
and then bundle install
may fix this.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|---|
Solution 1 | Liam |