exception_notification 4.5.0 → 5.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (72) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.rdoc +16 -0
  3. data/CONTRIBUTING.md +23 -51
  4. data/Gemfile +1 -1
  5. data/Gemfile.lock +346 -0
  6. data/README.md +149 -59
  7. data/Rakefile +14 -7
  8. data/docs/notifiers/slack.md +0 -7
  9. data/exception_notification.gemspec +28 -31
  10. data/gemfiles/pinned_dependencies.gemfile +8 -0
  11. data/gemfiles/rails7_1.gemfile +5 -0
  12. data/gemfiles/rails7_2.gemfile +5 -0
  13. data/gemfiles/rails8_0.gemfile +5 -0
  14. data/lib/exception_notification/rack.rb +4 -4
  15. data/lib/exception_notification/rails/runner_tie.rb +31 -0
  16. data/lib/exception_notification/rails.rb +16 -0
  17. data/lib/exception_notification/rake.rb +56 -0
  18. data/lib/exception_notification/resque.rb +2 -2
  19. data/lib/exception_notification/sidekiq.rb +8 -23
  20. data/lib/exception_notification/version.rb +1 -1
  21. data/lib/exception_notification.rb +3 -3
  22. data/lib/exception_notifier/datadog_notifier.rb +26 -26
  23. data/lib/exception_notifier/email_notifier.rb +34 -30
  24. data/lib/exception_notifier/google_chat_notifier.rb +9 -9
  25. data/lib/exception_notifier/hipchat_notifier.rb +12 -12
  26. data/lib/exception_notifier/irc_notifier.rb +6 -6
  27. data/lib/exception_notifier/mattermost_notifier.rb +13 -13
  28. data/lib/exception_notifier/modules/error_grouping.rb +5 -5
  29. data/lib/exception_notifier/modules/formatter.rb +12 -12
  30. data/lib/exception_notifier/notifier.rb +3 -3
  31. data/lib/exception_notifier/slack_notifier.rb +18 -15
  32. data/lib/exception_notifier/sns_notifier.rb +9 -9
  33. data/lib/exception_notifier/teams_notifier.rb +66 -59
  34. data/lib/exception_notifier/views/exception_notifier/_data.html.erb +1 -1
  35. data/lib/exception_notifier/views/exception_notifier/_data.text.erb +1 -1
  36. data/lib/exception_notifier/views/exception_notifier/_session.html.erb +1 -1
  37. data/lib/exception_notifier/views/exception_notifier/_session.text.erb +1 -1
  38. data/lib/exception_notifier/webhook_notifier.rb +3 -3
  39. data/lib/exception_notifier.rb +27 -26
  40. data/lib/generators/exception_notification/install_generator.rb +8 -8
  41. data/lib/generators/exception_notification/templates/exception_notification.rb.erb +28 -27
  42. data/test/exception_notification/rack_test.rb +14 -14
  43. data/test/exception_notification/rake_test.rb +38 -0
  44. data/test/exception_notification/resque_test.rb +14 -14
  45. data/test/exception_notifier/datadog_notifier_test.rb +47 -46
  46. data/test/exception_notifier/email_notifier_test.rb +89 -104
  47. data/test/exception_notifier/google_chat_notifier_test.rb +77 -77
  48. data/test/exception_notifier/hipchat_notifier_test.rb +76 -80
  49. data/test/exception_notifier/irc_notifier_test.rb +26 -26
  50. data/test/exception_notifier/mattermost_notifier_test.rb +77 -77
  51. data/test/exception_notifier/modules/error_grouping_test.rb +39 -39
  52. data/test/exception_notifier/modules/formatter_test.rb +51 -49
  53. data/test/exception_notifier/sidekiq_test.rb +21 -10
  54. data/test/exception_notifier/slack_notifier_test.rb +66 -67
  55. data/test/exception_notifier/sns_notifier_test.rb +73 -70
  56. data/test/exception_notifier/teams_notifier_test.rb +33 -33
  57. data/test/exception_notifier/webhook_notifier_test.rb +34 -34
  58. data/test/exception_notifier_test.rb +51 -41
  59. data/test/test_helper.rb +8 -11
  60. metadata +58 -99
  61. data/Appraisals +0 -9
  62. data/examples/sample_app.rb +0 -56
  63. data/examples/sinatra/Gemfile +0 -10
  64. data/examples/sinatra/Gemfile.lock +0 -95
  65. data/examples/sinatra/Procfile +0 -2
  66. data/examples/sinatra/README.md +0 -11
  67. data/examples/sinatra/config.ru +0 -5
  68. data/examples/sinatra/sinatra_app.rb +0 -40
  69. data/gemfiles/rails5_2.gemfile +0 -7
  70. data/gemfiles/rails6_0.gemfile +0 -7
  71. data/gemfiles/rails6_1.gemfile +0 -7
  72. data/gemfiles/rails7_0.gemfile +0 -7
