Errbase

Common exception reporting for a variety of services

Libraries are automatically detected. Supports:

begin
  # code
rescue => e
  Errbase.report(e)
end

You can add extra context with:

Errbase.report(e, {username: "hello"})

Context is not supported for Google Stackdriver

Build Status

Installation

Errbase is designed to be used as a dependency.

Add this line to your gemspec:

spec.add_dependency "errbase"

Contributing

Everyone is encouraged to help improve this project. Here are a few ways you can help:

To get started with development:

git clone https://github.com/ankane/errbase.git
cd errbase
bundle install
bundle exec rake test