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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f1bed3353173a17cfd361b54629f1cd4a4174f95ad5e757c9c71a058a61355c9
4
- data.tar.gz: 0a7a50e56a3fb2a4094b0bd3383a68e5f121ffaf3717cf78778a264dd779bdac
3
+ metadata.gz: 550437dcb088779e47db178fb36ae20e72d95ef8353699627dc28b453038e5f7
4
+ data.tar.gz: 64e12bf2ffd2557c8e533289b202b9b41b0516f4d2390252befbfe0d540354ed
5
5
  SHA512:
6
- metadata.gz: 37129e4677527b7c111da8e628bc7ff4fc12b52b3ace6e5beb9bcf8c44239969ea65dc3218e1e50138887702e78991f0b1efb83655c405074367dff30aeeeb44
7
- data.tar.gz: 5bd93062875c442c8a84110c574cc068e9970ebd4eb2619e085df34b706c86a1161ed94e479af76938e43b2c18e2ef1908b9d741529c7994896456f9405f8663
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: 2.7
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
@@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6
6
 
7
7
  ## [Unreleased]
8
8
 
9
+ ## [1.1.0] - 2021-07-19
10
+ ### Added
11
+ - Added Ruby 3.0 support
12
+
9
13
  ## [1.0.4] - 2021-05-07
10
14
  ### Changed
11
15
  - Performance bind call
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- lite-memoize (1.0.4)
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.1.1)
16
+ parser (3.0.2.0)
17
17
  ast (~> 2.4.1)
18
18
  rainbow (3.0.0)
19
- rake (13.0.3)
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.14.0)
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.5.0, < 2.0)
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.5.0)
44
+ rubocop-ast (1.8.0)
45
45
  parser (>= 3.0.1.1)
46
- rubocop-performance (1.11.3)
46
+ rubocop-performance (1.11.4)
47
47
  rubocop (>= 1.7.0, < 2.0)
48
48
  rubocop-ast (>= 0.4.0)
49
- rubocop-rspec (2.3.0)
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.15.1)
54
- sexp_processor (~> 4.9)
55
- sexp_processor (4.15.2)
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.17
75
+ 2.2.24
@@ -3,7 +3,7 @@
3
3
  module Lite
4
4
  module Memoize
5
5
 
6
- VERSION = '1.0.4'
6
+ VERSION = '1.1.0'
7
7
 
8
8
  end
9
9
  end
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
- 'public gem pushes.'
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
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-05-07 00:00:00.000000000 Z
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.17
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