data/README.md CHANGED
@@ -1,51 +1,94 @@
1
1
  # Exception Notification
2
2
 
3
3
  [![Gem Version](https://badge.fury.io/rb/exception_notification.svg)](https://badge.fury.io/rb/exception_notification)
4
- [![Build Status](https://github.com/smartinez87/exception_notification/actions/workflows/main.yml/badge.svg)](https://github.com/smartinez87/exception_notification/actions/workflows/main.yml)
5
- [![Coverage Status](https://coveralls.io/repos/github/smartinez87/exception_notification/badge.svg?branch=master)](https://coveralls.io/github/smartinez87/exception_notification?branch=master)
6
- [![Maintainability](https://api.codeclimate.com/v1/badges/78a9a12be00a6d305136/maintainability)](https://codeclimate.com/github/smartinez87/exception_notification/maintainability)
7
-
8
- **THIS README IS FOR THE MASTER BRANCH AND REFLECTS THE WORK CURRENTLY EXISTING ON THE MASTER BRANCH. IF YOU ARE WISHING TO USE A NON-MASTER BRANCH OF EXCEPTION NOTIFICATION, PLEASE CONSULT THAT BRANCH'S README AND NOT THIS ONE.**
4
+ [![Build Status](https://github.com/kmcphillips/exception_notification/actions/workflows/ci.yml/badge.svg)](https://github.com/kmcphillips/exception_notification/actions/workflows/ci.yml)
9
5
 
10
6
  ---
11
7
 
12
8
  The Exception Notification gem provides a set of [notifiers](#notifiers) for sending notifications when errors occur in a Rack/Rails application. The built-in notifiers can deliver notifications by [email](docs/notifiers/email.md), [HipChat](docs/notifiers/hipchat.md), [Slack](docs/notifiers/slack.md), [Mattermost](docs/notifiers/mattermost.md), [Teams](docs/notifiers/teams.md), [IRC](docs/notifiers/irc.md), [Amazon SNS](docs/notifiers/sns.md), [Google Chat](docs/notifiers/google_chat.md), [Datadog](docs/notifiers/datadog.md) or via custom [WebHooks](docs/notifiers/webhook.md).
13
9
 
14
- There's a great [Railscast about Exception Notification](http://railscasts.com/episodes/104-exception-notifications-revised) you can see that may help you getting started.
10
+ There's a [Railscast (2011) about Exception Notification](http://railscasts.com/episodes/104-exception-notifications-revised) you can see that may help you getting started.
11
+
12
+
13
+ ## Gem status
14
+
15
+ This gem is not under active development, but is maintained. There are more robust and modern solutions for exception handling. But this code was [extracted from Rails about 15+ years ago](https://github.com/rails/exception_notification) and still has lots of value for some applications.
15
16
 
16
- [Follow us on Twitter](https://twitter.com/exception_notif) to get updates and notices about new releases.
17
17
 
18
18
  ## Requirements
19
19
 
20
- * Ruby 2.5 or greater
21
- * Rails 5.2 or greater, Sinatra or another Rack-based application.
20
+ * Ruby 3.2 or greater
21
+ * If using Rails, version 7.1 or greater. (Sinatra or other Rack-based applications are supported.)
22
+
22
23
 
23
24
  ## Getting Started
24
25
 
25
26
  Add the following line to your application's Gemfile:
26
27
 
27
28
  ```ruby
28
- gem 'exception_notification'
29
+ gem "exception_notification"
29
30
  ```
30
31
 
31
32
  ### Rails
32
33
 
33
- ExceptionNotification is used as a rack middleware, or in the environment you want it to run. In most cases you would want ExceptionNotification to run on production. Thus, you can make it work by putting the following lines in your `config/environments/production.rb`:
34
+ In order to install ExceptionNotification as an [engine](https://api.rubyonrails.org/classes/Rails/Engine.html), just run the following command from the terminal:
35
+
36
+ ```bash
37
+ rails g exception_notification:install
38
+ ```
39
+
40
+ This generates an initializer file, `config/initializers/exception_notification.rb` with some default configuration, which you should modify as needed.
41
+
42
+ Make sure the gem is not listed solely under the `production` group in your `Gemfile`, since this initializer will be loaded regardless of environment. If you want it to only be enabled in production, you can add this to your configuration:
43
+
44
+ ```ruby
45
+ config.ignore_if do |exception, options|
46
+ !!Rails.env.local?
47
+ end
48
+ ```
49
+
50
+ The generated initializer file will include this require:
51
+ ```ruby
52
+ require "exception_notification/rails"
53
+ ```
54
+
55
+ which automatically adds the ExceptionNotification middleware to the Rails middleware stack. This middleware is what watches for unhandled exceptions from your Rails app (except for [background jobs](#background-jobs)) and notifies you when they occur.
56
+
57
+ The generated file adds an `email` notifier:
58
+
59
+ ```ruby
60
+ config.add_notifier :email, {
61
+ email_prefix: "[ERROR] ",
62
+ sender_address: %{"Notifier" <notifier@example.com>},
63
+ exception_recipients: %w{exceptions@example.com}
64
+ }
65
+ ```
66
+
67
+ **Note**: In order to enable delivery notifications by email, make sure you have [ActionMailer configured](docs/notifiers/email.md#actionmailer-configuration).
68
+
69
+
70
+ #### Adding middleware manually
71
+
72
+ Alternatively, if for some reason you don't want to `require "exception_notification/rails"`, you can manually add the middleware, like this:
34
73
 
35
74
  ```ruby
36
75
  Rails.application.config.middleware.use ExceptionNotification::Rack,
37
76
  email: {
38
- email_prefix: '[PREFIX] ',
77
+ email_prefix: "[PREFIX] ",
39
78
  sender_address: %{"notifier" <notifier@example.com>},
40
79
  exception_recipients: %w{exceptions@example.com}
41
80
  }
42
81
  ```
43
82
 
44
- **Note**: In order to enable delivery notifications by email make sure you have [ActionMailer configured](docs/notifiers/email.md#actionmailer-configuration).
83
+ This is the older way of configuring ExceptionNotification (which prior to version 4 was the _only_ way to configure it), and is still the way used in some of the examples.
84
+
85
+ Options passed to the `ExceptionNotification::Rack` middleware in this way are translated to the equivalent configuration options for the `ExceptionNotification.configure` of configuring (compare to the [Rails](#rails) example above).
86
+
45
87
 
46
88
  ### Rack/Sinatra
47
89
 
48
- In order to use ExceptionNotification with Sinatra, please take a look in the [example application](https://github.com/smartinez87/exception_notification/tree/master/examples/sinatra).
90
+ In order to use ExceptionNotification with Sinatra, please take a look in the [example application](examples/sinatra).
91
+
49
92
 
50
93
  ### Custom Data, e.g. Current User
51
94
 
@@ -76,12 +119,23 @@ The current user will show up in your email, in a new section titled "Data".
76
119
  email: "jane.doe@example.com", # etc...
77
120
  ```
78
121
 
79
- For more control over the display of custom data, see "Email notifier ->
80
- Options -> sections" below.
122
+ For more control over the display of custom data, see "Email notifier -> Options -> sections" below.
123
+
124
+
125
+ ### Filtering parameters
126
+
127
+ Since the error notification contains the full request parameters, you may want to filter out sensitive information. The `filter_parameters` in Rails can be used to filter out sensitive information from the request parameters.
128
+
129
+ ```ruby
130
+ config.filter_parameters += [:secret_details, :credit_card_number]
131
+ ```
132
+
133
+ See the Rails documentation for more information: https://guides.rubyonrails.org/configuring.html#config-filter-parameters
134
+
81
135
 
82
136
  ## Notifiers
83
137
 
84
- ExceptionNotification relies on notifiers to deliver notifications when errors occur in your applications. By default, 8 notifiers are available:
138
+ ExceptionNotification relies on notifiers to deliver notifications when errors occur in your applications. By default the following notifiers are available:
85
139
 
86
140
  * [Datadog notifier](docs/notifiers/datadog.md)
87
141
  * [Email notifier](docs/notifiers/email.md)
@@ -94,13 +148,14 @@ ExceptionNotification relies on notifiers to deliver notifications when errors o
94
148
  * [Google Chat notifier](docs/notifiers/google_chat.md)
95
149
  * [WebHook notifier](docs/notifiers/webhook.md)
96
150
 
97
- But, you also can easily implement your own [custom notifier](docs/notifiers/custom.md).
151
+ You also can implement your own [custom notifier](docs/notifiers/custom.md).
152
+
98
153
 
99
154
  ## Error Grouping
100
155
 
101
156
  In general, ExceptionNotification will send a notification when every error occurs, which may result in a problem: if your site has a high throughput and a particular error is raised frequently, you will receive too many notifications. During a short period of time, your mail box may be filled with thousands of exception mails, or your mail server may even become slow. To prevent this, you can choose to group errors by setting the `:error_grouping` option to `true`.
102
157
 
103
- Error grouping uses a default formula of `log2(errors_count)` to determine whether to send the notification, based on the accumulated error count for each specific exception. This makes the notifier only send a notification when the count is: 1, 2, 4, 8, 16, 32, 64, 128, ..., (2**n). You can use `:notification_trigger` to override this default formula.
158
+ Error grouping uses a default formula of `Math.log2(errors_count)` to determine whether to send the notification, based on the accumulated error count for each specific exception. This makes the notifier only send a notification when the count is: 1, 2, 4, 8, 16, 32, 64, 128, ..., (2**n). You can use `:notification_trigger` to override this default formula.
104
159
 
105
160
  The following code shows the available options to configure error grouping:
106
161
 
@@ -124,6 +179,7 @@ Rails.application.config.middleware.use ExceptionNotification::Rack,
124
179
  # notification_trigger: lambda { |exception, count| count % 10 == 0 }
125
180
  ```
126
181
 
182
+
127
183
  ## Ignore Exceptions
128
184
 
129
185
  You can choose to ignore certain exceptions, which will make ExceptionNotification avoid sending notifications for those specified. There are three ways of specifying which exceptions to ignore:
@@ -139,7 +195,7 @@ You can choose to ignore certain exceptions, which will make ExceptionNotificati
139
195
 
140
196
  ### :ignore_exceptions
141
197
 
142
- *Array of strings, default: %w{ActiveRecord::RecordNotFound Mongoid::Errors::DocumentNotFound AbstractController::ActionNotFound ActionController::RoutingError ActionController::UnknownFormat}*
198
+ *Array of strings, default: %w{ActiveRecord::RecordNotFound Mongoid::Errors::DocumentNotFound AbstractController::ActionNotFound ActionController::RoutingError ActionController::UnknownFormat ActionDispatch::Http::MimeNegotiation::InvalidType Rack::Utils::InvalidParameterError}*
143
199
 
144
200
  Ignore specified exception types. To achieve that, you should use the `:ignore_exceptions` option, like this:
145
201
 
@@ -155,6 +211,7 @@ Rails.application.config.middleware.use ExceptionNotification::Rack,
155
211
 
156
212
  The above will make ExceptionNotifier ignore a *TemplateError* exception, plus the ones ignored by default.
157
213
 
214
+
158
215
  ### :ignore_crawlers
159
216
 
160
217
  *Array of strings, default: []*
@@ -171,6 +228,7 @@ Rails.application.config.middleware.use ExceptionNotification::Rack,
171
228
  }
172
229
  ```
173
230
 
231
+
174
232
  ### :ignore_if
175
233
 
176
234
  *Lambda, default: nil*
@@ -189,6 +247,7 @@ Rails.application.config.middleware.use ExceptionNotification::Rack,
189
247
 
190
248
  You can make use of both the environment and the exception inside the lambda to decide wether to avoid or not sending the notification.
191
249
 
250
+
192
251
  ### :ignore_notifier_if
193
252
 
194
253
  * Hash of Lambda, default: nil*
@@ -201,7 +260,7 @@ Rails.application.config.middleware.use ExceptionNotification::Rack,
201
260
  ignore_notifier_if: {
202
261
  email: ->(env, exception) { !Rails.env.production? },
203
262
  slack: ->(env, exception) { exception.message =~ /^Couldn't find Page with ID=/ }
204
- }
263
+ },
205
264
 
206
265
  email: {
207
266
  sender_address: %{"notifier" <notifier@example.com>},
@@ -215,35 +274,69 @@ Rails.application.config.middleware.use ExceptionNotification::Rack,
215
274
 
216
275
  To customize each condition, you can make use of environment and the exception object inside the lambda.
217
276
 
277
+
218
278
  ## Rack X-Cascade Header
219
279
 
220
280
  Some rack apps (Rails in particular) utilize the "X-Cascade" header to pass the request-handling responsibility to the next middleware in the stack.
221
281
 
222
282
  Rails' routing middleware uses this strategy, rather than raising an exception, to handle routing errors (e.g. 404s); to be notified whenever a 404 occurs, set this option to "false."
223
283
 
284
+
224
285
  ### :ignore_cascade_pass
225
286
 
226
287
  *Boolean, default: true*
227
288
 
228
289
  Set to false to trigger notifications when another rack middleware sets the "X-Cascade" header to "pass."
229
290
 
230
- ## Background Notifications
231
291
 
232
- If you want to send notifications from a background process like DelayedJob, you should use the `notify_exception` method like this:
292
+ ## Background Jobs
293
+
294
+ The ExceptionNotification middleware can only detect notifications that occur during web requests (controller actions). If you have any Ruby code that gets run _outside_ of a normal web request (hereafter referred to as a "background job" or "background process"), exceptions must be detected a different way (the middleware won't even be running in this context).
295
+
296
+ Examples of background jobs include jobs triggered from a cron file or from a queue.
297
+
298
+ ExceptionNotificatior can be configured to automatically notify of exceptions occurring in most common types of Rails background jobs such as [rake tasks](#rake-tasks). Additionally, it provides optional integrations for some 3rd-party libraries such as [Resque and Sidekiq](#resquesidekiq). And of course you can manually trigger a notification if no integration is provided.
299
+
300
+
301
+ ### Rails runner
302
+
303
+ To enable exception notification for your runner commands, add this line to your `config/application.rb` _below_ the `Bundler.require` line (ensuring that `exception_notification` and `rails` gems will have already been required):
304
+
305
+ ```ruby
306
+ require 'exception_notification/rails'
307
+ ```
308
+
309
+ (Requiring it from an initializer is too late, because this depends on the `runner` callback, and that will have already been fired _before_ any initializers run.)
310
+
311
+
312
+ ### Rake tasks
313
+
314
+ If you've already added `require 'exception_notification/rails'` to your `config/application.rb` as described [above](#rails-runner), then there's nothing further you need to do. (That Engine has a `rake_tasks` callback which automatically requires the file below.)
315
+
316
+ Alternatively, you can add this line to your `config/initializers/exception_notification.rb`:
317
+
318
+ ```ruby
319
+ require 'exception_notification/rake'
320
+ ```
321
+
322
+
323
+ ### Manually notify of exceptions
324
+
325
+ If you want to manually send a notifications from a background process that is not _automatically_ handled by ExceptionNotification, then you need to manually call the `notify_exception` method like this:
233
326
 
234
327
  ```ruby
235
328
  begin
236
- some code...
329
+ # some code...
237
330
  rescue => e
238
331
  ExceptionNotifier.notify_exception(e)
239
332
  end
240
333
  ```
241
334
 
242
- You can include information about the background process that created the error by including a data parameter:
335
+ You can include information about the background process that created the error by including a `data` parameter:
243
336
 
244
337
  ```ruby
245
338
  begin
246
- some code...
339
+ # some code...
247
340
  rescue => e
248
341
  ExceptionNotifier.notify_exception(
249
342
  e,
@@ -252,57 +345,54 @@ rescue => e
252
345
  end
253
346
  ```
254
347
 
255
- ### Manually notify of exception
256
-
257
- If your controller action manually handles an error, the notifier will never be run. To manually notify of an error you can do something like the following:
258
-
259
- ```ruby
260
- rescue_from Exception, with: :server_error
348
+ ### Resque/Sidekiq
261
349
 
262
- def server_error(exception)
263
- # Whatever code that handles the exception
350
+ Instead of manually calling background notifications for each job/worker, you can configure ExceptionNotification to do this automatically. For this, run:
264
351
 
265
- ExceptionNotifier.notify_exception(
266
- exception,
267
- env: request.env, data: { message: 'was doing something wrong' }
268
- )
269
- end
352
+ ```bash
353
+ rails g exception_notification:install --resque
270
354
  ```
271
355
 
272
- ## Extras
273
-
274
- ### Rails
275
-
276
- Since his first version, ExceptionNotification was just a simple rack middleware. But, the version 4.0.0 introduced the option to use it as a Rails engine. In order to use ExceptionNotification as an engine, just run the following command from the terminal:
277
-
278
- rails g exception_notification:install
356
+ or
279
357
 
280
- This command generates an initialize file (`config/initializers/exception_notification.rb`) where you can customize your configurations.
358
+ ```bash
359
+ rails g exception_notification:install --sidekiq
360
+ ```
281
361
 
282
- Make sure the gem is not listed solely under the `production` group, since this initializer will be loaded regardless of environment.
362
+ As above, make sure the gem is not listed solely under the `production` group, since this initializer will be loaded regardless of environment.
283
363
 
284
- ### Resque/Sidekiq
364
+ ## Manually notify of exceptions from `rescue_from` handler
285
365
 
286
- Instead of manually calling background notifications foreach job/worker, you can configure ExceptionNotification to do this automatically. For this, run:
366
+ If your controller rescues and handles an error, the middleware won't be able to see that there was an exception, and the notifier will never be run. To manually notify of an error after rescuing it, you can do something like the following:
287
367
 
288
- rails g exception_notification:install --resque
368
+ ```ruby
369
+ class SomeController < ApplicationController
370
+ rescue_from Exception, with: :server_error
289
371
 
290
- or
372
+ def server_error(exception)
373
+ # Whatever code that handles the exception
291
374
 
292
- rails g exception_notification:install --sidekiq
375
+ ExceptionNotifier.notify_exception(
376
+ exception,
377
+ env: request.env, data: { message: 'was doing something wrong' }
378
+ )
379
+ end
380
+ end
381
+ ```
293
382
 
294
- As above, make sure the gem is not listed solely under the `production` group, since this initializer will be loaded regardless of environment.
383
+ ## Development and support
295
384
 
296
- ## Support and tickets
385
+ Pull requests are very welcome! Issues too.
297
386
 
298
- Here's the list of [issues](https://github.com/smartinez87/exception_notification/issues) we're currently working on.
387
+ You can always debug the gem by running `rake console`.
299
388
 
300
- To contribute, please read first the [Contributing Guide](https://github.com/smartinez87/exception_notification/blob/master/CONTRIBUTING.md).
389
+ Please read first the [Contributing Guide](CONTRIBUTING.md).
301
390
 
302
- ## Code of Conduct
391
+ And always follow the [code of conduct](CODE_OF_CONDUCT.md).
303
392
 
304
- Everyone interacting in this project's codebases, issue trackers, chat rooms, and mailing lists is expected to follow our [code of conduct](https://github.com/smartinez87/exception_notification/blob/master/CODE_OF_CONDUCT.md).
305
393
 
306
394
  ## License
307
395
 
308
396
  Copyright (c) 2005 Jamis Buck, released under the [MIT license](http://www.opensource.org/licenses/MIT).
397
+
398
+ Maintainer: [Kevin McPhillips](https://github.com/kmcphillips)
data/Rakefile CHANGED
@@ -1,17 +1,24 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require 'rubygems'
4
- require 'bundler/setup'
3
+ require "rubygems"
4
+ require "bundler/setup"
5
+ require "irb"
5
6
  Bundler::GemHelper.install_tasks
6
- require 'appraisal'
7
7
 
8
- require 'rake/testtask'
8
+ require "rake/testtask"
9
9
 
10
10
  task default: [:test]
11
11
 
12
12
  Rake::TestTask.new(:test) do |t|
13
- t.libs << 'lib'
14
- t.libs << 'test'
15
- t.pattern = 'test/**/*_test.rb'
13
+ t.libs << "lib"
14
+ t.libs << "test"
15
+ t.pattern = "test/**/*_test.rb"
16
16
  t.warning = false
17
17
  end
18
+
19
+ desc "Start a console with the gem"
20
+ task :console do
21
+ ARGV.clear
22
+ puts "ExceptionNotification #{ExceptionNotification::VERSION} loaded."
23
+ IRB.start
24
+ end
@@ -21,7 +21,6 @@ Rails.application.config.middleware.use ExceptionNotification::Rack,
21
21
  },
22
22
  slack: {
23
23
  webhook_url: '[Your webhook url]',
24
- channel: '#exceptions',
25
24
  additional_parameters: {
26
25
  icon_url: 'http://image.jpg',
27
26
  mrkdwn: true
@@ -129,12 +128,6 @@ ExceptionNotifier.notify_exception(
129
128
 
130
129
  The Incoming WebHook URL on slack.
131
130
 
132
- ##### channel
133
-
134
- *String, optional*
135
-
136
- Message will appear in this channel. Defaults to the channel you set as such on slack.
137
-
138
131
  ##### username
139
132
 
140
133
  *String, optional*
@@ -1,42 +1,39 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require File.expand_path('lib/exception_notification/version', __dir__)
3
+ require File.expand_path("lib/exception_notification/version", __dir__)
4
4
 
5
5
  Gem::Specification.new do |s|
6
- s.name = 'exception_notification'
6
+ s.name = "exception_notification"
7
7
  s.version = ExceptionNotification::VERSION
8
- s.authors = ['Jamis Buck', 'Josh Peek']
9
- s.date = '2022-01-20'
10
- s.summary = 'Exception notification for Rails apps'
11
- s.homepage = 'https://smartinez87.github.io/exception_notification/'
12
- s.email = 'smartinez87@gmail.com'
13
- s.license = 'MIT'
8
+ s.authors = ["Jamis Buck", "Josh Peek", "Sebastián Martínez", "Kevin McPhillips"]
9
+ s.summary = "Exception notification for Ruby applications"
10
+ s.homepage = "https://kmcphillips.github.io/exception_notification/"
11
+ s.email = "github@kevinmcphillips.ca"
12
+ s.license = "MIT"
13
+ s.metadata = {"changelog_uri" => "https://github.com/kmcphillips/exception_notification/blob/master/CHANGELOG.rdoc"}
14
14
 
15
- s.required_ruby_version = '>= 2.3'
16
- s.required_rubygems_version = '>= 1.8.11'
15
+ s.required_ruby_version = ">= 3.2"
17
16
 
18
- s.files = `git ls-files`.split("\n")
17
+ s.files = `git ls-files | grep -v '^examples'`.split("\n")
19
18
  s.files -= `git ls-files -- .??*`.split("\n")
20
- s.test_files = `git ls-files -- test`.split("\n")
21
- s.require_path = 'lib'
19
+ s.require_path = "lib"
22
20
 
23
- s.add_dependency('actionmailer', '>= 5.2', '< 8')
24
- s.add_dependency('activesupport', '>= 5.2', '< 8')
21
+ s.add_dependency("actionmailer", ">= 7.1", "< 9")
22
+ s.add_dependency("activesupport", ">= 7.1", "< 9")
25
23
 
26
- s.add_development_dependency 'appraisal', '~> 2.2.0'
27
- s.add_development_dependency 'aws-sdk-sns', '~> 1'
28
- s.add_development_dependency 'carrier-pigeon', '>= 0.7.0'
29
- s.add_development_dependency 'coveralls', '~> 0.8.2'
30
- s.add_development_dependency 'dogapi', '>= 1.23.0'
31
- s.add_development_dependency 'hipchat', '>= 1.0.0'
32
- s.add_development_dependency 'httparty', '~> 0.10.2'
33
- s.add_development_dependency 'mocha', '>= 0.13.0'
34
- s.add_development_dependency 'mock_redis', '~> 0.19.0'
35
- s.add_development_dependency 'net-smtp'
36
- s.add_development_dependency 'rails', '>= 5.2', '< 8'
37
- s.add_development_dependency 'resque', '~> 1.8.0'
38
- s.add_development_dependency 'rubocop', '0.78.0'
39
- s.add_development_dependency 'sidekiq', '>= 5.0.4'
40
- s.add_development_dependency 'slack-notifier', '>= 1.0.0'
41
- s.add_development_dependency 'timecop', '~> 0.9.0'
24
+ s.add_development_dependency "aws-sdk-sns", "~> 1"
25
+ s.add_development_dependency "carrier-pigeon", ">= 0.7.0"
26
+ s.add_development_dependency "dogapi", ">= 1.23.0"
27
+ s.add_development_dependency "hipchat", ">= 1.0.0"
28
+ s.add_development_dependency "httparty", "~> 0.10.2"
29
+ s.add_development_dependency "mocha", ">= 0.13.0"
30
+ s.add_development_dependency "mock_redis", "~> 0.19.0"
31
+ s.add_development_dependency "net-smtp"
32
+ s.add_development_dependency "ostruct"
33
+ s.add_development_dependency "rails", ">= 7.1", "< 9"
34
+ s.add_development_dependency "resque", "~> 1.8.0"
35
+ s.add_development_dependency "sidekiq", ">= 5.0.4"
36
+ s.add_development_dependency "slack-notifier", ">= 1.0.0"
37
+ s.add_development_dependency "standard"
38
+ s.add_development_dependency "timecop", "~> 0.9.0"
42
39
  end
@@ -0,0 +1,8 @@
1
+ source "https://rubygems.org"
2
+
3
+ gem "rails", "~> 8.0.0"
4
+
5
+ # Include any dependencies here that need to be specifically tested.
6
+ gem "sidekiq", "7.1.0" # >= 7.1.5 for the conditional in sidekiq.rb to check parameter cardinality
7
+
8
+ gemspec path: "../"
@@ -0,0 +1,5 @@
1
+ source "https://rubygems.org"
2
+
3
+ gem "rails", "~> 7.1.0"
4
+
5
+ gemspec path: "../"
@@ -0,0 +1,5 @@
1
+ source "https://rubygems.org"
2
+
3
+ gem "rails", "~> 7.2.0"
4
+
5
+ gemspec path: "../"
@@ -0,0 +1,5 @@
1
+ source "https://rubygems.org"
2
+
3
+ gem "rails", "~> 8.0.0"
4
+
5
+ gemspec path: "../"
@@ -48,15 +48,15 @@ module ExceptionNotification
48
48
  def call(env)
49
49
  _, headers, = response = @app.call(env)
50
50
 
51
- if !@ignore_cascade_pass && headers['X-Cascade'] == 'pass'
51
+ if !@ignore_cascade_pass && headers["X-Cascade"] == "pass"
52
52
  msg = "This exception means that the preceding Rack middleware set the 'X-Cascade' header to 'pass' -- in " \
53
- 'Rails, this often means that the route was not found (404 error).'
53
+ "Rails, this often means that the route was not found (404 error)."
54
54
  raise CascadePassException, msg
55
55
  end
56
56
 
57
57
  response
58
- rescue Exception => e
59
- env['exception_notifier.delivered'] = true if ExceptionNotifier.notify_exception(e, env: env)
58
+ rescue Exception => e # standard:disable Lint/RescueException
59
+ env["exception_notifier.delivered"] = true if ExceptionNotifier.notify_exception(e, env: env)
60
60
 
61
61
  raise e unless e.is_a?(CascadePassException)
62
62
 
@@ -0,0 +1,31 @@
1
+ # frozen_string_literal: true
2
+
3
+ module ExceptionNotification
4
+ module Rails
5
+ class RunnerTie
6
+ # Registers an at_exit callback, which checks if there was an exception. This is a pretty
7
+ # crude way to detect exceptions from runner commands, but Rails doesn't provide a better API.
8
+ #
9
+ # This should only be called from a runner callback in your Rails config; otherwise you may
10
+ # register the at_exit callback in more places than you need or want it.
11
+ def call
12
+ at_exit do
13
+ exception = $ERROR_INFO
14
+ if exception && !exception.is_a?(SystemExit)
15
+ ExceptionNotifier.notify_exception(exception, data: data_for_exception_notifier(exception))
16
+ end
17
+ end
18
+ end
19
+
20
+ private
21
+
22
+ def data_for_exception_notifier(exception = nil)
23
+ data = {}
24
+ data[:error_class] = exception.class.name if exception
25
+ data[:error_message] = exception.message if exception
26
+
27
+ data
28
+ end
29
+ end
30
+ end
31
+ end
@@ -1,5 +1,10 @@
1
1
  # frozen_string_literal: true
2
2
 
3
+ # Warning: This must be required after rails but before initializers have been run. If you require
4
+ # it from config/initializers/exception_notification.rb, then the rails and rake_task callbacks
5
+ # registered here will have no effect, because Rails will have already invoked all registered rails
6
+ # and rake_tasks handlers.
7
+
3
8
  module ExceptionNotification
4
9
  class Engine < ::Rails::Engine
5
10
  config.exception_notification = ExceptionNotifier
@@ -7,5 +12,16 @@ module ExceptionNotification
7
12
  config.exception_notification.error_grouping_cache = Rails.cache
8
13
 
9
14
  config.app_middleware.use ExceptionNotification::Rack
15
+
16
+ rake_tasks do
17
+ # Report exceptions occurring in Rake tasks.
18
+ require "exception_notification/rake"
19
+ end
20
+
21
+ runner do
22
+ # Report exceptions occurring in runner commands.
23
+ require "exception_notification/rails/runner_tie"
24
+ Rails::RunnerTie.new.call
25
+ end
10
26
  end
11
27
  end