Sha256: c0faaf30cebfc0448c29612cabccbd9eca8dd556ebba29f6a4535861d312ea16

Contents?: true

Size: 839 Bytes

Versions: 4

Compression:

Stored size: 839 Bytes

Contents

= 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

= License

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

= Todo

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

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
delayed_job_admin-1.0.2 README
delayed_job_admin-1.0.1 README
delayed_job_admin-1.0.0 README
delayed_job_admin-0.0.1 README