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:into_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:

link|improve this question

67% accept rate
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 at 15:18
Sorry I reinstalled Ubuntu on that machine so I can't comment on any of the solutions suggested.. – rigyt Mar 8 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 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 at 22:39
show 1 more comment
feedback

6 Answers

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]

link|improve this answer
feedback

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

link|improve this answer
this worked for me. Thanks. – Tomaszewski Jan 29 at 4:18
feedback

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.7
rvm --default use 1.9.7
rvm gem install rails
link|improve this answer
6  
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 at 15:13
feedback

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.

hope this helps.

link|improve this answer
feedback
rvm rubygems current

did the trick for me.

link|improve this answer
feedback

Add to Gemfile the following line:

gem 'heroku'

run bundle install again

this problem should go away.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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