redcloth (MissingSourceFile) - Heroku 更改为 bundler 1.0.7 后的新问题
我们的应用程序一直在运行。现在,在迁移到捆绑器 1.0.7 后,我第一次将一些新代码推送到 Heroku 上。现在我们的应用程序崩溃了,我收到了此错误消息 -
/usr/ruby1.9.1/lib/ruby/gems/1.9.1/gems/bundler-1.0.7/lib/bundler/runtime.rb:64:in `require': no such file to load -- redcloth (MissingSourceFile)
我们使用的是 Rails 2.3.8。
这是 Gemfile 的一部分 -
gem 'rails', '2.3.8', :require => nil
gem 'RedCloth', :require => 'redcloth'
关于如何解决这个问题有什么想法吗?谢谢。
Our app had been working. Now I just pushed some new code into staging on Heroku for the 1st time after they moved to bundler 1.0.7. Now our app crashes and I got this error message -
/usr/ruby1.9.1/lib/ruby/gems/1.9.1/gems/bundler-1.0.7/lib/bundler/runtime.rb:64:in `require': no such file to load -- redcloth (MissingSourceFile)
We're on Rails 2.3.8.
Here is part of the Gemfile -
gem 'rails', '2.3.8', :require => nil
gem 'RedCloth', :require => 'redcloth'
Any ideas on how to fix this problem? Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我在 Heroku 上,这就是我所拥有的:
I'm on Heroku and this is what I have :