jcw 0.2.0 → 0.2.1
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/.github/workflows/test.yml +1 -4
- data/.rubocop.yml +1 -1
- data/Gemfile.lock +6 -14
- data/README.md +3 -3
- data/jcw.gemspec +1 -1
- data/lib/jcw/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: bc773311ab088e7276e7fb32a3f4482fe573b1395504aa2a3f65976c2554ee5d
|
|
4
|
+
data.tar.gz: e55467a99786575009b8bb0bd87204c0349517913db982e3367235ef11b5d6ca
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1dfba6de347759d9dbd0073f7f258b7305a2257a340d26dc2248df54cdaaba7319583b18a281b688356f1fbce4ccd0144cffa7656919803418127d036af829f0
|
|
7
|
+
data.tar.gz: a60b7db65670d6c171acda171c77cc4de936959417d484fd04678d82ed94ed638c59dafca5bc0336d27007d894af7a6ec8cc2057d28f865472520629f7d71782
|
data/.github/workflows/test.yml
CHANGED
|
@@ -41,11 +41,8 @@ jobs:
|
|
|
41
41
|
strategy:
|
|
42
42
|
fail-fast: false
|
|
43
43
|
matrix:
|
|
44
|
-
ruby: [2.7, 2.7.4, 3.0.0, 3.0.1, 3.0.2]
|
|
44
|
+
ruby: [2.6, 2.7, 2.7.4, 3.0.0, 3.0.1, 3.0.2]
|
|
45
45
|
experimental: [false]
|
|
46
|
-
include:
|
|
47
|
-
- ruby: head
|
|
48
|
-
experimental: true
|
|
49
46
|
|
|
50
47
|
steps:
|
|
51
48
|
- uses: actions/checkout@v2
|
data/.rubocop.yml
CHANGED
data/Gemfile.lock
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
jcw (0.2.
|
|
4
|
+
jcw (0.2.1)
|
|
5
5
|
activesupport (>= 5.0)
|
|
6
6
|
gruf (~> 2.10)
|
|
7
7
|
httprb-opentracing (~> 0.4.0)
|
|
@@ -50,21 +50,13 @@ GEM
|
|
|
50
50
|
ffi-compiler (1.0.1)
|
|
51
51
|
ffi (>= 1.0.0)
|
|
52
52
|
rake
|
|
53
|
-
google-protobuf (3.
|
|
54
|
-
|
|
55
|
-
google-protobuf (3.18.1-x86_64-linux)
|
|
56
|
-
googleapis-common-protos-types (1.2.0)
|
|
53
|
+
google-protobuf (3.19.1)
|
|
54
|
+
googleapis-common-protos-types (1.3.0)
|
|
57
55
|
google-protobuf (~> 3.14)
|
|
58
|
-
grpc (1.41.
|
|
56
|
+
grpc (1.41.1)
|
|
59
57
|
google-protobuf (~> 3.17)
|
|
60
58
|
googleapis-common-protos-types (~> 1.0)
|
|
61
|
-
grpc (1.41.
|
|
62
|
-
google-protobuf (~> 3.17)
|
|
63
|
-
googleapis-common-protos-types (~> 1.0)
|
|
64
|
-
grpc (1.41.0-x86_64-linux)
|
|
65
|
-
google-protobuf (~> 3.17)
|
|
66
|
-
googleapis-common-protos-types (~> 1.0)
|
|
67
|
-
grpc-tools (1.41.0)
|
|
59
|
+
grpc-tools (1.41.1)
|
|
68
60
|
gruf (2.10.0)
|
|
69
61
|
activesupport (> 4)
|
|
70
62
|
concurrent-ruby (> 1)
|
|
@@ -91,7 +83,7 @@ GEM
|
|
|
91
83
|
jaeger-client (1.1.0)
|
|
92
84
|
opentracing (~> 0.3)
|
|
93
85
|
thrift
|
|
94
|
-
json (2.
|
|
86
|
+
json (2.6.1)
|
|
95
87
|
llhttp-ffi (0.3.1)
|
|
96
88
|
ffi-compiler (~> 1.0)
|
|
97
89
|
rake (~> 13.0)
|
data/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# JCW ·
|
|
1
|
+
# JCW · <a target="_blank" href="https://github.com/Cado-Labs"><img src="https://github.com/Cado-Labs/cado-labs-logos/raw/main/cado_labs_badge.svg" alt="Supported by Cado Labs" style="max-width: 100%; height: 20px"></a> · [](https://coveralls.io/github/Cado-Labs/jcw?branch=gem-without-zeitwerk) · [](https://badge.fury.io/rb/jcw)
|
|
2
2
|
|
|
3
3
|
Simple wrapper for the gem "jaeger-client" with simpler customization.
|
|
4
4
|
|
|
@@ -6,7 +6,7 @@ Simple wrapper for the gem "jaeger-client" with simpler customization.
|
|
|
6
6
|
|
|
7
7
|
<p>
|
|
8
8
|
<a href="https://github.com/Cado-Labs">
|
|
9
|
-
<img src="https://github.com/Cado-Labs/cado-labs-
|
|
9
|
+
<img src="https://github.com/Cado-Labs/cado-labs-resources/blob/main/cado_labs_supporting_rounded.svg" alt="Supported by Cado Labs" />
|
|
10
10
|
</a>
|
|
11
11
|
</p>
|
|
12
12
|
|
|
@@ -132,7 +132,7 @@ Released under MIT License.
|
|
|
132
132
|
## Supporting
|
|
133
133
|
|
|
134
134
|
<a href="https://github.com/Cado-Labs">
|
|
135
|
-
<img src="https://github.com/Cado-Labs/cado-labs-
|
|
135
|
+
<img src="https://github.com/Cado-Labs/cado-labs-resources/blob/main/cado_labs_supporting_rounded.svg" alt="Supported by Cado Labs" />
|
|
136
136
|
</a>
|
|
137
137
|
|
|
138
138
|
## Authors
|
data/jcw.gemspec
CHANGED
|
@@ -12,7 +12,7 @@ Gem::Specification.new do |spec|
|
|
|
12
12
|
spec.description = "Wrapper for the gem 'jaeger-client' with simpler customization."
|
|
13
13
|
spec.homepage = "https://github.com/Cado-Labs/jcw"
|
|
14
14
|
spec.license = "MIT"
|
|
15
|
-
spec.required_ruby_version = Gem::Requirement.new(">= 2.
|
|
15
|
+
spec.required_ruby_version = Gem::Requirement.new(">= 2.6.0")
|
|
16
16
|
|
|
17
17
|
spec.files = Dir.chdir(File.expand_path(__dir__)) do
|
|
18
18
|
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
data/lib/jcw/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jcw
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Alexander Starovojtov
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-
|
|
11
|
+
date: 2021-11-18 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activesupport
|
|
@@ -279,7 +279,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
279
279
|
requirements:
|
|
280
280
|
- - ">="
|
|
281
281
|
- !ruby/object:Gem::Version
|
|
282
|
-
version: 2.
|
|
282
|
+
version: 2.6.0
|
|
283
283
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
284
284
|
requirements:
|
|
285
285
|
- - ">="
|