0.01
No commit activity in last 3 years
No release in over 3 years
There's a lot of open issues
Delayed Job Dashboard
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

Runtime

 Project Readme

DjDashboard

The missing dashboard for delayed_job.

Tested with Ruby 1.9.2, Rails 3.0+

Screenshots

Coming soon...

Installation

Add to your Gemfile:

gem 'dj_dashboard'

Then run:

rake dj_dashboard:install

Installation may take several minutes if you have a lot of existing jobs (50k+).

Usage

Start the server:

rails s

View the dashboard at: http://localhost:3000/dj_dashboard

Authentication

The installer will create an initializer in app/config/initializers/dj_dashboard.rb

In the initializer, you can define any auth logic that will be used by the controller's before_filter callback.

Below is an example using devise:

module DjDashboard
  class ApplicationController < ActionController::Base
    def authenticate!
      redirect_to new_user_session_url unless user_signed_in?
    end
  end
end

Build Status

[Build Status][travis] [travis]: http://travis-ci.org/bkempner/dj_dashboard

Dependency Status

Dependency Status

License

This project uses MIT-LICENSE.