You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Just require the library and copy this configuration snippet into your Ruby project:
(You can find your project ID and API key with your project's settings)
require'airbrake-ruby'Airbrake.configuredo |c|
c.project_id= <YourprojectID>
c.project_key='<Your project API KEY>'end
Uncaught errors are automatically sent to Airbrake. Caught errors can be sent to Airbrake using the notify method:
Installation
Option 1: Bundler
Add the Airbrake Ruby gem to your Gemfile:
Option 2: Manual
Invoke the following command from your terminal:
Configuration
Just
require
the library and copy this configuration snippet into your Ruby project:(You can find your project ID and API key with your project's settings)
Uncaught errors are automatically sent to Airbrake. Caught errors can be sent to Airbrake using the
notify
method:Configuration
For in depth examples and advanced configuration options like error filtering or custom parameters, please visit our official GitHub repo.
The text was updated successfully, but these errors were encountered: