1
0
Fork 0
Task management tool and GUI for Ruby on Rails
Go to file
Gregory Eremin af16ec0982 Migration generator 2013-06-07 11:01:57 +04:00
burden_web Migration generator 2013-06-07 11:01:57 +04:00
lib Migration generator 2013-06-07 11:01:57 +04:00
spec Branding 2013-06-06 22:55:21 +04:00
.gitignore Working prototype 2013-06-04 22:11:41 +04:00
Gemfile Branding 2013-06-06 22:55:21 +04:00
LICENSE.txt Initial commit 2013-06-04 21:03:30 +04:00
README.md Callbacks, updated readme 2013-06-07 00:28:25 +04:00
Rakefile Branding 2013-06-06 22:55:21 +04:00
burden.gemspec Branding 2013-06-06 22:55:21 +04:00
dummy Migration generator 2013-06-07 11:01:57 +04:00

README.md

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 lines to your application's Gemfile:

gem 'burden'
gem 'burden_web'

And then execute:

$ bundle

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){
    Mail.new(to: me,
      subject: "Task #{task_name} failed!",
      body: "Current time: #{Time.now}\nExecution time: #{execution_time}s"
    ).send
  }
end

All configuration options are optional.

Usage

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

See Burden Web instructions to set up its interface.

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