How to update bundler, gem-wrappers gems in my Gemfile. The following gems are shown as outdated but I don't see a direct reference to them in the Gemfile.
gem outdated
bundler (1.7.3 < 1.7.7)
...
gem-wrappers (1.2.4 < 1.2.7)
How to update bundler, gem-wrappers gems in my Gemfile. The following gems are shown as outdated but I don't see a direct reference to them in the Gemfile.
gem outdated
bundler (1.7.3 < 1.7.7)
...
gem-wrappers (1.2.4 < 1.2.7)
Copyright © 2021 Jogjafile Inc.
(Assuming that you don't have an dependency issues) You can run a bundle update or In your Gemfile, you can remove the version numbers or get the specific version you want, and then do a bundle update.
And if you do specifically need those versions' then I guess you need to prefix the commands with
bundle exec
and let the bundler manage the dependencies. For examplebundle exec rspec spec/..
.