airbrake 5.2.0 → 5.2.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/airbrake/version.rb +1 -1
- data/lib/generators/airbrake_initializer.rb.erb +7 -5
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1486b2b695edb4e863a7900b1f7dc436bb2355ae
|
4
|
+
data.tar.gz: 4064c664bca7af580cd2c8a0417ef155087882e8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 083999fbbdb4efb0038dac888b0615d83a5558736421fa6780b4d78346143eaa4bcaf6c505317c1da81cde1f8ff3291c4fa356c93e8725e6d3b94c0edb6e2015
|
7
|
+
data.tar.gz: 9ff19c311a916a3a867360912a09ca62b3293c8f5a5be7ad11d291f47e278a162a63a911dad5b2471a49af7e20013830325e4e15959c29af2aedda7849d20a50
|
data/lib/airbrake/version.rb
CHANGED
@@ -50,12 +50,14 @@ Airbrake.configure do |c|
|
|
50
50
|
# NOTE: This option *does not* work if you don't set the 'environment' option.
|
51
51
|
# https://github.com/airbrake/airbrake-ruby#ignore_environments
|
52
52
|
c.ignore_environments = %w(test)
|
53
|
-
end
|
54
53
|
|
55
|
-
|
56
|
-
#
|
57
|
-
#
|
58
|
-
|
54
|
+
|
55
|
+
# A list of parameters that should be filtered out of what is sent to
|
56
|
+
# Airbrake. By default, all "password" attributes will have their contents
|
57
|
+
# replaced.
|
58
|
+
# https://github.com/airbrake/airbrake-ruby#blacklist_keys
|
59
|
+
c.blacklist_keys = [/password/i]
|
60
|
+
end
|
59
61
|
|
60
62
|
# If Airbrake doesn't send any expected exceptions, we suggest to uncomment the
|
61
63
|
# line below. It might simplify debugging of background Airbrake workers, which
|