Delayed Job UI

My first attempt at a gem. A small and simple (and hopefully unintrusive) UI wrapper for delayed_job in Rails

To get the routes properly set up, insert this into your routes.rb file.

unless Rails.env.production? || Rails.env.test?
  mount DelayedJobUi::Engine => '/delayed_job_ui'
end

To drop in the UI element, insert the following at the bottom of your application's layout file.

<% unless Rails.env.production? || Rails.env.test? #prevent this view in production and test %>
  <%= delayed_job_ui_layout %>
<% end %>