factbase 0.15.6 → 0.15.7

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: d348b6ea04ba59f16e1a92c3769cb3139395507e60f1bdb3df1aef182cd8f8c0
4
- data.tar.gz: cc5c09f1ae7c7d35766f3b9083894b0785470831c886fe5e620669150a0bf689
3
+ metadata.gz: b838bd1c72935c372a1926b7d3b36014d0d24820fec78488f0a8e0cd576201f3
4
+ data.tar.gz: 486fd691abaed4a4f96008cf9cceff19794e98a4d520e70f3590abb2e66020e6
5
5
  SHA512:
6
- metadata.gz: 1a720744b99cedd9d8360a1e485078091aae144dbaaa3a7f28b006e39df3269890db9043c6177614c33adfca7dec59c2042dcc7369fc68cc62ab0b182a0bbc18
7
- data.tar.gz: 027f5ac0993655496b93db5e2d38f33288823608b8935e185ad1b0b186a3b308d0be3ba319abba5a3be119667fa69ee2e7be50643e6b5733517572ad864ea736
6
+ metadata.gz: 99836756e81031997fd5f8defb0e1912b43c50efbe4d63caf8cd164eddba8af0c45d17be346ddfb37a879071b315047a4e4f99c40a7394b988cf008fa52fd8b8
7
+ data.tar.gz: fdae1ae2d2f4e0d6368b4b9997366f5b9f1fd55398b88d541cb6fc29ea5b2ddaae01c1ad77666d873d17703a927af8df8abc2e875d57195151d236699998fbe6
data/Gemfile.lock CHANGED
@@ -71,8 +71,8 @@ GEM
71
71
  erb
72
72
  psych (>= 4.0.0)
73
73
  regexp_parser (2.11.2)
74
- rexml (3.4.1)
75
- rubocop (1.79.2)
74
+ rexml (3.4.2)
75
+ rubocop (1.80.1)
76
76
  json (~> 2.3)
77
77
  language_server-protocol (~> 3.17.0.2)
78
78
  lint_roller (~> 1.1.0)
@@ -102,7 +102,7 @@ GEM
102
102
  docile (~> 1.1)
103
103
  simplecov-html (~> 0.11)
104
104
  simplecov_json_formatter (~> 0.1)
105
- simplecov-cobertura (3.0.0)
105
+ simplecov-cobertura (3.1.0)
106
106
  rexml
107
107
  simplecov (~> 0.19)
108
108
  simplecov-html (0.13.2)
@@ -147,7 +147,7 @@ class Factbase::Syntax
147
147
  elsif t.match?(/^[0-9]{4}-[0-9]{2}-[0-9]{2}T[0-9]{2}:[0-9]{2}:[0-9]{2}Z$/)
148
148
  Time.parse(t)
149
149
  else
150
- raise "Wrong symbol format (#{t})" unless t.match?(/^([_a-z][a-zA-Z0-9_]*|\$[a-z]+)$/)
150
+ raise "Wrong symbol format (#{t})" unless t.match?(/^([_a-z][a-zA-Z0-9_]*|\$[_a-z]+)$/)
151
151
  t.to_sym
152
152
  end
153
153
  end
@@ -9,5 +9,5 @@
9
9
  # License:: MIT
10
10
  class Factbase
11
11
  # Current version of the gem (changed by .rultor.yml on every release)
12
- VERSION = '0.15.6' unless const_defined?(:VERSION)
12
+ VERSION = '0.15.7' unless const_defined?(:VERSION)
13
13
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: factbase
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.15.6
4
+ version: 0.15.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Yegor Bugayenko