super_exception_notifier 3.0.4 → 3.0.5

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,5 +1,5 @@
1
1
  ---
2
- :patch: 4
2
+ :patch: 5
3
3
  :major: 3
4
4
  :build:
5
5
  :minor: 0
@@ -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.notify(exception, {:request => request})
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.notify(exception, {:request => request})
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.4"
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"]
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 3
7
7
  - 0
8
- - 4
9
- version: 3.0.4
8
+ - 5
9
+ version: 3.0.5
10
10
  platform: ruby
11
11
  authors:
12
12
  - Peter Boling