barsoom_utils 0.2.0.45 → 0.2.0.48

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 928583224e193c6feb590cd8175ba0eb95f445439251f24f231b2fb7d9cc20e4
4
- data.tar.gz: dc3b2a87627744561bc1c6f8479f0dd463185424e1f5e7898673718dc03a7c81
3
+ metadata.gz: 8ce30232948e3d694c5441611dc2883cd22c0be7be570a33e85240a62f88359a
4
+ data.tar.gz: 47cfd119f77f6ac040a6ed45aa596f7a7034a06a256a2e4ad64dc03a1c272df4
5
5
  SHA512:
6
- metadata.gz: 7507059a7211736a7f74b71a6cc5f4c2f2bac99b0f41d112a1aae246a560e38c485c1125303ad7eed3b93bba291bf8e891ef56478202de700a2613b960d6128f
7
- data.tar.gz: 79b03e408a3acb62e3a58dadfcfa9c0628fd37f346b94e5e1190522606fe014f32ed2ba63df07a5a0dda1c2dbfc2f9360f15a5e4f027d7ed1ac1696f1720239d
6
+ metadata.gz: 8ba12a978bacd184b42b1103bb0b1f20ec4b51c257dc7a0c97271bf23ff3d197bfaac475afcdc9f768002e7ce33f847816b40696fb797da4a719b947873af194
7
+ data.tar.gz: df6ac5b5d68a16684f006f4b7cdabbf7824058c981be0f25b69a1b62533f1ce9d9b4d398180de69aba94225255b00f4bbd82294444f5c1a2ebab16a09402392b
@@ -0,0 +1,6 @@
1
+ version: 2
2
+ updates:
3
+ - package-ecosystem: "github-actions"
4
+ directory: "/"
5
+ schedule:
6
+ interval: "weekly"
@@ -14,11 +14,12 @@ jobs:
14
14
  strategy:
15
15
  matrix:
16
16
  ruby-version:
17
+ - "3.3"
17
18
  - "3.2"
18
19
  - "3.1"
19
20
  - "3.0"
20
21
  steps:
21
- - uses: actions/checkout@v3
22
+ - uses: actions/checkout@v4
22
23
  - name: Set up Ruby ${{ matrix.ruby-version }}
23
24
  uses: ruby/setup-ruby@v1
24
25
  with:
@@ -32,7 +33,7 @@ jobs:
32
33
  environment: Rubygems
33
34
  runs-on: ubuntu-latest
34
35
  steps:
35
- - uses: actions/checkout@v3
36
+ - uses: actions/checkout@v4
36
37
  - name: Set up Ruby
37
38
  uses: ruby/setup-ruby@v1
38
39
  with:
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.2.0.45
1
+ 0.2.0.48
@@ -37,14 +37,7 @@ module BarsoomUtils
37
37
 
38
38
  # Wrap this around code to add context when reporting errors.
39
39
  def self.run_with_context(context, &block)
40
- # The load/dump achieves a "deep dup" without the "deep dep" of Active Support 🥁
41
- old_context = Marshal.load(Marshal.dump(Honeybadger.get_context))
42
-
43
- Honeybadger.context(context)
44
- block.call
45
- ensure
46
- Honeybadger.context.clear!
47
- Honeybadger.context(old_context)
40
+ Honeybadger.context(context, &block)
48
41
  end
49
42
  end
50
43
  end
metadata CHANGED
@@ -1,16 +1,16 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: barsoom_utils
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0.45
4
+ version: 0.2.0.48
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tomas Skogberg
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-05-13 00:00:00.000000000 Z
11
+ date: 2024-12-13 00:00:00.000000000 Z
12
12
  dependencies: []
13
- description:
13
+ description:
14
14
  email:
15
15
  - tomas.skogberg@gmail.com
16
16
  executables: []
@@ -18,6 +18,7 @@ extensions: []
18
18
  extra_rdoc_files: []
19
19
  files:
20
20
  - ".exrc"
21
+ - ".github/dependabot.yml"
21
22
  - ".github/workflows/ci.yml"
22
23
  - ".gitignore"
23
24
  - ".rspec"
@@ -46,7 +47,7 @@ licenses:
46
47
  - MIT
47
48
  metadata:
48
49
  rubygems_mfa_required: 'true'
49
- post_install_message:
50
+ post_install_message:
50
51
  rdoc_options: []
51
52
  require_paths:
52
53
  - lib
@@ -62,7 +63,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
62
63
  version: '0'
63
64
  requirements: []
64
65
  rubygems_version: 3.2.33
65
- signing_key:
66
+ signing_key:
66
67
  specification_version: 4
67
68
  summary: Various helpful utils
68
69
  test_files: []