Mina tasks for interacting with Rollbar.
Adds the following tasks:
rollbar:notify
Installation
Add this line to your application's Gemfile:
gem 'mina-rollbar', require: false
And then execute:
$ bundle
Usage
require 'mina/rollbar'
...
# replace value w/your real access token
set :rollbar_access_token, 'this-is-not-a-real-token'
task deploy: :environment do
deploy do
...
to :launch do
...
invoke :'rollbar:notify'
end
end
end
Options
Name | Description |
---|---|
rollbar_access_token |
Rollbar access token (post_server_item token) |
rollbar_username |
Rollbar username of deploying user (optional) |
rollbar_local_username |
Local username of deploying user (optional) |
rollbar_comment |
Comment for this deployment (optional) |
rollbar_env |
Deployment environment string, defaults to rails_env
|
Contributing
- Fork it ( https://github.com/code-lever/mina-rollbar/fork )
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request