I recently followed some instructions with RVM to install ruby-debug
and I think it might have caused some problems. The link that I found the instructions are here: http://beginrescueend.com/support/troubleshooting/
The commands I used to install are the following:
$ rvm reinstall 1.9.3 --patch debug --force-autoconf
$ gem install ruby-debug19 -- --with-ruby-include="${MY_RUBY_HOME/rubies/src}"
Now, when I try to start the rails server, I receive the following error:
./bundler_stubs/rails:13:in `require': no such file to load -- rubygems (LoadError)
from ./bundler_stubs/rails:13
This SO question would lead me to believe that I have more than one version of rails installed: no such file to load -- rubygems (LoadError)
However, when I run which -a ruby
as the selected answer suggests, I only receive /usr/bin/ruby
. Any thoughts on what to do here?