super_exception_notifier 3.0.7 → 3.0.8

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
@@ -2,4 +2,4 @@
2
2
  :major: 3
3
3
  :build:
4
4
  :minor: 0
5
- :patch: 7
5
+ :patch: 8
@@ -43,7 +43,7 @@ module ExceptionNotification::ExceptionNotifiable
43
43
  base.exception_notifiable_notification_level = [:render, :email, :web_hooks]
44
44
  # Since there is no concept of locality from a request here allow user to explicitly define which env's are noisy (send notifications)
45
45
  base.cattr_accessor :exception_notifiable_noisy_environments
46
- base.exception_notifiable_noisy_environments = [:production]
46
+ base.exception_notifiable_noisy_environments = ["production"]
47
47
 
48
48
  base.cattr_accessor :exception_notifiable_pass_through
49
49
  base.exception_notifiable_pass_through = false
@@ -16,7 +16,7 @@ module ExceptionNotification::Notifiable
16
16
 
17
17
  # Since there is no concept of locality from a request here allow user to explicitly define which env's are noisy (send notifications)
18
18
  base.cattr_accessor :notifiable_noisy_environments
19
- base.notifiable_noisy_environments = [:production]
19
+ base.notifiable_noisy_environments = ["production"]
20
20
 
21
21
  base.cattr_accessor :notifiable_pass_through
22
22
  base.notifiable_pass_through = false
@@ -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.7"
8
+ s.version = "3.0.8"
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
@@ -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: 9
4
+ hash: 23
5
5
  prerelease: false
6
6
  segments:
7
7
  - 3
8
8
  - 0
9
- - 7
10
- version: 3.0.7
9
+ - 8
10
+ version: 3.0.8
11
11
  platform: ruby
12
12
  authors:
13
13
  - Peter Boling