exception_notification 3.0.1 → 4.4.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (153) hide show
  1. checksums.yaml +7 -0
  2. data/Appraisals +7 -0
  3. data/CHANGELOG.rdoc +129 -1
  4. data/CODE_OF_CONDUCT.md +22 -0
  5. data/CONTRIBUTING.md +29 -1
  6. data/Gemfile +1 -1
  7. data/MIT-LICENSE +23 -0
  8. data/README.md +168 -222
  9. data/Rakefile +5 -11
  10. data/docs/notifiers/campfire.md +50 -0
  11. data/docs/notifiers/custom.md +42 -0
  12. data/docs/notifiers/datadog.md +51 -0
  13. data/docs/notifiers/email.md +195 -0
  14. data/docs/notifiers/google_chat.md +31 -0
  15. data/docs/notifiers/hipchat.md +66 -0
  16. data/docs/notifiers/irc.md +97 -0
  17. data/docs/notifiers/mattermost.md +115 -0
  18. data/docs/notifiers/slack.md +161 -0
  19. data/docs/notifiers/sns.md +37 -0
  20. data/docs/notifiers/teams.md +54 -0
  21. data/docs/notifiers/webhook.md +60 -0
  22. data/examples/sample_app.rb +54 -0
  23. data/examples/sinatra/Gemfile +8 -0
  24. data/examples/sinatra/Gemfile.lock +95 -0
  25. data/examples/sinatra/Procfile +2 -0
  26. data/examples/sinatra/README.md +11 -0
  27. data/examples/sinatra/config.ru +3 -0
  28. data/examples/sinatra/sinatra_app.rb +36 -0
  29. data/exception_notification.gemspec +32 -11
  30. data/gemfiles/rails4_0.gemfile +7 -0
  31. data/gemfiles/rails4_1.gemfile +7 -0
  32. data/gemfiles/rails4_2.gemfile +7 -0
  33. data/gemfiles/rails5_0.gemfile +7 -0
  34. data/gemfiles/rails5_1.gemfile +7 -0
  35. data/gemfiles/rails5_2.gemfile +7 -0
  36. data/gemfiles/rails6_0.gemfile +7 -0
  37. data/lib/exception_notification.rb +11 -0
  38. data/lib/exception_notification/rack.rb +55 -0
  39. data/lib/exception_notification/rails.rb +9 -0
  40. data/lib/exception_notification/resque.rb +22 -0
  41. data/lib/exception_notification/sidekiq.rb +27 -0
  42. data/lib/exception_notification/version.rb +3 -0
  43. data/lib/exception_notifier.rb +137 -61
  44. data/lib/exception_notifier/base_notifier.rb +24 -0
  45. data/lib/exception_notifier/campfire_notifier.rb +16 -11
  46. data/lib/exception_notifier/datadog_notifier.rb +153 -0
  47. data/lib/exception_notifier/email_notifier.rb +196 -0
  48. data/lib/exception_notifier/google_chat_notifier.rb +42 -0
  49. data/lib/exception_notifier/hipchat_notifier.rb +49 -0
  50. data/lib/exception_notifier/irc_notifier.rb +57 -0
  51. data/lib/exception_notifier/mattermost_notifier.rb +72 -0
  52. data/lib/exception_notifier/modules/backtrace_cleaner.rb +11 -0
  53. data/lib/exception_notifier/modules/error_grouping.rb +77 -0
  54. data/lib/exception_notifier/modules/formatter.rb +118 -0
  55. data/lib/exception_notifier/notifier.rb +9 -179
  56. data/lib/exception_notifier/slack_notifier.rb +111 -0
  57. data/lib/exception_notifier/sns_notifier.rb +85 -0
  58. data/lib/exception_notifier/teams_notifier.rb +193 -0
  59. data/lib/exception_notifier/views/exception_notifier/_backtrace.html.erb +3 -1
  60. data/lib/exception_notifier/views/exception_notifier/_data.html.erb +6 -1
  61. data/lib/exception_notifier/views/exception_notifier/_environment.html.erb +8 -6
  62. data/lib/exception_notifier/views/exception_notifier/_environment.text.erb +1 -4
  63. data/lib/exception_notifier/views/exception_notifier/_request.html.erb +36 -5
  64. data/lib/exception_notifier/views/exception_notifier/_request.text.erb +10 -5
  65. data/lib/exception_notifier/views/exception_notifier/_session.html.erb +10 -2
  66. data/lib/exception_notifier/views/exception_notifier/_session.text.erb +2 -2
  67. data/lib/exception_notifier/views/exception_notifier/_title.html.erb +3 -3
  68. data/lib/exception_notifier/views/exception_notifier/background_exception_notification.html.erb +38 -11
  69. data/lib/exception_notifier/views/exception_notifier/background_exception_notification.text.erb +10 -11
  70. data/lib/exception_notifier/views/exception_notifier/exception_notification.html.erb +38 -22
  71. data/lib/exception_notifier/views/exception_notifier/exception_notification.text.erb +2 -3
  72. data/lib/exception_notifier/webhook_notifier.rb +51 -0
  73. data/lib/generators/exception_notification/install_generator.rb +15 -0
  74. data/lib/generators/exception_notification/templates/exception_notification.rb.erb +55 -0
  75. data/test/exception_notification/rack_test.rb +60 -0
  76. data/test/exception_notification/resque_test.rb +52 -0
  77. data/test/exception_notifier/campfire_notifier_test.rb +120 -0
  78. data/test/exception_notifier/datadog_notifier_test.rb +151 -0
  79. data/test/exception_notifier/email_notifier_test.rb +351 -0
  80. data/test/exception_notifier/google_chat_notifier_test.rb +181 -0
  81. data/test/exception_notifier/hipchat_notifier_test.rb +218 -0
  82. data/test/exception_notifier/irc_notifier_test.rb +137 -0
  83. data/test/exception_notifier/mattermost_notifier_test.rb +202 -0
  84. data/test/exception_notifier/modules/error_grouping_test.rb +165 -0
  85. data/test/exception_notifier/modules/formatter_test.rb +150 -0
  86. data/test/exception_notifier/sidekiq_test.rb +38 -0
  87. data/test/exception_notifier/slack_notifier_test.rb +227 -0
  88. data/test/exception_notifier/sns_notifier_test.rb +121 -0
  89. data/test/exception_notifier/teams_notifier_test.rb +90 -0
  90. data/test/exception_notifier/webhook_notifier_test.rb +96 -0
  91. data/test/exception_notifier_test.rb +182 -0
  92. data/test/{dummy/app → support}/views/exception_notifier/_new_bkg_section.html.erb +0 -0
  93. data/test/{dummy/app → support}/views/exception_notifier/_new_bkg_section.text.erb +0 -0
  94. data/test/{dummy/app → support}/views/exception_notifier/_new_section.html.erb +0 -0
  95. data/test/{dummy/app → support}/views/exception_notifier/_new_section.text.erb +0 -0
  96. data/test/test_helper.rb +12 -8
  97. metadata +333 -164
  98. data/.gemtest +0 -0
  99. data/Gemfile.lock +0 -122
  100. data/test/background_exception_notification_test.rb +0 -82
  101. data/test/campfire_test.rb +0 -53
  102. data/test/dummy/.gitignore +0 -4
  103. data/test/dummy/Gemfile +0 -33
  104. data/test/dummy/Gemfile.lock +0 -118
  105. data/test/dummy/Rakefile +0 -7
  106. data/test/dummy/app/controllers/application_controller.rb +0 -3
  107. data/test/dummy/app/controllers/posts_controller.rb +0 -30
  108. data/test/dummy/app/helpers/application_helper.rb +0 -2
  109. data/test/dummy/app/helpers/posts_helper.rb +0 -2
  110. data/test/dummy/app/models/post.rb +0 -2
  111. data/test/dummy/app/views/layouts/application.html.erb +0 -14
  112. data/test/dummy/app/views/posts/_form.html.erb +0 -0
  113. data/test/dummy/app/views/posts/new.html.erb +0 -0
  114. data/test/dummy/app/views/posts/show.html.erb +0 -0
  115. data/test/dummy/config.ru +0 -4
  116. data/test/dummy/config/application.rb +0 -42
  117. data/test/dummy/config/boot.rb +0 -6
  118. data/test/dummy/config/database.yml +0 -22
  119. data/test/dummy/config/environment.rb +0 -13
  120. data/test/dummy/config/environments/development.rb +0 -24
  121. data/test/dummy/config/environments/production.rb +0 -49
  122. data/test/dummy/config/environments/test.rb +0 -35
  123. data/test/dummy/config/initializers/backtrace_silencers.rb +0 -7
  124. data/test/dummy/config/initializers/inflections.rb +0 -10
  125. data/test/dummy/config/initializers/mime_types.rb +0 -5
  126. data/test/dummy/config/initializers/secret_token.rb +0 -7
  127. data/test/dummy/config/initializers/session_store.rb +0 -8
  128. data/test/dummy/config/locales/en.yml +0 -5
  129. data/test/dummy/config/routes.rb +0 -3
  130. data/test/dummy/db/migrate/20110729022608_create_posts.rb +0 -15
  131. data/test/dummy/db/schema.rb +0 -24
  132. data/test/dummy/db/seeds.rb +0 -7
  133. data/test/dummy/lib/tasks/.gitkeep +0 -0
  134. data/test/dummy/public/404.html +0 -26
  135. data/test/dummy/public/422.html +0 -26
  136. data/test/dummy/public/500.html +0 -26
  137. data/test/dummy/public/favicon.ico +0 -0
  138. data/test/dummy/public/images/rails.png +0 -0
  139. data/test/dummy/public/index.html +0 -239
  140. data/test/dummy/public/javascripts/application.js +0 -2
  141. data/test/dummy/public/javascripts/controls.js +0 -965
  142. data/test/dummy/public/javascripts/dragdrop.js +0 -974
  143. data/test/dummy/public/javascripts/effects.js +0 -1123
  144. data/test/dummy/public/javascripts/prototype.js +0 -6001
  145. data/test/dummy/public/javascripts/rails.js +0 -191
  146. data/test/dummy/public/robots.txt +0 -5
  147. data/test/dummy/public/stylesheets/.gitkeep +0 -0
  148. data/test/dummy/public/stylesheets/scaffold.css +0 -56
  149. data/test/dummy/script/rails +0 -6
  150. data/test/dummy/test/fixtures/posts.yml +0 -11
  151. data/test/dummy/test/functional/posts_controller_test.rb +0 -239
  152. data/test/dummy/test/test_helper.rb +0 -13
  153. data/test/exception_notification_test.rb +0 -73
