When I try to do bundler update
I get this error:
.rvm/rubies/ruby-1.9.2-p180/lib/ruby/site_ruby/1.9.1/rubygems/dependency.rb:247:in
`to_specs': Could not find bundler (>= 0) amongst
[rake-0.8.7, rake-0.8.7, rubygems-update-1.8.4] (Gem::LoadError)
I'm new to Ruby, can someone tell me what would cause this? Rake 0.8.7 is installed.
Can be related to https://github.com/bundler/bundler-features/issues/34 if you are running the command inside another
bundle exec
. Try usingBundler.with_original_env
if that is the case.According to this answer to a similar question, it should be enough:
Cheers
For anyone encountering this issue with Capistrano: capistrano isn't able to locate the
bundler
. The reason might be that you installed bundler under some othergemset
where the Capistrano isn't even looking.Then, try again with the deploy task.
I had this problem, then I did:
notice "bundle" not "bundler" solved my problem.
then in your project folder do:
and then you can run your project using:
The command is
bundle update
(there is no "r" in the "bundle").To check if bundler is installed do :
gem list bundler
or evenwhich bundle
and the command will list either the bundler version or the path to it. If nothing is shown, then install bundler by typinggem install bundler
.I had the same problem .. something happened to my bash profile that wasn't setting up the RVM stuff correctly.
Make sure your bash profile has the following line:
Then I ran "source ~/.bash_profile" and that reloaded everything that was in my bash profile.
That seemed to fix it for me.