1
0
Fork 0
burden/README.md

58 lines
1.2 KiB
Markdown
Raw Normal View History

2013-06-06 18:55:21 +00:00
# Burden
2013-06-04 17:03:30 +00:00
2013-06-06 20:25:10 +00:00
Burden is a task management tool for Rake. It records all tasks invocations.
Burden Web is a web interface for Burden.
2013-06-04 17:03:30 +00:00
## Installation
2013-06-06 20:25:10 +00:00
Add this lines to your application's Gemfile:
2013-06-04 20:41:48 +00:00
```ruby
2013-06-06 18:55:21 +00:00
gem 'burden'
2013-06-06 20:25:10 +00:00
gem 'burden_web'
2013-06-04 20:41:48 +00:00
```
2013-06-04 17:03:30 +00:00
And then execute:
2013-06-04 20:41:48 +00:00
```
$ bundle
```
2013-06-04 17:03:30 +00:00
2013-06-04 20:41:48 +00:00
## Configuration
2013-06-04 17:03:30 +00:00
2013-06-06 20:25:10 +00:00
For non-Rails apps, add these lines to the top of your application's Rakefile.
For Rails apps, create an initializer containing these lines.
2013-06-04 20:41:48 +00:00
```ruby
2013-06-06 18:55:21 +00:00
require 'burden'
2013-06-06 20:25:10 +00:00
2013-06-06 18:55:21 +00:00
Burden.configure do |c|
2013-06-04 20:41:48 +00:00
c.storage = :active_record # or :mongoid, :mongo_mapper
2013-06-06 20:25:10 +00:00
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
}
2013-06-04 20:41:48 +00:00
end
```
2013-06-04 17:03:30 +00:00
2013-06-06 20:25:10 +00:00
All configuration options are optional.
2013-06-04 17:03:30 +00:00
## Usage
2013-06-06 20:25:10 +00:00
```ruby
Burden::Storage.run.where(name: 'db:migrate', success: false).order('created_at desc').limit(10)
```
See Burden Web instructions to set up its interface.
2013-06-04 17:03:30 +00:00
## 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