data/test/test_helper.rb CHANGED
@@ -1,11 +1,15 @@
1
- # Configure Rails Environment
2
- ENV["RAILS_ENV"] = "test"
1
+ require 'coveralls'
2
+ Coveralls.wear!
3
3
 
4
- require File.expand_path("../dummy/config/environment.rb", __FILE__)
5
- require "rails/test_help"
6
- require File.expand_path("../dummy/test/test_helper.rb", __FILE__)
4
+ $LOAD_PATH.unshift File.expand_path('../../lib', __FILE__)
5
+ require 'exception_notification'
7
6
 
8
- require "test/unit"
9
- require "mocha"
7
+ require 'minitest/autorun'
8
+ require 'mocha/minitest'
9
+ require 'active_support/test_case'
10
+ require 'action_mailer'
10
11
 
11
- Rails.backtrace_cleaner.remove_silencers!
12
+ ExceptionNotifier.testing_mode!
13
+ Time.zone = 'UTC'
14
+ ActionMailer::Base.delivery_method = :test
15
+ ActionMailer::Base.append_view_path "#{File.dirname(__FILE__)}/support/views"
metadata CHANGED
@@ -1,8 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: exception_notification
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.1
5
- prerelease:
4
+ version: 4.4.0
6
5
  platform: ruby
