quirkey/resque-status

statuses tab in mapped resque of existing rails app

paulopatto opened this issue · 1 comments

I'm following the config (mount Resque::Server.new, :at => "/resque") in my rails app existing but statuses tab is not showing in my web page.

How can I put the resque status plugin in the route my rails existing app.

PS.: Sorry for my wrong english

@paulopatto

I just add require 'resque/status_server' to config/initializers/resque.rb,

then mount the server in route.rb

if ['development'].include? Rails.env
  mount Resque::Server.new, :at => '/resque'
end

it works for me.