bbk-utils 1.0.1.68951 → 1.0.1.72694
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 +9 -6
- data/README.md +25 -6
- metadata +17 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a86ec4de4754fcf815121f81c291c035a58caf3edec0dc1a1f1ca83d8c6131ef
|
4
|
+
data.tar.gz: 22ec5e9d066b63f606e21de19071670c5d64e5025991f6f35b33d9f6e44da34b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 601f36b04bff4192c66a13ce13088bca9caf0c840976e5da6d4de48800df6f8a24de1acad6fe4f1ce778944afe6929559428cbcb7359e88dd1dec7d4c96e6f75
|
7
|
+
data.tar.gz: adbc95627e6ee9d94492bc781017fdbd02905566584b70e2d86db6f65c3448afbac27866effa9220645fa0a2e1405a38277c5a5b75bc6e587b23685df20a4770
|
data/Gemfile.lock
CHANGED
@@ -1,19 +1,18 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
bbk-utils (1.0.1.
|
4
|
+
bbk-utils (1.0.1.72694)
|
5
5
|
activesupport
|
6
6
|
russian
|
7
7
|
|
8
8
|
GEM
|
9
9
|
remote: https://rubygems.org/
|
10
10
|
specs:
|
11
|
-
activesupport (
|
11
|
+
activesupport (7.0.1)
|
12
12
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
13
13
|
i18n (>= 1.6, < 2)
|
14
14
|
minitest (>= 5.1)
|
15
15
|
tzinfo (~> 2.0)
|
16
|
-
zeitwerk (~> 2.3)
|
17
16
|
addressable (2.8.0)
|
18
17
|
public_suffix (>= 2.0.2, < 5.0)
|
19
18
|
ansi (1.5.0)
|
@@ -49,7 +48,7 @@ GEM
|
|
49
48
|
kwalify (0.7.2)
|
50
49
|
launchy (2.5.0)
|
51
50
|
addressable (~> 2.7)
|
52
|
-
minitest (5.
|
51
|
+
minitest (5.15.0)
|
53
52
|
parser (3.0.3.1)
|
54
53
|
ast (~> 2.4.1)
|
55
54
|
path_expander (1.1.0)
|
@@ -60,6 +59,7 @@ GEM
|
|
60
59
|
kwalify (~> 0.7.0)
|
61
60
|
parser (~> 3.0.0)
|
62
61
|
rainbow (>= 2.0, < 4.0)
|
62
|
+
rexml (3.2.5)
|
63
63
|
rspec (3.10.0)
|
64
64
|
rspec-core (~> 3.10.0)
|
65
65
|
rspec-expectations (~> 3.10.0)
|
@@ -95,6 +95,9 @@ GEM
|
|
95
95
|
docile (~> 1.1)
|
96
96
|
simplecov-html (~> 0.11)
|
97
97
|
simplecov_json_formatter (~> 0.1)
|
98
|
+
simplecov-cobertura (2.1.0)
|
99
|
+
rexml
|
100
|
+
simplecov (~> 0.19)
|
98
101
|
simplecov-console (0.9.1)
|
99
102
|
ansi
|
100
103
|
simplecov
|
@@ -113,7 +116,6 @@ GEM
|
|
113
116
|
coercible (~> 1.0)
|
114
117
|
descendants_tracker (~> 0.0, >= 0.0.3)
|
115
118
|
equalizer (~> 0.0, >= 0.0.9)
|
116
|
-
zeitwerk (2.5.1)
|
117
119
|
|
118
120
|
PLATFORMS
|
119
121
|
ruby
|
@@ -129,7 +131,8 @@ DEPENDENCIES
|
|
129
131
|
rspec_junit_formatter
|
130
132
|
rubycritic
|
131
133
|
simplecov
|
134
|
+
simplecov-cobertura
|
132
135
|
simplecov-console
|
133
136
|
|
134
137
|
BUNDLED WITH
|
135
|
-
2.2.
|
138
|
+
2.2.33
|
data/README.md
CHANGED
@@ -9,20 +9,39 @@
|
|
9
9
|
[](https://lysander.rnds.pro/api/v1/badges/bbkutils_outdated.html)
|
10
10
|
[](https://lysander.rnds.pro/api/v1/badges/bbkutils_vulnerable.html)
|
11
11
|
|
12
|
-
|
13
12
|
Common classes and helpers for BBK library stack.
|
14
13
|
|
15
14
|
## Installation
|
16
15
|
|
17
|
-
|
16
|
+
Adding to a gem:
|
17
|
+
|
18
|
+
```ruby
|
19
|
+
# my-cool-gem.gemspec
|
18
20
|
|
19
|
-
|
20
|
-
|
21
|
+
Gem::Specification.new do |spec|
|
22
|
+
# ...
|
23
|
+
spec.add_dependency "bbk-utils", "~> 1.0.0"
|
24
|
+
# ...
|
25
|
+
end
|
21
26
|
```
|
22
27
|
|
23
|
-
|
28
|
+
Or adding to your project:
|
24
29
|
|
25
30
|
```ruby
|
26
|
-
|
31
|
+
# Gemfile
|
32
|
+
|
33
|
+
gem "bbk-utils", "~> 1.0.0"
|
27
34
|
```
|
28
35
|
|
36
|
+
### Supported Ruby versions
|
37
|
+
|
38
|
+
* Ruby (MRI) >= 2.5.0
|
39
|
+
|
40
|
+
### Tested Ruby versions
|
41
|
+
|
42
|
+
* Ruby (MRI) 2.5.x
|
43
|
+
* Ruby (MRI) 3.0.x
|
44
|
+
|
45
|
+
## License
|
46
|
+
|
47
|
+
The gem is available as open source under the terms of the MIT License.
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bbk-utils
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.1.
|
4
|
+
version: 1.0.1.72694
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Samoilenko Yuri
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2022-01-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|
@@ -164,6 +164,20 @@ dependencies:
|
|
164
164
|
- - ">="
|
165
165
|
- !ruby/object:Gem::Version
|
166
166
|
version: '0'
|
167
|
+
- !ruby/object:Gem::Dependency
|
168
|
+
name: simplecov-cobertura
|
169
|
+
requirement: !ruby/object:Gem::Requirement
|
170
|
+
requirements:
|
171
|
+
- - ">="
|
172
|
+
- !ruby/object:Gem::Version
|
173
|
+
version: '0'
|
174
|
+
type: :development
|
175
|
+
prerelease: false
|
176
|
+
version_requirements: !ruby/object:Gem::Requirement
|
177
|
+
requirements:
|
178
|
+
- - ">="
|
179
|
+
- !ruby/object:Gem::Version
|
180
|
+
version: '0'
|
167
181
|
description: Support classes for BBK stack
|
168
182
|
email:
|
169
183
|
- kinnalru@gmail.com
|
@@ -185,7 +199,7 @@ files:
|
|
185
199
|
- lib/bbk/utils/proxy_logger.rb
|
186
200
|
- lib/bbk/utils/version.rb
|
187
201
|
- lib/bbk/utils/xml.rb
|
188
|
-
homepage:
|
202
|
+
homepage: https://github.com/RND-SOFT/bbk-utils
|
189
203
|
licenses: []
|
190
204
|
metadata: {}
|
191
205
|
post_install_message:
|