7
6
  authors:
8
7
  - Jamis Buck
@@ -10,106 +9,347 @@ authors:
10
9
  autorequire:
11
10
  bindir: bin
12
11
  cert_chain: []
13
- date: 2013-02-02 00:00:00.000000000 Z
12
+ date: 2019-08-16 00:00:00.000000000 Z
14
13
  dependencies:
15
14
  - !ruby/object:Gem::Dependency
16
15
  name: actionmailer
17
16
  requirement: !ruby/object:Gem::Requirement
18
- none: false
19
17
  requirements:
20
- - - ! '>='
18
+ - - ">="
21
19
  - !ruby/object:Gem::Version
22
- version: 3.0.4
20
+ version: '4.0'
21
+ - - "<"
22
+ - !ruby/object:Gem::Version
23
+ version: '7'
23
24
  type: :runtime
24
25
  prerelease: false
25
26
  version_requirements: !ruby/object:Gem::Requirement
26
- none: false
27
27
  requirements:
28
- - - ! '>='
28
+ - - ">="
29
+ - !ruby/object:Gem::Version
30
+ version: '4.0'
31
+ - - "<"
29
32
  - !ruby/object:Gem::Version
30
- version: 3.0.4
33
+ version: '7'
31
34
  - !ruby/object:Gem::Dependency
32
- name: tinder
35
+ name: activesupport
33
36
  requirement: !ruby/object:Gem::Requirement
34
- none: false
35
37
  requirements:
36
- - - ~>
38
+ - - ">="
37
39
  - !ruby/object:Gem::Version
38
- version: '1.8'
40
+ version: '4.0'
41
+ - - "<"
42
+ - !ruby/object:Gem::Version
43
+ version: '7'
44
+ type: :runtime
45
+ prerelease: false
46
+ version_requirements: !ruby/object:Gem::Requirement
47
+ requirements:
48
+ - - ">="
49
+ - !ruby/object:Gem::Version
50
+ version: '4.0'
51
+ - - "<"
52
+ - !ruby/object:Gem::Version
53
+ version: '7'
54
+ - !ruby/object:Gem::Dependency
55
+ name: appraisal
56
+ requirement: !ruby/object:Gem::Requirement
57
+ requirements:
58
+ - - "~>"
59
+ - !ruby/object:Gem::Version
60
+ version: 2.2.0
39
61
  type: :development
