Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

After installing rvm, updating .gmrc file, updating rubygems and running gem install rails -v ">=3.1.0rc", I now seem to have a complete mess:

$ rails -v
/usr/local/lib/site_ruby/1.8/rubygems/dependency.rb:247:in `to_specs': Could not find rails (>= 0) amongst [] (Gem::LoadError)
    from /usr/local/lib/site_ruby/1.8/rubygems/dependency.rb:256:in `to_spec'
    from /usr/local/lib/site_ruby/1.8/rubygems.rb:1182:in `gem'
    from /var/lib/gems/1.8/bin/rails:18

myhome@myhome-mini:~$ gem env

RubyGems Environment:
  - RUBYGEMS VERSION: 1.6.2
  - RUBY VERSION: 1.9.2 (2011-02-18 patchlevel 180) [i686-linux]
  - INSTALLATION DIRECTORY: /home/myhome/gems
  - RUBY EXECUTABLE: /home/myhome/.rvm/rubies/ruby-1.9.2-p180/bin/ruby
  - EXECUTABLE DIRECTORY: /home/myhome/gems/bin
  - RUBYGEMS PLATFORMS:
    - ruby
    - x86-linux
  - GEM PATHS:
     - /home/myhome/gems
     - /usr/lib/ruby/gems/1.8
  - GEM CONFIGURATION:
     - :update_sources => true
     - :verbose => true
     - :benchmark => false
     - :backtrace => false
     - :bulk_threshold => 1000
     - "gemhome" => "/home/myhome/gems"
     - "gempath" => ["/home/myhome/gems", "/usr/lib/ruby/gems/1.8"]
  - REMOTE SOURCES:
     - http://rubygems.org/
share|improve this question
I'm having this exact problem, but with the bundler gem. – Mark Aug 3 '11 at 21:27
if your problem is solved, please accept someone's answer, thanks :) – pduersteler Jan 17 '12 at 15:18
Sorry I reinstalled Ubuntu on that machine so I can't comment on any of the solutions suggested.. – rigyt Mar 8 '12 at 22:37
Sorry I reinstalled Ubuntu on that machine so I can't comment on any of the solutions suggested..although actually I did try the sudo approach without success so I'll accept the remove ruby suggestion, thanks – rigyt Mar 8 '12 at 22:38
Sorry I reinstalled Ubuntu on that machine so I can't comment on any of the solutions suggested..although actually I did try the sudo approach without success so I'll accept the remove ruby suggestion, thanks – rigyt Mar 8 '12 at 22:39
show 1 more comment

6 Answers

up vote 6 down vote accepted

I had to sudo gem install bundler to make it work again.

share|improve this answer
1  
this worked for me. Thanks. – Tomaszewski Jan 29 '12 at 4:18
Thanks, a life saver ;) – Adam McArthur Jan 13 at 10:38

I've had a similiar problem. Not sure if that helps you, but you might try to install gems with rvmsudo gem install [gemname] instead of just doing gem install [gemname]

I try to explain this a bit because of the upvotes:
This basically is a path issue. If you set up gems via gem install, they mostly likely will be in another directory compared to gems set up via bundler. Using sudo may also set them up into another directory since sudo starts a subshell which has a different environment then. This is why you have rvmsudo.

If you want to see the differences, compare $PATH, $GEM_HOME, $GEM_PATH and $BUNDLE_PATH when echoing directly, with sudo and with rvmsudo.

share|improve this answer

I got a problem similar to this, there may be a compatible problem of rvm. I fixed by updating rvm to latest version:

curl -L https://get.rvm.io | bash -s stable --ruby

Then you should reload rvm or just open new terminal window. Then I reinstalled the bundler 'gem install bundler' and ran 'bundle install' as normal

share|improve this answer
If you already have rvm installed and a newer version, this should do the same thing: rvm get stable --auto – jmervine Nov 12 '12 at 19:36
rvm rubygems current

did the trick for me.

share|improve this answer
1  
this did not work for me. – pixelearth Feb 1 at 19:34

remove ruby first then

sudo apt-get install build-essential libssl-dev libreadline5 libreadline5-dev zlib1g zlib1g-dev

to install all needed lib then you could install ruby and rails

rvm install 1.9.3
rvm --default use 1.9.3
rvm gem install rails
share|improve this answer
10  
wha...? Do you come from the future? Tell me your secrets. – pferdefleisch Oct 17 '11 at 8:46
Other than him being from the future (changed 1.9.7 to 1.9.3), that worked for me. – Toby Joiner Jan 9 '12 at 15:13

I had pretty much the same message when trying to generate a controller after installing IntelliJ IDEA and the associated Plugin for Rail Dev. From my app directory I just executed bundle install and was then able to generate controllers again.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.