Project

errbase

0.4
Repository is archived
Low commit activity in last 3 years
No release in over a year
Common exception reporting for a variety of services
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies
 Project Readme

Errbase

Errbase has been merged into Safely - use that instead.


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