40
62
  prerelease: false
41
63
  version_requirements: !ruby/object:Gem::Requirement
42
- none: false
43
64
  requirements:
44
- - - ~>
65
+ - - "~>"
45
66
  - !ruby/object:Gem::Version
46
- version: '1.8'
67
+ version: 2.2.0
47
68
  - !ruby/object:Gem::Dependency
48
- name: rails
69
+ name: aws-sdk-sns
49
70
  requirement: !ruby/object:Gem::Requirement
50
- none: false
51
71
  requirements:
52
- - - ! '>='
72
+ - - "~>"
53
73
  - !ruby/object:Gem::Version
54
- version: 3.0.4
74
+ version: '1'
55
75
  type: :development
56
76
  prerelease: false
57
77
  version_requirements: !ruby/object:Gem::Requirement
58
- none: false
59
78
  requirements:
60
- - - ! '>='
79
+ - - "~>"
61
80
  - !ruby/object:Gem::Version
62
- version: 3.0.4
81
+ version: '1'
82
+ - !ruby/object:Gem::Dependency
83
+ name: carrier-pigeon
84
+ requirement: !ruby/object:Gem::Requirement
85
+ requirements:
86
+ - - ">="
87
+ - !ruby/object:Gem::Version
88
+ version: 0.7.0
89
+ type: :development
90
+ prerelease: false
91
+ version_requirements: !ruby/object:Gem::Requirement
92
+ requirements:
93
+ - - ">="
94
+ - !ruby/object:Gem::Version
95
+ version: 0.7.0
96
+ - !ruby/object:Gem::Dependency
97
+ name: coveralls
98
+ requirement: !ruby/object:Gem::Requirement
99
+ requirements:
100
+ - - "~>"
101
+ - !ruby/object:Gem::Version
102
+ version: 0.8.2
103
+ type: :development
104
+ prerelease: false
105
+ version_requirements: !ruby/object:Gem::Requirement
106
+ requirements:
107
+ - - "~>"
108
+ - !ruby/object:Gem::Version
109
+ version: 0.8.2
110
+ - !ruby/object:Gem::Dependency
111
+ name: dogapi
112
+ requirement: !ruby/object:Gem::Requirement
113
+ requirements:
114
+ - - ">="
115
+ - !ruby/object:Gem::Version
116
+ version: 1.23.0
117
+ type: :development
118
+ prerelease: false
119
+ version_requirements: !ruby/object:Gem::Requirement
120
+ requirements:
121
+ - - ">="
122
+ - !ruby/object:Gem::Version
123
+ version: 1.23.0
124
+ - !ruby/object:Gem::Dependency
125
+ name: hipchat
126
+ requirement: !ruby/object:Gem::Requirement
127
+ requirements:
128
+ - - ">="
129
+ - !ruby/object:Gem::Version
130
+ version: 1.0.0
131
+ type: :development
132
+ prerelease: false
133
+ version_requirements: !ruby/object:Gem::Requirement
134
+ requirements:
135
+ - - ">="
136
+ - !ruby/object:Gem::Version
137
+ version: 1.0.0
138
+ - !ruby/object:Gem::Dependency
139
+ name: httparty
140
+ requirement: !ruby/object:Gem::Requirement
141
+ requirements:
142
+ - - "~>"
143
+ - !ruby/object:Gem::Version
144
+ version: 0.10.2
145
+ type: :development
146
+ prerelease: false
147
+ version_requirements: !ruby/object:Gem::Requirement
148
+ requirements:
149
+ - - "~>"
150
+ - !ruby/object:Gem::Version
151
+ version: 0.10.2
152
+ - !ruby/object:Gem::Dependency
153
+ name: mock_redis
154
+ requirement: !ruby/object:Gem::Requirement
155
+ requirements:
156
+ - - "~>"
157
+ - !ruby/object:Gem::Version
158
+ version: 0.18.0
159
+ type: :development
160
+ prerelease: false
161
+ version_requirements: !ruby/object:Gem::Requirement
162
+ requirements:
163
+ - - "~>"
164
+ - !ruby/object:Gem::Version
165
+ version: 0.18.0
63
166
  - !ruby/object:Gem::Dependency
64
167
  name: mocha
65
168
  requirement: !ruby/object:Gem::Requirement
66
- none: false
67
169
  requirements:
