0.01
No commit activity in last 3 years
No release in over 3 years
Notify Rollbar of Mina deployments.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

Runtime

~> 2.1.0
~> 1.0
 Project Readme

Mina::Rollbar Build Status Code Climate

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

  1. Fork it ( https://github.com/code-lever/mina-rollbar/fork )
  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 a new Pull Request