blinkist-airbrake-scrubber 4.2.0 → 5.0.1
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 +2 -2
- data/lib/blinkist-airbrake-scrubber/version.rb +1 -1
- data/spec/specs/version_spec.rb +3 -3
- metadata +11 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5e00390179f30ecf1484ef788e5a5c58fc8503b0512c6d44ec2d0d1ff77efcf5
|
4
|
+
data.tar.gz: 65129c1416eb648b646c3ffa54f556cf853126b98a3928f8b047da436e580ddb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ad86f4bcb214b4b88433c3bf1936d517e1e227ac8f1ef0bdc62414419a161132e5a0af4a4f3b6d9fbf5a138635a3d27c3abe41697e295070266f950464b13348
|
7
|
+
data.tar.gz: 4c6b9629982e728d8e95a4c4f242dc3789fe966764521f1ea3957b29c76084f53e91482314a77bcf00cd37e58262448f193dd7e1e4a38493df74a9d792d258e1
|
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
|
@@ -14,8 +14,8 @@ Gem::Specification.new do |gem|
|
|
14
14
|
gem.homepage = "https://github.com/blinkist/airbrake-scrubber"
|
15
15
|
gem.license = "MIT"
|
16
16
|
|
17
|
-
#
|
18
|
-
gem.add_dependency "airbrake", "
|
17
|
+
# https://github.com/airbrake/airbrake
|
18
|
+
gem.add_dependency "airbrake", ">= 9", "< 14"
|
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
@@ -7,11 +7,11 @@ describe Blinkist::AirbrakeScrubber::VERSION do
|
|
7
7
|
it 'provides the current version' do
|
8
8
|
version = Blinkist::AirbrakeScrubber::VERSION
|
9
9
|
expect(version).to_not be nil
|
10
|
-
expect(version
|
10
|
+
expect(version).to be_a String
|
11
11
|
end
|
12
12
|
|
13
|
-
it 'equals
|
13
|
+
it 'equals 5.0.1 for auto-check purposes' do
|
14
14
|
version = Blinkist::AirbrakeScrubber::VERSION
|
15
|
-
expect(version).to eq '
|
15
|
+
expect(version).to eq '5.0.1'
|
16
16
|
end
|
17
17
|
end
|
metadata
CHANGED
@@ -1,29 +1,35 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: blinkist-airbrake-scrubber
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 5.0.1
|
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: 2022-01-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: airbrake
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- - "
|
17
|
+
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
19
|
version: '9'
|
20
|
+
- - "<"
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: '14'
|
20
23
|
type: :runtime
|
21
24
|
prerelease: false
|
22
25
|
version_requirements: !ruby/object:Gem::Requirement
|
23
26
|
requirements:
|
24
|
-
- - "
|
27
|
+
- - ">="
|
25
28
|
- !ruby/object:Gem::Version
|
26
29
|
version: '9'
|
30
|
+
- - "<"
|
31
|
+
- !ruby/object:Gem::Version
|
32
|
+
version: '14'
|
27
33
|
description: Email scrubbing configuration for Airbrake at Blinkist
|
28
34
|
email:
|
29
35
|
- operations@blinkist.com
|
@@ -70,7 +76,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
70
76
|
- !ruby/object:Gem::Version
|
71
77
|
version: '0'
|
72
78
|
requirements: []
|
73
|
-
rubygems_version: 3.
|
79
|
+
rubygems_version: 3.2.32
|
74
80
|
signing_key:
|
75
81
|
specification_version: 4
|
76
82
|
summary: With this, Airbrake will not leak emails via exception notifications
|