How to update bundler, gem-wrappers gems

3k Views Asked by At

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)
1

There are 1 best solutions below

3
On BEST ANSWER

(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 example bundle exec rspec spec/...