bbk-utils 1.1.1.289204 → 1.1.1.289210
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +3 -19
- data/lib/bbk/utils/log_formatter.rb +2 -2
- 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: 5fe92af8cfdb0752b6a3add89c3d5b3290d92751ac9071642f0860b66aaf10ff
|
4
|
+
data.tar.gz: 247b9b67477b420269fb6e0d6ac1245baf1aa348eb4b581cb266e30eb7924ecb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: eb0cb2c9e843742af8ae9959ee7d5c5b807b7d7814506026ce0b99908cdd921f3fd2fe19fb4179502e913e12a9dcc13b8f60cedaa4b57756dac930e8539a3570
|
7
|
+
data.tar.gz: c3f0b2c4dc4215d1f86c0a5c2e6b39d2d94948fbd2f08546f47826cc52218f928ee8e4dad370e84faff93a5699bd76919e9ce6c2d32ec6ecd7bab094509a0892
|
data/Gemfile.lock
CHANGED
@@ -1,25 +1,17 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
bbk-utils (1.1.1
|
4
|
+
bbk-utils (1.1.1)
|
5
5
|
activesupport (>= 7.0)
|
6
6
|
russian
|
7
7
|
|
8
8
|
GEM
|
9
9
|
remote: https://rubygems.org/
|
10
10
|
specs:
|
11
|
-
activesupport (7.
|
12
|
-
base64
|
13
|
-
benchmark (>= 0.3)
|
14
|
-
bigdecimal
|
11
|
+
activesupport (7.0.5)
|
15
12
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
16
|
-
connection_pool (>= 2.2.5)
|
17
|
-
drb
|
18
13
|
i18n (>= 1.6, < 2)
|
19
|
-
logger (>= 1.4.2)
|
20
14
|
minitest (>= 5.1)
|
21
|
-
mutex_m
|
22
|
-
securerandom (>= 0.3)
|
23
15
|
tzinfo (~> 2.0)
|
24
16
|
addressable (2.8.0)
|
25
17
|
public_suffix (>= 2.0.2, < 5.0)
|
@@ -29,19 +21,14 @@ GEM
|
|
29
21
|
descendants_tracker (~> 0.0.4)
|
30
22
|
ice_nine (~> 0.11.0)
|
31
23
|
thread_safe (~> 0.3, >= 0.3.1)
|
32
|
-
base64 (0.2.0)
|
33
|
-
benchmark (0.4.0)
|
34
|
-
bigdecimal (3.1.9)
|
35
24
|
byebug (11.1.3)
|
36
25
|
coercible (1.0.0)
|
37
26
|
descendants_tracker (~> 0.0.1)
|
38
27
|
concurrent-ruby (1.2.2)
|
39
|
-
connection_pool (2.5.0)
|
40
28
|
descendants_tracker (0.0.4)
|
41
29
|
thread_safe (~> 0.3, >= 0.3.1)
|
42
30
|
diff-lcs (1.4.4)
|
43
31
|
docile (1.4.0)
|
44
|
-
drb (2.2.1)
|
45
32
|
equalizer (0.0.11)
|
46
33
|
erubis (2.7.0)
|
47
34
|
faker (2.19.0)
|
@@ -61,9 +48,7 @@ GEM
|
|
61
48
|
kwalify (0.7.2)
|
62
49
|
launchy (2.5.0)
|
63
50
|
addressable (~> 2.7)
|
64
|
-
|
65
|
-
minitest (5.25.4)
|
66
|
-
mutex_m (0.3.0)
|
51
|
+
minitest (5.18.0)
|
67
52
|
parallel (1.21.0)
|
68
53
|
parser (3.0.3.1)
|
69
54
|
ast (~> 2.4.1)
|
@@ -121,7 +106,6 @@ GEM
|
|
121
106
|
virtus (~> 1.0)
|
122
107
|
russian (0.6.0)
|
123
108
|
i18n (>= 0.5.0)
|
124
|
-
securerandom (0.3.2)
|
125
109
|
sexp_processor (4.16.0)
|
126
110
|
simplecov (0.21.2)
|
127
111
|
docile (~> 1.1)
|
@@ -15,7 +15,7 @@ module BBK
|
|
15
15
|
|
16
16
|
def call(severity, time, progname, msg)
|
17
17
|
line = msg2str(msg).gsub("\n", '\\n')
|
18
|
-
line = "#{
|
18
|
+
line = "#{build_tags_text}#{line}"
|
19
19
|
format(FORMAT, severity, format_datetime(time.utc), Process.pid, progname, thread_id, line)
|
20
20
|
end
|
21
21
|
|
@@ -32,7 +32,7 @@ module BBK
|
|
32
32
|
end
|
33
33
|
end
|
34
34
|
|
35
|
-
private def
|
35
|
+
private def build_tags_text
|
36
36
|
@tags.collect { "[#{_1}] " }.join if @tags.any?
|
37
37
|
end
|
38
38
|
|