Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

mina-rollbar-3

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mina-rollbar-3

  • 1.0.3
  • Rubygems
  • Socket score

Version published
Maintainers
1
Created
Source

Mina::Rollbar

Mina tasks for interacting with Rollbar.

This is updated version of Mina::Rollbar. Supports separate deployment started/finished notifications in rollbar.

Adds the following tasks:

rollbar:notify:starting
rollbar:notify:finished

Installation

Add this line to your application's Gemfile:

gem 'mina-rollbar-3', 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
  run(:local) do
    invoke :'rollbar:starting'
  end

  deploy do
    ...

    on :launch do
      ...
    end
  end

  run(:local) do
    invoke :'rollbar:finished'
  end
end

Options

NameDescription
rollbar_access_tokenRollbar access token (post_server_item token)
rollbar_usernameRollbar username of deploying user (optional)
rollbar_local_usernameLocal username of deploying user (optional)
rollbar_commentComment for this deployment (optional)
rollbar_envDeployment environment string, defaults to rails_env

Contributing

  1. Fork it ( https://github.com/railsblueprint/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

FAQs

Package last updated on 05 Nov 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc