blinkist-airbrake-scrubber 4.3.0 → 4.4.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +5 -5
- data/blinkist-airbrake-scrubber.gemspec +1 -1
- data/lib/blinkist-airbrake-scrubber/version.rb +1 -1
- data/spec/specs/version_spec.rb +2 -2
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8a0e42d72d8acd027fad8147d1bd697eef7d41829c36f38148fbed6686d3c8f3
|
4
|
+
data.tar.gz: 798889fa81a817f1aa4e680169e45de6932c6e02d116c3c512524e50dd20567b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a421af5938ae7e9ba863dbc65a7d3b76dcb5f6a6d70c697552c025bf52d14efe65fdacf0da65d1a015cc35885c57bf5470e8ef78151534a98e7dd3305f6d340c
|
7
|
+
data.tar.gz: df109fae2a3eca07725bf09888ae428be62196897490c70fa84b7126047930836604839ee0d509f8d8c5abc12759c0b4b2a54cb4109fdbc987420242720dbd1c
|
data/README.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# Blinkist::AirbrakeScrubber
|
2
2
|
|
3
|
-
Blinkist::AirbrakeScrubber provides an Airbrake scrubbing service to remove various sensitive informations from the notifications, e.g. emails. It does
|
3
|
+
Blinkist::AirbrakeScrubber provides an Airbrake scrubbing service to remove various sensitive informations from the notifications, e.g. emails. It does _not_ replace Airbrake configuration, but provides some seamless functionality.
|
4
4
|
|
5
5
|
## Installation
|
6
6
|
|
@@ -38,16 +38,16 @@ Then, add the class to Blinkist::AirbrakeScrubber's SCRUBBERS list to have it ra
|
|
38
38
|
|
39
39
|
### Dependencies
|
40
40
|
|
41
|
-
This gem has dependency on airbrake (
|
41
|
+
This gem has dependency on airbrake (>= 9), it will automatically add it unless already bundled.
|
42
42
|
|
43
43
|
## Maintainers
|
44
44
|
|
45
|
-
|
45
|
+
- Blinkist (https://github.com/blinkist)
|
46
46
|
|
47
47
|
## Special thanks
|
48
48
|
|
49
|
-
|
49
|
+
- Tomek Przedmojski (https://github.com/tprzedmojski) for providing a brilliant way to use Module#prepend :-)
|
50
50
|
|
51
51
|
## License
|
52
52
|
|
53
|
-
Copyright
|
53
|
+
Copyright 2021 Blinks Labs GmbH. https://blinkist.com
|
@@ -15,7 +15,7 @@ Gem::Specification.new do |gem|
|
|
15
15
|
gem.license = "MIT"
|
16
16
|
|
17
17
|
# Airbrake
|
18
|
-
gem.add_dependency "airbrake", ">= 9", "<
|
18
|
+
gem.add_dependency "airbrake", ">= 9", "< 12"
|
19
19
|
|
20
20
|
gem.files = Dir["{lib,spec}/**/*", "README.md", "Rakefile", "Gemfile", "*.gemspec"]
|
21
21
|
gem.executables = gem.files.grep(%r{^bin/}).map { |f| File.basename(f) }
|
data/spec/specs/version_spec.rb
CHANGED
@@ -10,8 +10,8 @@ describe Blinkist::AirbrakeScrubber::VERSION do
|
|
10
10
|
expect(version.instance_of?(String)).to be true
|
11
11
|
end
|
12
12
|
|
13
|
-
it 'equals 4.
|
13
|
+
it 'equals 4.4.0 for auto-check purposes' do
|
14
14
|
version = Blinkist::AirbrakeScrubber::VERSION
|
15
|
-
expect(version).to eq '4.
|
15
|
+
expect(version).to eq '4.4.0'
|
16
16
|
end
|
17
17
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: blinkist-airbrake-scrubber
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 4.
|
4
|
+
version: 4.4.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Blinkist
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2021-06-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: airbrake
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '9'
|
20
20
|
- - "<"
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: '
|
22
|
+
version: '12'
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '9'
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: '
|
32
|
+
version: '12'
|
33
33
|
description: Email scrubbing configuration for Airbrake at Blinkist
|
34
34
|
email:
|
35
35
|
- operations@blinkist.com
|
@@ -76,7 +76,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
76
76
|
- !ruby/object:Gem::Version
|
77
77
|
version: '0'
|
78
78
|
requirements: []
|
79
|
-
rubygems_version: 3.
|
79
|
+
rubygems_version: 3.2.19
|
80
80
|
signing_key:
|
81
81
|
specification_version: 4
|
82
82
|
summary: With this, Airbrake will not leak emails via exception notifications
|