super_exception_notifier 3.0.4 → 3.0.5
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/VERSION.yml
CHANGED
@@ -169,7 +169,7 @@ module ExceptionNotification::ExceptionNotifiable
|
|
169
169
|
request ||= {:params => {}}
|
170
170
|
case self.class.exception_notifiable_pass_through
|
171
171
|
when :hoptoad then
|
172
|
-
HoptoadNotifier.
|
172
|
+
HoptoadNotifier.notify_or_ignore(exception, {:request => request})
|
173
173
|
puts "[PASS-IT-ON] HOPTOAD NOTIFIED" if verbose
|
174
174
|
else
|
175
175
|
puts "[PASS-IT-ON] NO" if verbose
|
@@ -97,7 +97,7 @@ module ExceptionNotification::Notifiable
|
|
97
97
|
request ||= {:params => {}}
|
98
98
|
case self.class.notifiable_pass_through
|
99
99
|
when :hoptoad then
|
100
|
-
HoptoadNotifier.
|
100
|
+
HoptoadNotifier.notify_or_ignore(exception, {:request => request})
|
101
101
|
puts "[PASS-IT-ON] HOPTOAD NOTIFIED" if verbose
|
102
102
|
else
|
103
103
|
puts "[PASS-IT-ON] NO" if verbose
|
@@ -5,7 +5,7 @@
|
|
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.5"
|
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"]
|