68
- - - ! '>='
170
+ - - ">="
171
+ - !ruby/object:Gem::Version
172
+ version: 0.13.0
173
+ type: :development
174
+ prerelease: false
175
+ version_requirements: !ruby/object:Gem::Requirement
176
+ requirements:
177
+ - - ">="
178
+ - !ruby/object:Gem::Version
179
+ version: 0.13.0
180
+ - !ruby/object:Gem::Dependency
181
+ name: rails
182
+ requirement: !ruby/object:Gem::Requirement
183
+ requirements:
184
+ - - ">="
185
+ - !ruby/object:Gem::Version
186
+ version: '4.0'
187
+ - - "<"
188
+ - !ruby/object:Gem::Version
189
+ version: '7'
190
+ type: :development
191
+ prerelease: false
192
+ version_requirements: !ruby/object:Gem::Requirement
193
+ requirements:
194
+ - - ">="
195
+ - !ruby/object:Gem::Version
196
+ version: '4.0'
197
+ - - "<"
198
+ - !ruby/object:Gem::Version
199
+ version: '7'
200
+ - !ruby/object:Gem::Dependency
201
+ name: resque
202
+ requirement: !ruby/object:Gem::Requirement
203
+ requirements:
204
+ - - "~>"
205
+ - !ruby/object:Gem::Version
206
+ version: 1.8.0
207
+ type: :development
208
+ prerelease: false
209
+ version_requirements: !ruby/object:Gem::Requirement
210
+ requirements:
211
+ - - "~>"
212
+ - !ruby/object:Gem::Version
213
+ version: 1.8.0
214
+ - !ruby/object:Gem::Dependency
215
+ name: rubocop
216
+ requirement: !ruby/object:Gem::Requirement
217
+ requirements:
218
+ - - '='
69
219
  - !ruby/object:Gem::Version
70
- version: 0.11.3
220
+ version: 0.50.0
71
221
  type: :development
72
222
  prerelease: false
73
223
  version_requirements: !ruby/object:Gem::Requirement
74
- none: false
75
224
  requirements:
76
- - - ! '>='
225
+ - - '='
77
226
  - !ruby/object:Gem::Version
78
- version: 0.11.3
227
+ version: 0.50.0
79
228
  - !ruby/object:Gem::Dependency
80
- name: sqlite3
229
+ name: sidekiq
81
230
  requirement: !ruby/object:Gem::Requirement
82
- none: false
83
231
  requirements:
84
- - - ! '>='
232
+ - - "~>"
233
+ - !ruby/object:Gem::Version
234
+ version: 3.0.0
235
+ - - "<"
85
236
  - !ruby/object:Gem::Version
86
- version: 1.3.4
237
+ version: 3.2.2
87
238
  type: :development
88
239
  prerelease: false
89
240
  version_requirements: !ruby/object:Gem::Requirement
90
- none: false
91
241
  requirements:
92
- - - ! '>='
242
+ - - "~>"
243
+ - !ruby/object:Gem::Version
244
+ version: 3.0.0
245
+ - - "<"
93
246
  - !ruby/object:Gem::Version
94
- version: 1.3.4
247
+ version: 3.2.2
248
+ - !ruby/object:Gem::Dependency
249
+ name: slack-notifier
250
+ requirement: !ruby/object:Gem::Requirement
251
+ requirements:
252
+ - - ">="
253
+ - !ruby/object:Gem::Version
254
+ version: 1.0.0
255
+ type: :development
256
+ prerelease: false
257
+ version_requirements: !ruby/object:Gem::Requirement
258
+ requirements:
259
+ - - ">="
260
+ - !ruby/object:Gem::Version
261
+ version: 1.0.0
262
+ - !ruby/object:Gem::Dependency
263
+ name: timecop
264
+ requirement: !ruby/object:Gem::Requirement
265
+ requirements:
266
+ - - "~>"
267
+ - !ruby/object:Gem::Version
268
+ version: 0.9.0
269
+ type: :development
270
+ prerelease: false
271
+ version_requirements: !ruby/object:Gem::Requirement
272
+ requirements:
273
+ - - "~>"
274
+ - !ruby/object:Gem::Version
275
+ version: 0.9.0
276
+ - !ruby/object:Gem::Dependency
277
+ name: tinder
278
+ requirement: !ruby/object:Gem::Requirement
279
+ requirements:
280
+ - - "~>"
281
+ - !ruby/object:Gem::Version
282
+ version: '1.8'
283
+ type: :development
284
+ prerelease: false
285
+ version_requirements: !ruby/object:Gem::Requirement
286
+ requirements:
287
+ - - "~>"
288
+ - !ruby/object:Gem::Version
289
+ version: '1.8'
95
290
  description:
96
291
  email: smartinez87@gmail.com
97
292
  executables: []
98
293
  extensions: []
99
294
  extra_rdoc_files: []
100
295
  files:
