No release in over 3 years
Low commit activity in last 3 years
Simple admin interface for the Delayed::Job gem...
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
= Delayed Job Admin

Simple admin interface for the Delayed::Job gem

= Usage

- Install the gem:

    # Gemfile
    gem "delayed_job_admin"

    bundle install

- Setup authentication:

  - Define a delayed_job_admin_authentication method in ApplicationController:

    # app/controllers/application_controller.rb

    def delayed_job_admin_authentication
      # authentication_logic_goes_here
    end

  - For example, if you are using the Devise gem and have an Admin model:

    # app/controllers/application_controller.rb

    def delayed_job_admin_authentication
      authenticate_admin!
    end

- View the admin interface:

    open http://localhost:3000/delayed_job_admin

= Contributing

bundle install
bundle exec rake

= License

MIT License - Copyright (c) 2011 Trevor Turk and CaptainU

= Todo

x index
x require admin login, docs
x show
- destroy
- restart
- restart all