Rails 3:在没有 gem “thin” 的情况下运行瘦服务器在 gem 文件中

发布于 2024-12-18 11:17:42 字数 176 浏览 1 评论 0原文

是否可以在不引用 gemfile 中的 gem 'thin' 的情况下运行瘦服务器(gem 'thin')?

问题是,在 Windows 上,错误地在 gemfile.lock(eventmachine 1.0.0.beta.4.1 - Windows 的唯一版本)中添加依赖项,而推送失败时,heroku 托管无法接受。

Is it possible to run thin server (gem 'thin') without referencing gem 'thin' in gemfile?

he problem is that on Windows blunder add dependencies in gemfile.lock (eventmachine 1.0.0.beta.4.1 - the only version for windows) that heroku hosting can not accept while push fails.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

骄兵必败 2024-12-25 11:17:42

尝试仅在 gemfile 中的开发组中添加该依赖项:

group :development do
  eventmachine, '1.0.0.beta.4.1'
end

这应该可以防止捆绑程序尝试在 heroku 上安装它。

Try adding that dependency in the development group only in your gemfile:

group :development do
  eventmachine, '1.0.0.beta.4.1'
end

That should prevent bundler from trying to install that on heroku.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文