Project

burden_web

0.0
No commit activity in last 3 years
No release in over 3 years
Burden is a manager and statistics collector for Rake tasks. It comes with this web interface.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

Runtime

>= 3.2
 Project Readme

Burden

Burden is a task management tool for Rake. It records all tasks invocations.

Burden Web is a web interface for Burden.

Installation

Add this line to your application's Gemfile:

gem 'burden'

And then execute:

$ bundle
$ bundle exec rails generate burden:install

Configuration

For non-Rails apps, add these lines to the top of your application's Rakefile.

For Rails apps, create an initializer containing these lines.

require 'burden'

Burden.configure do |c|
  c.storage = :active_record # or :mongoid, :mongo_mapper
  c.ignored_tasks = [/^db:/, /environment/]
  c.on_failure = ->(task_name, execution_time, timestamp){
    Mail.new(to: me,
      subject: "Task #{task_name} failed!",
      body: <<-MSG
        Started at: #{timestamp}
        Execution time: #{execution_time}s
        Status: FAILED
      MSG
    ).send
  }
end

All configuration options are optional.

Usage

Burden::Storage.run.where(name: 'db:migrate', success: false).order('created_at desc').limit(10)

Dashboard

Burden Dashboard

Burden comes with a nice dashboard to view and manage your tasks right from the web.

To install it add this line to your application's Gemfile:

gem 'burden_web'

Mount Burden's web interface to the path of your choise in config/routes.rb:

Rails.application.routes.draw do
  mount BurdenWeb::Engine => '/burden'
end

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request