Finally got a chance to play around with Padrino last week to build a Push to Devices notification server, but ran into a bit of an issue trying to get Resque-web / Resque server UI to show up.

Finally ran into this great blog entry. It’s written in Japanese so I decided to create a short version in English here in case anyone else runs into the same issue

If you already have the following:

config.ru
1
2
3
4
# snip
run Rack::URLMap.new \
  "/"       => Padrino.application,
  "/resque" => Resque::Server.new

in your config.ru and yet don’t see anything when you hit /resque on your local environment, run your server with

$rackup -p 3000

Comments