4

当我使用 Rails Composer 工具创建一个新的 rails 应用程序时:

$ rails new myapp -m https://raw.github.com/RailsApps/rails-composer/master/composer.rb

我收到此错误:

run    bundle install --without production from "."
/Gemfile not found   # <= that is the error

该错误会阻止从模板完成构建应用程序。

之后,当我手动运行“捆绑安装”时,它工作正常。我尝试使用另一个 Rails 模板(https://github.com/dennybritz/rails_startup_template)并收到相同的错误。

我使用 Ruby 2.0、rails 4.0.0、rvm 1.23.12

4

2 回答 2

4

终于解决了。该错误指的是 rails-composer 问题:https ://github.com/RailsApps/rails-composer/issues/138 。

我通过在终端中运行“gem update”命令解决了这个问题。

于 2013-11-05T23:44:31.800 回答
0

“宝石更新”适用于同样的错误。“找不到 Gemfile”错误。

我从 GIT 存储库克隆项目时收到此错误。

当我可以在我的项目目录中实际看到它时,混乱就开始了。

运行 gem update 绝对有帮助!

于 2015-04-07T08:43:36.650 回答