exception_notification_more_info 1.0.0

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