super_exception_notifier 3.0.11 → 3.0.12

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.
data/CHANGELOG.txt CHANGED
@@ -1,3 +1,6 @@
1
+ 2010-06-25 v3.0.12
2
+ - Improved clarity of readme.
3
+
1
4
  2010-06-18 v3.0.11
2
5
  - Added correct view to Rakefile to include with build. (Jeweler had missed it because it was the wrong filename)
3
6
 
@@ -9,7 +12,7 @@
9
12
 
10
13
  2010 - Version 3 refactoring
11
14
  - Realigned structure of gem to match the standard rails branch
12
- - Added Hoptoad Notification Integration (standard Hoptoad Gem)
15
+ - Added Hoptoad Notification Integration (requires standard Hoptoad Gem)
13
16
 
14
17
  2009-01-28 v2.0.8
15
18
  - improve readme
data/README CHANGED
@@ -1,10 +1,9 @@
1
1
  = Super Exception Notifier
2
2
 
3
- The Super Exception Notifier (SEN) gem provides a mailer object and a default set of
4
- templates for sending email notifications when errors occur in a Rails
5
- application, as well as a default set of error page templates to render
6
- based on the status code assigned to an error. The gem is configurable,
7
- allowing programmers to customize (settings are per environment or per class):
3
+ The Super Exception Notifier (SEN) gem provides a mailer object and a default set of templates
4
+ for sending email notifications when errors occur in a Rails application, as well as a default
5
+ set of error page templates to render based on the status code assigned to an error. The gem
6
+ is configurable, allowing programmers to customize (settings are per environment or per class):
8
7
 
9
8
  * the sender address of the email
10
9
  * the recipient addresses
@@ -26,24 +25,25 @@ allowing programmers to customize (settings are per environment or per class):
26
25
  notifiable { method }
27
26
  * Can notify of errors in Rake tasks using 'NotifiedTask.new' instead of 'task' when writing tasks
28
27
  * Works with Hoptoad Notifier, so you can notify via SEN and/or Hoptoad for any particular errors.
28
+ * Tested with Rails 2.3.x, should work with rails 2.2.x, and might work with rails 3.
29
+
29
30
  The email includes information about the current request, session, and
30
31
  environment, and also gives a backtrace of the exception.
31
32
 
32
- This gem is based on the wonderful exception_notification plugin
33
- created by Jamis Buck. I have modified it extensively and merged many of the improvements from
34
- a dozen or so other forks. It remains a (mostly) drop in replacement with greatly extended
35
- functionality and customization options. I keep it up to date with the work on the core team's
33
+ This gem is based on the wonderful exception_notification plugin created by Jamis Buck. I have
34
+ modified it extensively and merged many of the improvements from a dozen or so other forks.
35
+ It remains a (mostly) drop in replacement with greatly extended functionality and customization
36
+ options. I keep it up to date with the work on the core team's
36
37
  branch.
37
38
 
38
39
  The venerable original is here:
39
40
 
40
41
  http://github.com/rails/exception_notification
41
42
 
42
- The current version of this gem is a git fork of the original and
43
- has been updated to include the latest improvements from the original,
44
- including compatibility with Rails 2.1, 2.2, 2.3, and perhaps 3.0, as well as many improvements from
45
- the other forks on github. I merge them in when I have time, and when the
46
- changes fit nicely with the enhancements I have already made.
43
+ The current version of this gem is a git fork of the original and has been updated to include
44
+ the latest improvements from the original, and many improvements from the other forks on github.
45
+ I merge them in when I have time, and when the changes fit nicely with the enhancements I have
46
+ already made.
47
47
 
48
48
  This fork of Exception Notifier is in production use on several large websites (top 5000).
49
49
 
data/VERSION.yml CHANGED
@@ -2,4 +2,4 @@
2
2
  :major: 3
3
3
  :build:
4
4
  :minor: 0
5
- :patch: 11
5
+ :patch: 12
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{super_exception_notifier}
8
- s.version = "3.0.11"
8
+ s.version = "3.0.12"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Peter Boling", "Scott Windsor", "Ismael Celis", "Jacques Crocker", "Jamis Buck"]
12
- s.date = %q{2010-06-18}
12
+ s.date = %q{2010-06-25}
13
13
  s.description = %q{Allows customization of:
14
14
  * Specify which level of notification you would like with an array of optional styles of notification (email, webhooks)
15
15
  * the sender address of the email
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: super_exception_notifier
3
3
  version: !ruby/object:Gem::Version
4
- hash: 17
4
+ hash: 31
5
5
  prerelease: false
6
6
  segments:
7
7
  - 3
8
8
  - 0
9
- - 11
10
- version: 3.0.11
9
+ - 12
10
+ version: 3.0.12
11
11
  platform: ruby
12
12
  authors:
13
13
  - Peter Boling
@@ -19,7 +19,7 @@ autorequire:
19
19
  bindir: bin
20
20
  cert_chain: []
21
21
 
22
- date: 2010-06-18 00:00:00 -04:00
22
+ date: 2010-06-25 00:00:00 -04:00
23
23
  default_executable:
24
24
  dependencies:
25
25
  - !ruby/object:Gem::Dependency