Each time I try to run a brand new rails project in Netbeans I get the following error:

"Could not find rake-0.9.2 in any of the sources (Bundler::GemNotFound)"

What's happening?

P.S: I already did a bundle install and if I run "ruby s" from the console it works.

Thx.

link|improve this question

55% accept rate
Are you using rvm, by chance? – jerhinesmith Jun 9 '11 at 16:23
I got the same while creating a project in RubyMine! Couldn't figure a solution yet. – Waheed Sayed Jun 18 '11 at 17:53
Having exact same problem using rvm and bundler. Have done manual gem installs, checked paths everywhere, it IS there but for whatever reason that's the only one that it whines about – jenjenut233 Jun 23 '11 at 0:52
feedback

1 Answer

Try to do the same manually, i.e from the terminal. First check which version of rails you are running, then try to bundle again from the terminal.

I suppose that your environment selected in netbeans does not recognize the latest rails gem but is using another one. Check with rails -v to see which version of rails you are running. If it is ok in the terminal, make sure you are running netbeans with the same user (ex. sudo or your user depending on the rvm config you have).

I had this problem several times with different IDE and every time it was because I was not using the proper user or not using the proper gemset in RVM (it's so easy to forget !)

After that it should be easy to resolve by choosing the right environment in the config of your project in netbeans or rubymine.

link|improve this answer
Brilliant! It works in the terminal. The terminal in my IDE doesn't handle it right, but the OS terminal does. Thanks! – benekastah Jul 22 '11 at 4:44
feedback

Your Answer

 
or
required, but never shown

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