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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c90246d59d157abd2fbe447256485af3ae42e99411317dfe6a3d5f747b28b85f
4
- data.tar.gz: e318b3af652c6a02a4a38f7ea9627b6ecba84fd8ca548e6046fd52c5e4c1a036
3
+ metadata.gz: bd0f03add3976c1fb212af8c129148664dfaf80f17f1eade8409b14c21c37a3b
4
+ data.tar.gz: a4b8b5e0d26e07054b6af4ccb9752c4be770ab7319ce5aeaf47efae13ff67bf5
5
5
  SHA512:
6
- metadata.gz: 46d7025f5ace0cb07ca5d4b7055b9dcb76edf26b194d84c9273208b0df2b895f1750198850a61772224f8ecf3d79ad09b1a99923ce539c80542539a3960d436c
7
- data.tar.gz: c81c68a4470af3764d1000cbe691097619e78b8b1f5113546722763a0df39ca1da8e21600e4608def8b1b5d08c578e3e86396543d843fb0e8daa45ae6768db97
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:]]) # positive lookahead assertion: ensures that the following character matches single "space" character, but doesn't include this character in the matched text
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
 
@@ -3,7 +3,7 @@ require 'active_support/all'
3
3
  module UsefulUtilities
4
4
  # Utilities for time
5
5
 
6
- # @author OnApp Ltd.
6
+ # @author Virtuozzo
7
7
  module Time
8
8
  extend self
9
9
 
@@ -1,3 +1,3 @@
1
1
  module UsefulUtilities
2
- VERSION = '7.0.0'.freeze
2
+ VERSION = '7.0.2'.freeze
3
3
  end
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.0
4
+ version: 7.0.2
5
5
  platform: ruby
6
6
  authors:
7
- - OnApp Ltd.
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: onapp@onapp.com
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/OnApp/useful_utilities
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.3.20
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.