ruby-on-rails – Heroku Cedar – 没有安装Resque前端的静态资产

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – Heroku Cedar – 没有安装Resque前端的静态资产前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个简单的Rails应用程序部署到Heroku Cedar堆栈.

该应用程序使用Resque和Resque Sinatra前端应用程序安装,以便我可以监视队列:

# routes.rb
...
mount Resque::Server,:at => "/resque"

这很好用,但是当部署到Heroku时,Resque front-end’s CSS & JavaScript没有被提供.

一段Heroku的日志表明它返回零字节:

...
2011-07-13T16:19:35+00:00 heroku[router]: GET myapp.herokuapp.com/resque/style.css dyno=web.1 queue=0 wait=0ms service=3ms status=200 bytes=0
2011-07-13T16:19:35+00:00 app[web.1]: 
2011-07-13T16:19:35+00:00 app[web.1]: 
2011-07-13T16:19:35+00:00 app[web.1]: Started GET "/resque/style.css" for 87.xx.xx.xx at 2011-07-13 16:19:35 +0000
2011-07-13T16:19:35+00:00 app[web.1]: cache: [GET /resque/style.css] miss

我怎样才能让它服务这些资产?

解决方法

尝试删除路线并在config.ru中安装应用程序.我正在使用以下内容
require ::File.expand_path('../config/environment',__FILE__)
require 'resque/server'

run Rack::URLMap.new(
    "/" => Rails.application,"/resque" => Resque::Server.new 
)
原文链接:https://www.f2er.com/ruby/265157.html

猜你在找的Ruby相关文章