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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f625fa6d2a35ddf3266e154bdda5675519d7c6f2cf27fffb94ae41be574fd18e
4
- data.tar.gz: dc707a1a8d56c3ceff4e5f788c9604a617d1637d6799edf5259c99cb1d996366
3
+ metadata.gz: 5e00390179f30ecf1484ef788e5a5c58fc8503b0512c6d44ec2d0d1ff77efcf5
4
+ data.tar.gz: 65129c1416eb648b646c3ffa54f556cf853126b98a3928f8b047da436e580ddb
5
5
  SHA512:
6
- metadata.gz: 837fb1c0ee1441f57aceb2a4c68948ff10f90fa0f14a8eff48c1f504e901698d2d2ef80b742389fec15b4122efc0c0a823d2ba3c0dd94a7e05f1693c20c70f18
7
- data.tar.gz: 58935a13d16d7ba82ca40bbc40f3e187b5a226e0216b09d2ff970b5b447952f55f8c87ea1530a6c57197cfcc5644c8394f553eaca7b47f2f5ea8aedc445b7b77
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 *not* replace Airbrake configuration, but provides some seamless functionality.
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 (~> 7), it will automatically add it unless already bundled.
41
+ This gem has dependency on airbrake (>= 9), it will automatically add it unless already bundled.
42
42
 
43
43
  ## Maintainers
44
44
 
45
- * Blinkist (https://github.com/blinkist)
45
+ - Blinkist (https://github.com/blinkist)
46
46
 
47
47
  ## Special thanks
48
48
 
49
- * Tomek Przedmojski (https://github.com/tprzedmojski) for providing a brilliant way to use Module#prepend :-)
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 2018 Blinks Labs GmbH. http://blinkist.com
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
- # Airbrake
18
- gem.add_dependency "airbrake", "~> 9"
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) }
@@ -3,7 +3,7 @@
3
3
  module Blinkist
4
4
  module AirbrakeScrubber
5
5
 
6
- VERSION = "4.2.0"
6
+ VERSION = "5.0.1"
7
7
 
8
8
  end
9
9
  end
@@ -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.instance_of?(String)).to be true
10
+ expect(version).to be_a String
11
11
  end
12
12
 
13
- it 'equals 4.2.0 for auto-check purposes' do
13
+ it 'equals 5.0.1 for auto-check purposes' do
14
14
  version = Blinkist::AirbrakeScrubber::VERSION
15
- expect(version).to eq '4.2.0'
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.2.0
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: 2020-05-25 00:00:00.000000000 Z
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.0.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