简体   繁体   中英

Importing a rails application on Netbeans from an Ubuntu Server

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.

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.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM