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
`email_error_reporter` uses the new [Rails error reporting API](https://guides.rubyonrails.org/error_reporting.html#error-reporting) to send emails whenever an exception is being reported. It works out of the box with HTTP requests, job errors and the rails runner errors.
6
7
7
8
## Installation
8
-
Add this line to your application's Gemfile:
9
9
10
-
```ruby
11
-
gem "email_error_reporter"
12
-
```
10
+
Add the gem:
13
11
14
-
And then execute:
15
12
```bash
16
-
$ bundle
13
+
bundle add email_error_reporter &&bundle install
17
14
```
18
15
19
-
Or install it yourself as:
20
-
```bash
21
-
$ gem install email_error_reporter
16
+
and configure the email addresses that should receive an email in the case of an exception:
0 commit comments