Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mattpolito/paratrooper-airbrake
https://github.com/mattpolito/paratrooper-airbrake
Last synced: 12 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/mattpolito/paratrooper-airbrake
- Owner: mattpolito
- License: mit
- Created: 2013-03-14T14:50:35.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2013-03-14T20:08:14.000Z (almost 12 years ago)
- Last Synced: 2024-10-05T20:41:46.305Z (3 months ago)
- Language: Ruby
- Size: 125 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# Paratrooper - Airbrake Notifier
[![Gem Version](https://badge.fury.io/rb/paratrooper-airbrake.png)](http://badge.fury.io/rb/paratrooper-airbrake)
[![Code Climate](https://codeclimate.com/github/mattpolito/paratrooper-airbrake.png)](https://codeclimate.com/github/mattpolito/paratrooper-airbrake)Notify [Airbrake][] of your deployments when using [Paratrooper][]
## Installation
Add this line to your application's Gemfile:
gem 'paratrooper-airbrake'
And then execute:
$ bundle
Or install it yourself as:
$ gem install paratrooper-airbrake
## Usage
When initializing `Paratrooper::Deploy` a `notifiers` option can be passed
```ruby
Paratrooper::Deploy.new('app_name',
notifiers: [Paratrooper::Airbrake::Notifier.new]
)
```This will notify Airbrake that a deploy has happened after a successful
Paratrooper deploymentFor more information on `notifiers`, see [Paratrooper][] documentation.
## 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## Thanks
* [Brandon Farmer][]
[Airbrake]: http://airbrake.io
[Paratrooper]: https://github.com/mattpolito/paratrooper
[Brandon Farmer]: https://github.com/bthesorceror