jcw 0.1.0 → 0.1.2
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/Gemfile.lock +1 -1
- data/README.md +1 -1
- data/lib/jcw/init.rb +1 -1
- data/lib/jcw/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e8fc0e3e0c34e18f281b228fc45782f30109ba9125c6730ff170982f9c683e5c
|
|
4
|
+
data.tar.gz: 4ac948f3822db7891f59919616302077757c6ef0a71f6e2a4a09c06ced413241
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9e75ea2fb98b023b70b2cf7b84074a9ec4a6bef9f7a901d48da09ac6a9f1b63c4b9b6d9838f83658729e602c27bcf739fa869437d95022bd0b92060f92cf3239
|
|
7
|
+
data.tar.gz: 5b5c8c1248f89e9fc28a82b3dab536da66115c34e03254cbb3822e5123076998c4b9674969343766f9b51a6ad14bcf78d99fa6620a353af549f4536968d7a3d7
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# JCW · [](https://github.com/Cado-Labs/) · [](https://coveralls.io/github/Cado-Labs/jcw?branch=gem-without-zeitwerk)
|
|
1
|
+
# JCW · [](https://github.com/Cado-Labs/) · [](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
|
|
data/lib/jcw/init.rb
CHANGED
|
@@ -14,7 +14,7 @@ module JCW
|
|
|
14
14
|
def init_jaeger_client
|
|
15
15
|
return unless config.enabled?
|
|
16
16
|
|
|
17
|
-
reporter = config.connection[:protocol] == :tcp ? tcp_reporter : nil
|
|
17
|
+
reporter = config.connection[:protocol].to_sym == :tcp ? tcp_reporter : nil
|
|
18
18
|
|
|
19
19
|
OpenTracing.global_tracer = Jaeger::Client.build(
|
|
20
20
|
service_name: config.service_name,
|
data/lib/jcw/version.rb
CHANGED