heroku如何安装特定版本的gem依赖项
我在 Heroku 上有一个在 Rails 2.3.5 上运行的应用程序 它还使用 oauth2 gem。
当我部署应用程序时,它会自动安装 oauth2 gem(因为我已经在 .gems 文件中说明了它),但它会安装最新版本的 Rack(版本 1.2.1),因为 oauth2 依赖于 Rack。
由于 Rails 2.3.5 与 Rack 不兼容 > 1.1.0,我的应用程序在部署后崩溃。
我的问题是,如何指定安装哪个版本的 Rack 作为 oauth2 的依赖项。
我尝试将rack --version 1.0.0 添加到.gems 文件中,它仍然安装版本1.2.1,然后安装1.0.0,这再次导致应用程序崩溃。
谢谢。
I have an application on Heroku that runs on Rails 2.3.5
it also uses oauth2 gem.
when I deploy the application, it automatically installs the oauth2 gem (as it should because i've stated it in the .gems file) but it installs the latest version of Rack (version 1.2.1) because oauth2 depends on Rack.
since Rails 2.3.5 is not compatible with Rack > 1.1.0, my application crashes after deployment.
My question is, how do i specify which version of Rack to install as a dependency of oauth2.
I tried adding rack --version 1.0.0 to the .gems file, it still installs version 1.2.1 and then 1.0.0 which, again, causes the application to crash.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您使用
.gems
清单,请将标志--ignore-dependencies
添加到 oauth2 行。然后手动添加其所有依赖项,根据需要指定版本。If you're using a
.gems
manifest, then add the flag--ignore-dependencies
to the oauth2 line. Then add in all of its dependencies by hand, specifying versions as you need to.