Useful extensions of Bugsnag.
Add this line to your application's Gemfile:
gem 'bugsnag-ext'
And then execute:
$ bundle
Or install it yourself as:
$ gem install bugsnag-ext
class SomeResqueJob
include Bugsnag::Ext::ResqueRetry
end
conn = Faraday.new(url: "https://github.com/") do |faraday|
faraday.use FaradayMiddleware::Bugsnag # Need to set before :raise_error
faraday.response :raise_error
end
conn.get("/foo")
- Fork it
- 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 new Pull Request
Copyright (c) 2015 Daisuke Taniwaki. See LICENSE for details.