I am using Bundler for my Rails application. When I list installed bundler gems it lists 1.4.0.pre.1
and 1.3.15
and running bundler -v
yields 1.4.0.pre.1
(which is what i want).
However, when I try to run my application it says current bundler version is 1.0.15
. This version is not installed as a gem and I cannot figure out how to remove it (gem uninstall bundler -v 1.0.15
wont work since this version is not installed as a gem).
I have tried updating and installing new versions, but nothing is working. Please help, I've been stuck for hours. Thank you.
try running this on you app console:
This worked for me when using vagrant
Try running:
This will tell you the location of all the instances of bundler found on your computer.
From there, you should be able to locate the offending version of bundler and uninstall it.