No commit activity in last 3 years
No release in over 3 years
Web interface for delayed_job inspired by resque
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.0.0
~> 1.6.4
>= 0

Runtime

~> 3.1.3
>= 0
>= 0.9.2
 Project Readme

delayed_job_web

A resque inspired (read: stolen) interface for delayed_job. This gem is written to work with rails 3 applications using activerecord.

Some features:

  • Easily view jobs enqueued, working, pending, and failed.
  • Queue any single job. or all pending jobs, to run immediately.
  • Remove a failed job, or easily remove all failed jobs.
  • Watch delayed_job operation with live ajax polling.

Quick Start For Rails 3 Applications

Add the dependency to your Gemfile

gem "delayed_job_web"

Install it...

bundle

Add a route to your application for accessing the interface

match "/delayed_job" => DelayedJobWeb, :anchor => false

You probably want to password protect the interface, an easy way is to add something like this your config.ru file

if Rails.env.production?
  DelayedJobWeb.use Rack::Auth::Basic do |username, password|
    username == 'username' && password == 'password'
  end
end

The Interface - Yea, a ripoff of resque-web

Screen shot

Screen shot

Author

Erick Schmitt - @ejschmitt