We have a ruby on rails application running on an Ubuntu Sever. When I do an SVN checkout of the application and try to create a Netbeans project, I get and error which says

Rake task failed with working directory (/users/arkidmitra/NetBeansProjects/Project1) Couldnot find i8n-0.5.0 in any of the sources. Try running Bundle Install.

What is the possible problem? I am running netbeans on OSX.

link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

As the error says, you should run

bundle install

from the command line in the root of your rails project. That will install all missing gems. If the command is unknown, you should run

gem install bundler 

first.

Hope this helps.

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.