101
- - .gemtest
296
+ - Appraisals
102
297
  - CHANGELOG.rdoc
298
+ - CODE_OF_CONDUCT.md
103
299
  - CONTRIBUTING.md
104
300
  - Gemfile
105
- - Gemfile.lock
301
+ - MIT-LICENSE
106
302
  - README.md
107
303
  - Rakefile
304
+ - docs/notifiers/campfire.md
305
+ - docs/notifiers/custom.md
306
+ - docs/notifiers/datadog.md
307
+ - docs/notifiers/email.md
308
+ - docs/notifiers/google_chat.md
309
+ - docs/notifiers/hipchat.md
310
+ - docs/notifiers/irc.md
311
+ - docs/notifiers/mattermost.md
312
+ - docs/notifiers/slack.md
313
+ - docs/notifiers/sns.md
314
+ - docs/notifiers/teams.md
315
+ - docs/notifiers/webhook.md
316
+ - examples/sample_app.rb
317
+ - examples/sinatra/Gemfile
318
+ - examples/sinatra/Gemfile.lock
319
+ - examples/sinatra/Procfile
320
+ - examples/sinatra/README.md
321
+ - examples/sinatra/config.ru
322
+ - examples/sinatra/sinatra_app.rb
108
323
  - exception_notification.gemspec
324
+ - gemfiles/rails4_0.gemfile
325
+ - gemfiles/rails4_1.gemfile
326
+ - gemfiles/rails4_2.gemfile
327
+ - gemfiles/rails5_0.gemfile
328
+ - gemfiles/rails5_1.gemfile
329
+ - gemfiles/rails5_2.gemfile
330
+ - gemfiles/rails6_0.gemfile
109
331
  - lib/exception_notification.rb
332
+ - lib/exception_notification/rack.rb
333
+ - lib/exception_notification/rails.rb
334
+ - lib/exception_notification/resque.rb
335
+ - lib/exception_notification/sidekiq.rb
336
+ - lib/exception_notification/version.rb
110
337
  - lib/exception_notifier.rb
338
+ - lib/exception_notifier/base_notifier.rb
111
339
  - lib/exception_notifier/campfire_notifier.rb
340
+ - lib/exception_notifier/datadog_notifier.rb
341
+ - lib/exception_notifier/email_notifier.rb
342
+ - lib/exception_notifier/google_chat_notifier.rb
343
+ - lib/exception_notifier/hipchat_notifier.rb
344
+ - lib/exception_notifier/irc_notifier.rb
345
+ - lib/exception_notifier/mattermost_notifier.rb
346
+ - lib/exception_notifier/modules/backtrace_cleaner.rb
347
+ - lib/exception_notifier/modules/error_grouping.rb
348
+ - lib/exception_notifier/modules/formatter.rb
112
349
  - lib/exception_notifier/notifier.rb
350
+ - lib/exception_notifier/slack_notifier.rb
351
+ - lib/exception_notifier/sns_notifier.rb
352
+ - lib/exception_notifier/teams_notifier.rb
113
353
  - lib/exception_notifier/views/exception_notifier/_backtrace.html.erb
114
354
  - lib/exception_notifier/views/exception_notifier/_backtrace.text.erb
115
355
  - lib/exception_notifier/views/exception_notifier/_data.html.erb
@@ -126,146 +366,75 @@ files:
126
366
  - lib/exception_notifier/views/exception_notifier/background_exception_notification.text.erb
127
367
  - lib/exception_notifier/views/exception_notifier/exception_notification.html.erb
128
368
  - lib/exception_notifier/views/exception_notifier/exception_notification.text.erb
