Rails 3:在没有 gem “thin” 的情况下运行瘦服务器在 gem 文件中
是否可以在不引用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试仅在 gemfile 中的开发组中添加该依赖项:
这应该可以防止捆绑程序尝试在 heroku 上安装它。
Try adding that dependency in the development group only in your gemfile:
That should prevent bundler from trying to install that on heroku.