lite-memoize 1.0.4 → 1.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.rubocop.yml +3 -1
- data/CHANGELOG.md +4 -0
- data/Gemfile.lock +15 -12
- data/lib/lite/memoize/version.rb +1 -1
- data/lite-memoize.gemspec +2 -1
- 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: 550437dcb088779e47db178fb36ae20e72d95ef8353699627dc28b453038e5f7
|
4
|
+
data.tar.gz: 64e12bf2ffd2557c8e533289b202b9b41b0516f4d2390252befbfe0d540354ed
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bc2f90b8c883e926a3621a2df8d8134f47dc19f96c7cd8137f17f66b77961f0ee0f26c39b029c2c99d5228c55e0baf1e5527ade2db5298aac8a85011b28ca970
|
7
|
+
data.tar.gz: 507083fde386b02a97a509d74a955308f688420d873450c79d55f0f7932bd40fc7202de8d117e5dde333d909455d250f110d6d8fc3e3e9633abb888c2b91a40f
|
data/.rubocop.yml
CHANGED
@@ -2,7 +2,7 @@ require:
|
|
2
2
|
- rubocop-performance
|
3
3
|
- rubocop-rspec
|
4
4
|
AllCops:
|
5
|
-
TargetRubyVersion:
|
5
|
+
TargetRubyVersion: 3.0
|
6
6
|
NewCops: enable
|
7
7
|
DisplayCopNames: true
|
8
8
|
DisplayStyleGuide: true
|
@@ -39,6 +39,8 @@ Naming/MethodParameterName:
|
|
39
39
|
Enabled: false
|
40
40
|
Style/AccessModifierDeclarations:
|
41
41
|
Enabled: false
|
42
|
+
Style/ArgumentsForwarding:
|
43
|
+
Enabled: false
|
42
44
|
Style/Documentation:
|
43
45
|
Enabled: false
|
44
46
|
Style/DocumentDynamicEvalDefinition:
|
data/CHANGELOG.md
CHANGED
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
lite-memoize (1.0
|
4
|
+
lite-memoize (1.1.0)
|
5
5
|
|
6
6
|
GEM
|
7
7
|
remote: https://rubygems.org/
|
@@ -13,10 +13,10 @@ GEM
|
|
13
13
|
colorize (~> 0.7)
|
14
14
|
ruby_parser (>= 3.14.1)
|
15
15
|
parallel (1.20.1)
|
16
|
-
parser (3.0.
|
16
|
+
parser (3.0.2.0)
|
17
17
|
ast (~> 2.4.1)
|
18
18
|
rainbow (3.0.0)
|
19
|
-
rake (13.0.
|
19
|
+
rake (13.0.6)
|
20
20
|
regexp_parser (2.1.1)
|
21
21
|
rexml (3.2.5)
|
22
22
|
rspec (3.10.0)
|
@@ -32,27 +32,29 @@ GEM
|
|
32
32
|
diff-lcs (>= 1.2.0, < 2.0)
|
33
33
|
rspec-support (~> 3.10.0)
|
34
34
|
rspec-support (3.10.2)
|
35
|
-
rubocop (1.
|
35
|
+
rubocop (1.18.3)
|
36
36
|
parallel (~> 1.10)
|
37
37
|
parser (>= 3.0.0.0)
|
38
38
|
rainbow (>= 2.2.2, < 4.0)
|
39
39
|
regexp_parser (>= 1.8, < 3.0)
|
40
40
|
rexml
|
41
|
-
rubocop-ast (>= 1.
|
41
|
+
rubocop-ast (>= 1.7.0, < 2.0)
|
42
42
|
ruby-progressbar (~> 1.7)
|
43
43
|
unicode-display_width (>= 1.4.0, < 3.0)
|
44
|
-
rubocop-ast (1.
|
44
|
+
rubocop-ast (1.8.0)
|
45
45
|
parser (>= 3.0.1.1)
|
46
|
-
rubocop-performance (1.11.
|
46
|
+
rubocop-performance (1.11.4)
|
47
47
|
rubocop (>= 1.7.0, < 2.0)
|
48
48
|
rubocop-ast (>= 0.4.0)
|
49
|
-
rubocop-
|
49
|
+
rubocop-rake (0.6.0)
|
50
|
+
rubocop (~> 1.0)
|
51
|
+
rubocop-rspec (2.4.0)
|
50
52
|
rubocop (~> 1.0)
|
51
53
|
rubocop-ast (>= 1.1.0)
|
52
54
|
ruby-progressbar (1.11.0)
|
53
|
-
ruby_parser (3.
|
54
|
-
sexp_processor (~> 4.
|
55
|
-
sexp_processor (4.15.
|
55
|
+
ruby_parser (3.16.0)
|
56
|
+
sexp_processor (~> 4.15, >= 4.15.1)
|
57
|
+
sexp_processor (4.15.3)
|
56
58
|
unicode-display_width (2.0.0)
|
57
59
|
|
58
60
|
PLATFORMS
|
@@ -66,7 +68,8 @@ DEPENDENCIES
|
|
66
68
|
rspec
|
67
69
|
rubocop
|
68
70
|
rubocop-performance
|
71
|
+
rubocop-rake
|
69
72
|
rubocop-rspec
|
70
73
|
|
71
74
|
BUNDLED WITH
|
72
|
-
2.2.
|
75
|
+
2.2.24
|
data/lib/lite/memoize/version.rb
CHANGED
data/lite-memoize.gemspec
CHANGED
@@ -25,7 +25,7 @@ Gem::Specification.new do |spec|
|
|
25
25
|
)
|
26
26
|
else
|
27
27
|
raise 'RubyGems 2.0 or newer is required to protect against ' \
|
28
|
-
|
28
|
+
'public gem pushes.'
|
29
29
|
end
|
30
30
|
|
31
31
|
# Specify which files should be added to the gem when it is released.
|
@@ -43,5 +43,6 @@ Gem::Specification.new do |spec|
|
|
43
43
|
spec.add_development_dependency 'rspec'
|
44
44
|
spec.add_development_dependency 'rubocop'
|
45
45
|
spec.add_development_dependency 'rubocop-performance'
|
46
|
+
spec.add_development_dependency 'rubocop-rake'
|
46
47
|
spec.add_development_dependency 'rubocop-rspec'
|
47
48
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: lite-memoize
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0
|
4
|
+
version: 1.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Juan Gomez
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-
|
11
|
+
date: 2021-07-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -94,6 +94,20 @@ dependencies:
|
|
94
94
|
- - ">="
|
95
95
|
- !ruby/object:Gem::Version
|
96
96
|
version: '0'
|
97
|
+
- !ruby/object:Gem::Dependency
|
98
|
+
name: rubocop-rake
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - ">="
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
version: '0'
|
104
|
+
type: :development
|
105
|
+
prerelease: false
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
107
|
+
requirements:
|
108
|
+
- - ">="
|
109
|
+
- !ruby/object:Gem::Version
|
110
|
+
version: '0'
|
97
111
|
- !ruby/object:Gem::Dependency
|
98
112
|
name: rubocop-rspec
|
99
113
|
requirement: !ruby/object:Gem::Requirement
|
@@ -166,7 +180,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
166
180
|
- !ruby/object:Gem::Version
|
167
181
|
version: '0'
|
168
182
|
requirements: []
|
169
|
-
rubygems_version: 3.2.
|
183
|
+
rubygems_version: 3.2.24
|
170
184
|
signing_key:
|
171
185
|
specification_version: 4
|
172
186
|
summary: Cache and memoization helpers for ruby Ruby classes
|