QueView

Visibility into scheuled Que jobs.

Que

screen shot 2014-08-05 at 11 50 46

Installation

Add this line to your application’s Gemfile:

gem "que_view"

And mount the dashboard in your router.

mount QueView::Engine, at: "que_view"

Be sure to secure the dashboard in production.

Security

Basic Authentication

Set the following variables in your environment or an initializer.

ENV["QUEVIEW_USERNAME"] = "rock"
ENV["QUEVIEW_PASSWORD"] = "aroundtheclock"

Devise

authenticate :user, lambda {|user| user.admin? } do
  mount QueView::Engine, at: "que_view"
end

TODO

  • add rspec tests
  • filter tasks by type

Know a bit about Que? Suggestions are greatly appreciated.

History

View the changelog

Contributing

Everyone is encouraged to help improve this project. Here are a few ways you can help: