简体   繁体   English

从Ubuntu Server导入Netbeans上的Rails应用程序

[英]Importing a rails application on Netbeans from an Ubuntu Server

We have a ruby on rails application running on an Ubuntu Sever. 我们有一个在Ubuntu Sever上运行的ruby on rails应用程序。 When I do an SVN checkout of the application and try to create a Netbeans project, I get and error which says 当我对应用程序执行SVN签出并尝试创建Netbeans项目时,出现错误提示

Rake task failed with working directory (/users/arkidmitra/NetBeansProjects/Project1) Couldnot find i8n-0.5.0 in any of the sources. Rake任务失败,工作目录(/ users / arkidmitra / NetBeansProjects / Project1)在任何源中均找不到i8n-0.5.0。 Try running Bundle Install. 尝试运行捆绑安装。

What is the possible problem? 可能是什么问题? I am running netbeans on OSX. 我在OSX上运行netbeans。

As the error says, you should run 如错误所示,您应该运行

bundle install

from the command line in the root of your rails project. 从rails项目根目录中的命令行开始。 That will install all missing gems. 那将安装所有缺少的宝石。 If the command is unknown, you should run 如果命令未知,则应运行

gem install bundler 

first. 第一。

Hope this helps. 希望这可以帮助。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

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