Project

que-view

0.0
The project is in a healthy, maintained state
Rails engine as web interface for Que for inspecting jobs.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
 Dependencies

Development

> 1.0
= 6.3.0
~> 13.0
~> 1.39

Runtime

> 2.0
> 6.0.0
 Project Readme

Que::View

Rails engine inspired by Que::Web for Que job queue. SQL queries came from Que::Web, some styling from there too. Benefits for using this one: independent from Sinatra (que-web based on Sinatra)

Installation

Add this line to your application's Gemfile:

gem 'que'
gem 'que-view'

And then execute:

$ bundle install

Configuration

You can configure username/password for production web view. Add this lines to config/initializers/que_view.rb

Que::View.configure do |config|
  config.ui_username = 'username'
  config.ui_password = 'password'
  config.ui_secured_environments = ['production']
end

Usage

Add this line to config/routes.rb

mount Que::Web::Engine => '/que_web'

Add this line to assets/config/manifest.js

//= link que/view/application.css

TODO

  • rescheduling jobs
  • deleting jobs
  • better styles for UI
  • rendering running jobs
  • tests

License

The gem is available as open source under the terms of the MIT License.