129
- - test/background_exception_notification_test.rb
130
- - test/campfire_test.rb
131
- - test/dummy/.gitignore
132
- - test/dummy/Gemfile
133
- - test/dummy/Gemfile.lock
134
- - test/dummy/Rakefile
135
- - test/dummy/app/controllers/application_controller.rb
136
- - test/dummy/app/controllers/posts_controller.rb
137
- - test/dummy/app/helpers/application_helper.rb
138
- - test/dummy/app/helpers/posts_helper.rb
139
- - test/dummy/app/models/post.rb
140
- - test/dummy/app/views/exception_notifier/_new_bkg_section.html.erb
141
- - test/dummy/app/views/exception_notifier/_new_bkg_section.text.erb
142
- - test/dummy/app/views/exception_notifier/_new_section.html.erb
143
- - test/dummy/app/views/exception_notifier/_new_section.text.erb
144
- - test/dummy/app/views/layouts/application.html.erb
145
- - test/dummy/app/views/posts/_form.html.erb
146
- - test/dummy/app/views/posts/new.html.erb
147
- - test/dummy/app/views/posts/show.html.erb
148
- - test/dummy/config.ru
149
- - test/dummy/config/application.rb
150
- - test/dummy/config/boot.rb
151
- - test/dummy/config/database.yml
152
- - test/dummy/config/environment.rb
153
- - test/dummy/config/environments/development.rb
154
- - test/dummy/config/environments/production.rb
155
- - test/dummy/config/environments/test.rb
156
- - test/dummy/config/initializers/backtrace_silencers.rb
157
- - test/dummy/config/initializers/inflections.rb
158
- - test/dummy/config/initializers/mime_types.rb
159
- - test/dummy/config/initializers/secret_token.rb
160
- - test/dummy/config/initializers/session_store.rb
161
- - test/dummy/config/locales/en.yml
162
- - test/dummy/config/routes.rb
163
- - test/dummy/db/migrate/20110729022608_create_posts.rb
164
- - test/dummy/db/schema.rb
165
- - test/dummy/db/seeds.rb
166
- - test/dummy/lib/tasks/.gitkeep
167
- - test/dummy/public/404.html
168
- - test/dummy/public/422.html
169
- - test/dummy/public/500.html
170
- - test/dummy/public/favicon.ico
171
- - test/dummy/public/images/rails.png
172
- - test/dummy/public/index.html
173
- - test/dummy/public/javascripts/application.js
174
- - test/dummy/public/javascripts/controls.js
175
- - test/dummy/public/javascripts/dragdrop.js
176
- - test/dummy/public/javascripts/effects.js
177
- - test/dummy/public/javascripts/prototype.js
178
- - test/dummy/public/javascripts/rails.js
179
- - test/dummy/public/robots.txt
180
- - test/dummy/public/stylesheets/.gitkeep
181
- - test/dummy/public/stylesheets/scaffold.css
182
- - test/dummy/script/rails
183
- - test/dummy/test/fixtures/posts.yml
184
- - test/dummy/test/functional/posts_controller_test.rb
185
- - test/dummy/test/test_helper.rb
186
- - test/exception_notification_test.rb
369
+ - lib/exception_notifier/webhook_notifier.rb
370
+ - lib/generators/exception_notification/install_generator.rb
371
+ - lib/generators/exception_notification/templates/exception_notification.rb.erb
372
+ - test/exception_notification/rack_test.rb
373
+ - test/exception_notification/resque_test.rb
374
+ - test/exception_notifier/campfire_notifier_test.rb
375
+ - test/exception_notifier/datadog_notifier_test.rb
376
+ - test/exception_notifier/email_notifier_test.rb
377
+ - test/exception_notifier/google_chat_notifier_test.rb
378
+ - test/exception_notifier/hipchat_notifier_test.rb
379
+ - test/exception_notifier/irc_notifier_test.rb
380
+ - test/exception_notifier/mattermost_notifier_test.rb
381
+ - test/exception_notifier/modules/error_grouping_test.rb
382
+ - test/exception_notifier/modules/formatter_test.rb
383
+ - test/exception_notifier/sidekiq_test.rb
384
+ - test/exception_notifier/slack_notifier_test.rb
385
+ - test/exception_notifier/sns_notifier_test.rb
386
+ - test/exception_notifier/teams_notifier_test.rb
387
+ - test/exception_notifier/webhook_notifier_test.rb
388
+ - test/exception_notifier_test.rb
389
+ - test/support/views/exception_notifier/_new_bkg_section.html.erb
390
+ - test/support/views/exception_notifier/_new_bkg_section.text.erb
391
+ - test/support/views/exception_notifier/_new_section.html.erb
392
+ - test/support/views/exception_notifier/_new_section.text.erb
187
393
  - test/test_helper.rb
188
- homepage: http://smartinez87.github.com/exception_notification
189
- licenses: []
394
+ homepage: https://smartinez87.github.io/exception_notification/
395
+ licenses:
396
+ - MIT
397
+ metadata: {}
190
398
  post_install_message:
191
399
  rdoc_options: []
192
400
  require_paths:
193
401
  - lib
194
402
  required_ruby_version: !ruby/object:Gem::Requirement
195
- none: false
196
403
  requirements:
197
- - - ! '>='
404
+ - - ">="
198
405
  - !ruby/object:Gem::Version
199
- version: '0'
406
+ version: '2.0'
200
407
  required_rubygems_version: !ruby/object:Gem::Requirement
201
- none: false
202
408
  requirements:
203
- - - ! '>='
409
+ - - ">="
204
410
  - !ruby/object:Gem::Version
205
- version: '0'
411
+ version: 1.8.11
206
412
  requirements: []
207
413
  rubyforge_project:
208
- rubygems_version: 1.8.23
414
+ rubygems_version: 2.5.1
209
415
  signing_key:
