lite-memoize 1.0.2 → 1.0.3

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: 764d8311718bd18bada8e3f63104f1e81f9e300a995dbac0f61a41ded9706cd0
4
- data.tar.gz: 9d6abb3e67c30129a3e9401fbdb1f213238991ccf9a636a0f889260081a29dd2
3
+ metadata.gz: a8566d89da1a0587757247128cad2d44710a0b5443f38096aa86adb1c3831ca2
4
+ data.tar.gz: 7ba2066061818174366939dfc8f1ccd9852f7a4a47cf59222685ed0d304b65ee
5
5
  SHA512:
6
- metadata.gz: c34cde89e7350fb9d95d111924b90045ec0927d4f2f997623dba9ac28d794a06be10136cdc71e1f621f19f763af73a3688a7c983c7f651bfa10ee3c610266589
7
- data.tar.gz: 4491d5d262bb90fcbc15a951f99bfeefc7ffa7631a4326f5037de0c5ca2016fa8f9b671f8575f16d5aea23c0ecda3d0a60d56e82d035ca0624c37cc13bc938ed
6
+ metadata.gz: 87ad520b87e2bbb2b14f2eef90da0ac78b229bfb9d06b458864be3afb80a0991d54323e46bdbec2d55a22961932e82182f8cde1df28ba8bbba0a6be3b4be503b
7
+ data.tar.gz: c6e0e36cbcab478865a34d2fb8ae2bae0ccabe9a012270370e46ed58ec2bd1e50163bd196753555ba06497b0099581acd63eda617368f5d09eed3cd45e960405
@@ -26,6 +26,8 @@ Naming/MemoizedInstanceVariableName:
26
26
  Enabled: false
27
27
  Naming/UncommunicativeMethodParamName:
28
28
  Enabled: false
29
+ Style/AccessModifierDeclarations:
30
+ Enabled: false
29
31
  Style/Documentation:
30
32
  Enabled: false
31
33
  Style/ExpandPathArguments:
@@ -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.0.3] - 2019-08-13
10
+ ### Added
11
+ - Added clear alias from clear_cache on Alias
12
+
9
13
  ## [1.0.2] - 2019-08-07
10
14
  ### Added
11
15
  - Added variable base memoization
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- lite-memoize (1.0.2)
4
+ lite-memoize (1.0.3)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
@@ -9,7 +9,7 @@ GEM
9
9
  ast (2.4.0)
10
10
  colorize (0.8.1)
11
11
  diff-lcs (1.3)
12
- fasterer (0.5.1)
12
+ fasterer (0.6.0)
13
13
  colorize (~> 0.7)
14
14
  ruby_parser (>= 3.13.0)
15
15
  jaro_winkler (1.5.3)
@@ -17,12 +17,12 @@ GEM
17
17
  parser (2.6.3.0)
18
18
  ast (~> 2.4.0)
19
19
  rainbow (3.0.0)
20
- rake (12.3.2)
20
+ rake (12.3.3)
21
21
  rspec (3.8.0)
22
22
  rspec-core (~> 3.8.0)
23
23
  rspec-expectations (~> 3.8.0)
24
24
  rspec-mocks (~> 3.8.0)
25
- rspec-core (3.8.1)
25
+ rspec-core (3.8.2)
26
26
  rspec-support (~> 3.8.0)
27
27
  rspec-expectations (3.8.4)
28
28
  diff-lcs (>= 1.2.0, < 2.0)
@@ -31,16 +31,16 @@ GEM
31
31
  diff-lcs (>= 1.2.0, < 2.0)
32
32
  rspec-support (~> 3.8.0)
33
33
  rspec-support (3.8.2)
34
- rubocop (0.71.0)
34
+ rubocop (0.74.0)
35
35
  jaro_winkler (~> 1.5.1)
36
36
  parallel (~> 1.10)
37
37
  parser (>= 2.6)
38
38
  rainbow (>= 2.2.2, < 4.0)
39
39
  ruby-progressbar (~> 1.7)
40
40
  unicode-display_width (>= 1.4.0, < 1.7)
41
- rubocop-performance (1.4.0)
41
+ rubocop-performance (1.4.1)
42
42
  rubocop (>= 0.71.0)
43
- rubocop-rspec (1.33.0)
43
+ rubocop-rspec (1.35.0)
44
44
  rubocop (>= 0.60.0)
45
45
  ruby-progressbar (1.10.1)
46
46
  ruby_parser (3.13.1)
@@ -34,6 +34,7 @@ module Lite
34
34
  end
35
35
  end
36
36
 
37
+ alias clear clear_cache
37
38
  alias flush_cache clear_cache
38
39
 
39
40
  end
@@ -16,9 +16,7 @@ module Lite
16
16
  end
17
17
  end
18
18
 
19
- # rubocop:disable Style/AccessModifierDeclarations
20
19
  public :caller_key
21
- # rubocop:enable Style/AccessModifierDeclarations
22
20
 
23
21
  end
24
22
  end
@@ -3,7 +3,7 @@
3
3
  module Lite
4
4
  module Memoize
5
5
 
6
- VERSION ||= '1.0.2'
6
+ VERSION ||= '1.0.3'
7
7
 
8
8
  end
9
9
  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.2
4
+ version: 1.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Juan Gomez
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2019-08-07 00:00:00.000000000 Z
11
+ date: 2019-08-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler