barsoom_utils 0.2.0.47 → 0.2.0.49
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 +4 -4
- data/VERSION +1 -1
- data/lib/barsoom_utils/exception_notifier.rb +1 -8
- data/shared_rubocop.yml +1 -0
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f8a77945eaedef886ca5f3cdffe908b23efaac7d9834ab921089a9d40bcd400c
|
4
|
+
data.tar.gz: 86e878a7c9d47bf7a8b3886a9a4044837dbfb572792d636d07b08dafd7b5bf8f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 96aa132b3f7380aa4f1a102ce16fb357bc12b7f89716f076ca89ff9cd31a2aa49ab28267cce1d45f480decfb8c6682b11dd2dae0587d989cdf8eea9ca630e401
|
7
|
+
data.tar.gz: b9f96e36c41b34dcfe4ba748cb149244d52ca6666e18edb0aa3611b26d6bf734c20d732548b265ef25251d6b28356a8cf01d52aeb4989d6e3beba2e61430ca9e
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.2.0.
|
1
|
+
0.2.0.49
|
@@ -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
|
-
|
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
|
data/shared_rubocop.yml
CHANGED
@@ -286,6 +286,7 @@ Layout/ClassStructure:
|
|
286
286
|
Style/HashSyntax:
|
287
287
|
Enabled: true
|
288
288
|
EnforcedStyle: ruby19
|
289
|
+
EnforcedShorthandSyntax: either_consistent # https://docs.rubocop.org/rubocop/cops_style.html#enforcedshorthandsyntax_-either_consistent-stylehashsyntax
|
289
290
|
|
290
291
|
# https://docs.rubocop.org/rubocop/cops_gemspec.html#gemspecduplicatedassignment
|
291
292
|
Gemspec/DuplicatedAssignment:
|
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.
|
4
|
+
version: 0.2.0.49
|
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:
|
11
|
+
date: 2025-03-31 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
|
-
description:
|
13
|
+
description:
|
14
14
|
email:
|
15
15
|
- tomas.skogberg@gmail.com
|
16
16
|
executables: []
|
@@ -47,7 +47,7 @@ licenses:
|
|
47
47
|
- MIT
|
48
48
|
metadata:
|
49
49
|
rubygems_mfa_required: 'true'
|
50
|
-
post_install_message:
|
50
|
+
post_install_message:
|
51
51
|
rdoc_options: []
|
52
52
|
require_paths:
|
53
53
|
- lib
|
@@ -63,7 +63,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
63
63
|
version: '0'
|
64
64
|
requirements: []
|
65
65
|
rubygems_version: 3.2.33
|
66
|
-
signing_key:
|
66
|
+
signing_key:
|
67
67
|
specification_version: 4
|
68
68
|
summary: Various helpful utils
|
69
69
|
test_files: []
|