useful_utilities 7.0.0 → 7.0.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/lib/useful_utilities/redhat_release.rb +1 -1
- data/lib/useful_utilities/time.rb +1 -1
- data/lib/useful_utilities/version.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: bd0f03add3976c1fb212af8c129148664dfaf80f17f1eade8409b14c21c37a3b
|
|
4
|
+
data.tar.gz: a4b8b5e0d26e07054b6af4ccb9752c4be770ab7319ce5aeaf47efae13ff67bf5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: dec9574dc4c59b85b4cfc1d752e5b63b489fbdfc19db648d1e9e1c116b56371a3a6fb3bbcc2ccceead60da2da465669f37f2aa405eb036ebd2b6f286579e5a37
|
|
7
|
+
data.tar.gz: 2f26ce0af5224102e5ef504560100f37da278fa1abc06f4b29ae01dc6ffccb072b72232c80fe2e216f663c3b70a95da922d46633f9e89aeac286b247a8169e78
|
|
@@ -17,7 +17,7 @@ module UsefulUtilities
|
|
|
17
17
|
#{VERSION_SEPARATOR_REGEXP} # regexp for separator of version parts
|
|
18
18
|
(?<patch>[[:digit:]]+) # :patch named capture group; it matches one or more sequential digits
|
|
19
19
|
)? # zero or one times quantifier(repetition metacharacter)
|
|
20
|
-
(?=[[:space:]])
|
|
20
|
+
(?=[[:space:]])? # positive lookahead assertion: ensures that the following character matches single "space" character, but doesn't include this character in the matched text
|
|
21
21
|
}x.freeze
|
|
22
22
|
private_constant :VERSION_REGEXP
|
|
23
23
|
|
metadata
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: useful_utilities
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 7.0.
|
|
4
|
+
version: 7.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
|
-
-
|
|
7
|
+
- Virtuozzo
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
@@ -123,7 +123,7 @@ dependencies:
|
|
|
123
123
|
- !ruby/object:Gem::Version
|
|
124
124
|
version: '0'
|
|
125
125
|
description: " A bunch of useful modules to work with time/size constants/hashes\n"
|
|
126
|
-
email:
|
|
126
|
+
email: igor.sidorov@virtuozzo.com
|
|
127
127
|
executables: []
|
|
128
128
|
extensions: []
|
|
129
129
|
extra_rdoc_files: []
|
|
@@ -149,7 +149,7 @@ files:
|
|
|
149
149
|
- lib/useful_utilities/time.rb
|
|
150
150
|
- lib/useful_utilities/version.rb
|
|
151
151
|
- lib/useful_utilities/yaml.rb
|
|
152
|
-
homepage: https://github.com/
|
|
152
|
+
homepage: https://github.com/virtuozzo/useful_utilities
|
|
153
153
|
licenses:
|
|
154
154
|
- Apache 2.0
|
|
155
155
|
metadata: {}
|
|
@@ -168,7 +168,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
168
168
|
- !ruby/object:Gem::Version
|
|
169
169
|
version: '0'
|
|
170
170
|
requirements: []
|
|
171
|
-
rubygems_version: 3.
|
|
171
|
+
rubygems_version: 3.2.16
|
|
172
172
|
signing_key:
|
|
173
173
|
specification_version: 4
|
|
174
174
|
summary: Helpful methods for time, sizes, hashes etc.
|