activejob-traceable 0.3.3 → 0.3.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/activejob/traceable/traceable.rb +3 -2
- data/lib/activejob/traceable/version.rb +1 -1
- metadata +7 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b54c11e7a22889140d06573ff007ba010390e2b63a76acf3e89bec9c5925fd0f
|
4
|
+
data.tar.gz: 2e7e17cd4c3b4575b26bdf648f9f8690879442255992ce803941ea6acc665186
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9d8dc30daa8d03d34e0647ae4afd9c80a22b344d719a3b0414356e71d89ae4e198f16c7d93f9186eb8c2d0796e92e798ea2c9088fee52e9c868729a040bc2222
|
7
|
+
data.tar.gz: dafe29b1bfe58ba46e3aa9944aec3b047727a19018567a302c681e8c1d5c304d63a4c283e6e9e420c548a8f06dac3ff8aeb7faeeb0fd53a04b94c3d97f99959c
|
@@ -7,11 +7,12 @@ module ActiveJob
|
|
7
7
|
included do
|
8
8
|
attr_accessor :tracing_info
|
9
9
|
|
10
|
-
def initialize(*
|
11
|
-
super(*
|
10
|
+
def initialize(*args)
|
11
|
+
super(*args)
|
12
12
|
|
13
13
|
@tracing_info = Traceable.tracing_info_getter.call.deep_stringify_keys
|
14
14
|
end
|
15
|
+
ruby2_keywords :initialize if respond_to?(:ruby2_keywords, true)
|
15
16
|
|
16
17
|
def serialize
|
17
18
|
super.merge!('tracing_info' => tracing_info)
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: activejob-traceable
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Qonto team
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2021-05-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activejob
|
@@ -94,7 +94,7 @@ dependencies:
|
|
94
94
|
- - "~>"
|
95
95
|
- !ruby/object:Gem::Version
|
96
96
|
version: '3.8'
|
97
|
-
description:
|
97
|
+
description:
|
98
98
|
email:
|
99
99
|
- backend@qonto.eu
|
100
100
|
executables: []
|
@@ -117,7 +117,7 @@ homepage: https://github.com/qonto/activejob-traceable
|
|
117
117
|
licenses:
|
118
118
|
- MIT
|
119
119
|
metadata: {}
|
120
|
-
post_install_message:
|
120
|
+
post_install_message:
|
121
121
|
rdoc_options: []
|
122
122
|
require_paths:
|
123
123
|
- lib
|
@@ -132,8 +132,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
132
132
|
- !ruby/object:Gem::Version
|
133
133
|
version: '0'
|
134
134
|
requirements: []
|
135
|
-
rubygems_version: 3.
|
136
|
-
signing_key:
|
135
|
+
rubygems_version: 3.1.4
|
136
|
+
signing_key:
|
137
137
|
specification_version: 4
|
138
138
|
summary: Patches ActiveJob to add trace_id attribute.
|
139
139
|
test_files: []
|