210
- specification_version: 3
416
+ specification_version: 4
211
417
  summary: Exception notification for Rails apps
212
418
  test_files:
213
- - test/background_exception_notification_test.rb
214
- - test/campfire_test.rb
215
- - test/dummy/.gitignore
216
- - test/dummy/Gemfile
217
- - test/dummy/Gemfile.lock
218
- - test/dummy/Rakefile
219
- - test/dummy/app/controllers/application_controller.rb
220
- - test/dummy/app/controllers/posts_controller.rb
221
- - test/dummy/app/helpers/application_helper.rb
222
- - test/dummy/app/helpers/posts_helper.rb
223
- - test/dummy/app/models/post.rb
224
- - test/dummy/app/views/exception_notifier/_new_bkg_section.html.erb
225
- - test/dummy/app/views/exception_notifier/_new_bkg_section.text.erb
226
- - test/dummy/app/views/exception_notifier/_new_section.html.erb
227
- - test/dummy/app/views/exception_notifier/_new_section.text.erb
228
- - test/dummy/app/views/layouts/application.html.erb
229
- - test/dummy/app/views/posts/_form.html.erb
230
- - test/dummy/app/views/posts/new.html.erb
231
- - test/dummy/app/views/posts/show.html.erb
232
- - test/dummy/config.ru
233
- - test/dummy/config/application.rb
234
- - test/dummy/config/boot.rb
235
- - test/dummy/config/database.yml
236
- - test/dummy/config/environment.rb
237
- - test/dummy/config/environments/development.rb
238
- - test/dummy/config/environments/production.rb
239
- - test/dummy/config/environments/test.rb
240
- - test/dummy/config/initializers/backtrace_silencers.rb
241
- - test/dummy/config/initializers/inflections.rb
242
- - test/dummy/config/initializers/mime_types.rb
243
- - test/dummy/config/initializers/secret_token.rb
244
- - test/dummy/config/initializers/session_store.rb
245
- - test/dummy/config/locales/en.yml
246
- - test/dummy/config/routes.rb
247
- - test/dummy/db/migrate/20110729022608_create_posts.rb
248
- - test/dummy/db/schema.rb
249
- - test/dummy/db/seeds.rb
250
- - test/dummy/lib/tasks/.gitkeep
251
- - test/dummy/public/404.html
252
- - test/dummy/public/422.html
253
- - test/dummy/public/500.html
254
- - test/dummy/public/favicon.ico
255
- - test/dummy/public/images/rails.png
256
- - test/dummy/public/index.html
257
- - test/dummy/public/javascripts/application.js
258
- - test/dummy/public/javascripts/controls.js
259
- - test/dummy/public/javascripts/dragdrop.js
260
- - test/dummy/public/javascripts/effects.js
261
- - test/dummy/public/javascripts/prototype.js
262
- - test/dummy/public/javascripts/rails.js
263
- - test/dummy/public/robots.txt
264
- - test/dummy/public/stylesheets/.gitkeep
265
- - test/dummy/public/stylesheets/scaffold.css
266
- - test/dummy/script/rails
267
- - test/dummy/test/fixtures/posts.yml
268
- - test/dummy/test/functional/posts_controller_test.rb
269
- - test/dummy/test/test_helper.rb
270
- - test/exception_notification_test.rb
419
+ - test/exception_notification/rack_test.rb
420
+ - test/exception_notification/resque_test.rb
421
+ - test/exception_notifier/campfire_notifier_test.rb
422
+ - test/exception_notifier/datadog_notifier_test.rb
423
+ - test/exception_notifier/email_notifier_test.rb
424
+ - test/exception_notifier/google_chat_notifier_test.rb
425
+ - test/exception_notifier/hipchat_notifier_test.rb
426
+ - test/exception_notifier/irc_notifier_test.rb
427
+ - test/exception_notifier/mattermost_notifier_test.rb
428
+ - test/exception_notifier/modules/error_grouping_test.rb
429
+ - test/exception_notifier/modules/formatter_test.rb
430
+ - test/exception_notifier/sidekiq_test.rb
431
+ - test/exception_notifier/slack_notifier_test.rb
432
+ - test/exception_notifier/sns_notifier_test.rb
433
+ - test/exception_notifier/teams_notifier_test.rb
434
+ - test/exception_notifier/webhook_notifier_test.rb
435
+ - test/exception_notifier_test.rb
436
+ - test/support/views/exception_notifier/_new_bkg_section.html.erb
437
+ - test/support/views/exception_notifier/_new_bkg_section.text.erb
438
+ - test/support/views/exception_notifier/_new_section.html.erb
439
+ - test/support/views/exception_notifier/_new_section.text.erb
271
440
  - test/test_helper.rb