super_exception_notifier 3.0.12 → 3.0.13
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG.txt +3 -0
- data/README +1 -1
- data/VERSION.yml +1 -1
- data/super_exception_notifier.gemspec +6 -4
- metadata +7 -5
data/CHANGELOG.txt
CHANGED
data/README
CHANGED
@@ -25,7 +25,7 @@ is configurable, allowing programmers to customize (settings are per environment
|
|
25
25
|
notifiable { method }
|
26
26
|
* Can notify of errors in Rake tasks using 'NotifiedTask.new' instead of 'task' when writing tasks
|
27
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
|
28
|
+
* Tested with Rails 2.3.x, should work with Rails 2.2.x, and is apparently not yet compatible with Rails 3.
|
29
29
|
|
30
30
|
The email includes information about the current request, session, and
|
31
31
|
environment, and also gives a backtrace of the exception.
|
data/VERSION.yml
CHANGED
@@ -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.
|
8
|
+
s.version = "3.0.13"
|
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-
|
12
|
+
s.date = %q{2010-06-30}
|
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
|
@@ -28,7 +28,9 @@ Gem::Specification.new do |s|
|
|
28
28
|
* Hooks into `git blame` output so you can get an idea of who (may) have introduced the bug
|
29
29
|
* Hooks into other website services (e.g. you can send exceptions to to Switchub.com)
|
30
30
|
* Can notify of errors occurring in any class/method using notifiable { method }
|
31
|
-
* Can notify of errors in Rake tasks using NotifiedTask.new instead of task
|
31
|
+
* Can notify of errors in Rake tasks using NotifiedTask.new instead of task
|
32
|
+
* Works with Hoptoad Notifier, so you can notify via SEN and/or Hoptoad for any particular errors.
|
33
|
+
* Tested with Rails 2.3.x, should work with rails 2.2.x, and is apparently not yet compatible with rails 3.}
|
32
34
|
s.email = %q{peter.boling@gmail.com}
|
33
35
|
s.extra_rdoc_files = [
|
34
36
|
"README"
|
@@ -77,7 +79,7 @@ Gem::Specification.new do |s|
|
|
77
79
|
"rails/init.rb",
|
78
80
|
"super_exception_notifier.gemspec"
|
79
81
|
]
|
80
|
-
s.homepage = %q{http://github.com/pboling/
|
82
|
+
s.homepage = %q{http://github.com/pboling/exception_notification}
|
81
83
|
s.rdoc_options = ["--charset=UTF-8"]
|
82
84
|
s.require_paths = ["lib"]
|
83
85
|
s.rubygems_version = %q{1.3.7}
|
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:
|
4
|
+
hash: 29
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 3
|
8
8
|
- 0
|
9
|
-
-
|
10
|
-
version: 3.0.
|
9
|
+
- 13
|
10
|
+
version: 3.0.13
|
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-
|
22
|
+
date: 2010-06-30 00:00:00 -04:00
|
23
23
|
default_executable:
|
24
24
|
dependencies:
|
25
25
|
- !ruby/object:Gem::Dependency
|
@@ -70,6 +70,8 @@ description: |-
|
|
70
70
|
* Hooks into other website services (e.g. you can send exceptions to to Switchub.com)
|
71
71
|
* Can notify of errors occurring in any class/method using notifiable { method }
|
72
72
|
* Can notify of errors in Rake tasks using NotifiedTask.new instead of task
|
73
|
+
* Works with Hoptoad Notifier, so you can notify via SEN and/or Hoptoad for any particular errors.
|
74
|
+
* Tested with Rails 2.3.x, should work with rails 2.2.x, and is apparently not yet compatible with rails 3.
|
73
75
|
email: peter.boling@gmail.com
|
74
76
|
executables: []
|
75
77
|
|
@@ -128,7 +130,7 @@ files:
|
|
128
130
|
- test/notifiable_test.rb
|
129
131
|
- test/test_helper.rb
|
130
132
|
has_rdoc: true
|
131
|
-
homepage: http://github.com/pboling/
|
133
|
+
homepage: http://github.com/pboling/exception_notification
|
132
134
|
licenses: []
|
133
135
|
|
134
136
|
post_install_message:
|