Bundler::GemfileNotFound whenever I try to run bundle install
bundler, ruby
Solution
The problem was that for some weird motive Ruby didn't detected that `bundler` was installed, although the package manager says so.
$ apt-cache policy bundler
bundler:
Installed: 1.3.5-2
Candidate: 1.3.5-2
$ bundle --version
Bundler::GemfileNotFound
I simply run `gem install bundler` then `bundler install` as root in the tool root path and everything works as charm.
Problem
I'm working in kali-linux (a linux distro witch is the continuation of Back-Track, based in Ubuntu, just that now is based on Debian wheezy) for some penetration testing. Everything was working just fine, until I decided to update my systems tools. Now whenever I try to run a tool based on ruby, it trows me: ``` Could not find gem 'ruby-progressbar (>= 1.1.0) ruby' in the gems available on this machine. Run `bundle install` to install missing gems. ``` I proceed to run `bundle install` but then it comes with `Bundler::GemfileNotFound` error. Kali use by default ruby, for using gems. The software don't 'require' any other package but ruby seems not-fully-configured/installed for the problem at hand. ``` $ ruby --version ruby 1.9.3p194 (2012-04-20 revision 35410) [i486-linux] $ rvm bash: rvm: command not found $ rbenv bash: rbenv: command not found ```