memoized 1.0.2 → 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: 794d162ed40844f311ed29ff37885d44930b416467b9fa9c49adb77646f6f44b
4
- data.tar.gz: 59dcbf3a4cd03d2f0ed4bcab509758dd59a9fccdf0fe85999b325e18cb0d2948
3
+ metadata.gz: 1b5c64274f2f14822e1da8bd04450fcaba727b7dd7310ab704e6d418651df057
4
+ data.tar.gz: f9afb8a81796f1841a5504eabeeb7a67956fc8c1b14e8e82cf89676c59449378
5
5
  SHA512:
6
- metadata.gz: bd346b36f77cca85aa9cf29bb20d4d1f0f5358d409138a087be59675ba07dc65003d69d654c3901b3aaf97de14812a65356e1cb44e8cec5ffbebd45039266537
7
- data.tar.gz: cc3d756d28efbeb07ca0ae2510fc46b077b59c1b8945f4752dd9f410105c6e4cbbe566d6a0b67c62772ae8ad5b3cddfa2ca821ba1bea8ae5be023ee165da4393
6
+ metadata.gz: 39b17f38a9ffa32e4d3369e1d2e0f2d5db75e522bc412a63d984e0fffa0c3e17310e6dd7a50094c6554fea1192de13a5b5b290823f26a5ee5af62bc94e2e8911
7
+ data.tar.gz: 0e8696b57c1dee349ef43b40b1949af22ec3f826dbbf1d0fe8b39ddd7a751ba5ca5b0893335620cb21ef9e1fabf1f9e094c61524b97cd3a3ef0c14f26f3b455b
@@ -0,0 +1,38 @@
1
+ ---
2
+ name: Tests
3
+ 'on':
4
+ push:
5
+ branches:
6
+ - master
7
+ pull_request:
8
+ branches:
9
+ - master
10
+ jobs:
11
+ test:
12
+ runs-on: ubuntu-20.04
13
+ strategy:
14
+ fail-fast: false
15
+ matrix:
16
+ include:
17
+ - ruby: 2.5.3
18
+ gemfile: Gemfile
19
+ - ruby: 2.6.7
20
+ gemfile: Gemfile
21
+ - ruby: 2.7.3
22
+ gemfile: Gemfile
23
+ - ruby: 3.0.1
24
+ gemfile: Gemfile
25
+ env:
26
+ BUNDLE_GEMFILE: "${{ matrix.gemfile }}"
27
+ steps:
28
+ - uses: actions/checkout@v2
29
+ - name: Install ruby
30
+ uses: ruby/setup-ruby@v1
31
+ with:
32
+ ruby-version: "${{ matrix.ruby }}"
33
+ - name: Bundle
34
+ run: |
35
+ gem install bundler:2.2.21
36
+ bundle install --no-deployment
37
+ - name: Run tests
38
+ run: bundle exec rspec
data/.ruby-version CHANGED
@@ -1 +1 @@
1
- 2.6.1
1
+ 2.6.7
data/CHANGELOG.md CHANGED
@@ -13,6 +13,21 @@ This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html
13
13
 
14
14
  -
15
15
 
16
+ ## 1.1.0 - 2022-03-16
17
+
18
+ ### Breaking changes
19
+
20
+ - Remove no longer supported ruby versions (2.3.8, 2.4.5)
21
+
22
+ ### Compatible changes
23
+
24
+ - Activate rubygems MFA
25
+
26
+ ## 1.0.2 - 2019-05-22
27
+
28
+ ### Compatible changes
29
+
30
+ - Preserve arity of methods with optional arguments
16
31
 
17
32
  ## 1.0.1 - 2019-02-27
18
33
 
data/Gemfile CHANGED
@@ -1,2 +1,10 @@
1
1
  source 'https://rubygems.org'
2
- gemspec
2
+
3
+ # Development dependencies
4
+ gem 'rake', '~> 10.4.2'
5
+ gem 'rspec', '~> 3.5.0'
6
+ gem 'timecop', '~> 0.8.0'
7
+ gem 'gemika'
8
+
9
+ # Gem under test
10
+ gem 'memoized', :path => '.'
data/Gemfile.lock CHANGED
@@ -1,12 +1,13 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- memoized (1.0.1)
4
+ memoized (1.1.0)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
8
8
  specs:
9
9
  diff-lcs (1.3)
10
+ gemika (0.7.1)
10
11
  rake (10.4.2)
11
12
  rspec (3.5.0)
12
13
  rspec-core (~> 3.5.0)
@@ -27,10 +28,11 @@ PLATFORMS
27
28
  ruby
28
29
 
29
30
  DEPENDENCIES
31
+ gemika
30
32
  memoized!
31
33
  rake (~> 10.4.2)
32
34
  rspec (~> 3.5.0)
33
35
  timecop (~> 0.8.0)
34
36
 
35
37
  BUNDLED WITH
36
- 1.17.2
38
+ 2.2.21
data/README.md CHANGED
@@ -1,6 +1,4 @@
1
- [![Build Status](https://travis-ci.org/makandra/memoized.svg?branch=master)](https://travis-ci.org/makandra/memoized)
2
-
3
- # Memoized
1
+ # Memoized [![Tests](https://github.com/makandra/memoized/workflows/Tests/badge.svg)](https://github.com/makandra/memoized/actions)
4
2
 
5
3
  Memoized will memoize the results of your methods. It acts much like
6
4
  `ActiveSupport::Memoizable` without all of that freezing business. The API for
@@ -14,7 +12,7 @@ $ gem install memoized
14
12
 
15
13
  ## Usage
16
14
 
17
- To define a memoized instance method, use `memoized def``:
15
+ To define a memoized instance method, use `memoize def`:
18
16
 
19
17
  ```ruby
20
18
  class A
@@ -78,6 +76,64 @@ instance.goodbye # the goodbye method is now memoized
78
76
  instance.unmemoize_all # neither hello nor goodbye are memoized anymore
79
77
  ```
80
78
 
79
+ ## Limitations
80
+
81
+ When you are using Memoized with default arguments or default keyword arguments, there are some edge cased you have to
82
+ keep in mind.
83
+
84
+ When you memoize a method with (keyword) arguments that have an expression as default value, you should be aware
85
+ that the expression is evaluated only once.
86
+
87
+ ```ruby
88
+ memoize def print_time(time = Time.now)
89
+ time
90
+ end
91
+
92
+ print_time
93
+ => 2021-07-23 14:23:18 +0200
94
+
95
+ sleep(1.minute)
96
+ print_time
97
+ => 2021-07-23 14:23:18 +0200
98
+ ```
99
+
100
+ When you memoize a method with (keyword) arguments that have default values, you should be aware that Memoized
101
+ differentiates between a method call without arguments and the default values.
102
+
103
+ ```ruby
104
+ def true_or_false(default = true)
105
+ puts 'calculate value ...'
106
+ default
107
+ end
108
+
109
+ true_or_false
110
+ calculate value ...
111
+ => true
112
+
113
+ true_or_false
114
+ => true
115
+
116
+ true_or_false(true)
117
+ calculate value ...
118
+ => true
119
+ ```
120
+
121
+ ## Development
122
+
123
+ There are tests in `spec`. We only accept PRs with tests. To run tests:
124
+
125
+ - Install Ruby 2.6.1
126
+ - Install development dependencies using `bundle install`
127
+ - Run tests using `bundle exec rake current_rspec`
128
+
129
+ We recommend to test large changes against multiple versions of Ruby. Supported combinations are configured in `.github/workflows/test.yml`. We provide some rake tasks to help with this:
130
+
131
+ - Install development dependencies using `bundle exec rake matrix:install`
132
+ - Run tests using `bundle exec rake matrix:spec`
133
+
134
+ Note that we have configured GitHub Actions to automatically run tests in all supported Ruby versions and dependency sets after each push. We will only merge pull requests after a green GitHub Actions run.
135
+
136
+ I'm very eager to keep this gem leightweight and on topic. If you're unsure whether a change would make it into the gem, [talk to me beforehand](mailto:henning.koch@makandra.de).
81
137
 
82
138
  ## License
83
139
 
data/Rakefile CHANGED
@@ -1,2 +1,10 @@
1
1
  require 'rake'
2
2
  require 'bundler/gem_tasks'
3
+
4
+ begin
5
+ require 'gemika/tasks'
6
+ rescue LoadError
7
+ puts 'Run `gem install gemika` for additional tasks'
8
+ end
9
+
10
+ task :default => 'matrix:spec'
@@ -1,3 +1,3 @@
1
1
  module Memoized
2
- VERSION = '1.0.2'
2
+ VERSION = '1.1.0'
3
3
  end
data/memoized.gemspec CHANGED
@@ -8,6 +8,12 @@ Gem::Specification.new do |s|
8
8
  s.homepage = "https://github.com/makandra/memoized"
9
9
  s.summary = "Memoized caches the results of your method calls"
10
10
  s.description = s.summary
11
+ s.metadata = {
12
+ 'source_code_uri' => s.homepage,
13
+ 'bug_tracker_uri' => 'https://github.com/makandra/memoized/issues',
14
+ 'changelog_uri' => 'https://github.com/makandra/memoized/blob/master/CHANGELOG.md',
15
+ 'rubygems_mfa_required' => 'true',
16
+ }
11
17
 
12
18
  s.files = `git ls-files`.split("\n").reject { |path| File.lstat(path).symlink? }
13
19
  s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n").reject { |path| File.lstat(path).symlink? }
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: memoized
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.2
4
+ version: 1.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Barun Singh
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2019-05-22 00:00:00.000000000 Z
12
+ date: 2022-03-16 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rake
@@ -59,10 +59,10 @@ executables: []
59
59
  extensions: []
60
60
  extra_rdoc_files: []
61
61
  files:
62
+ - ".github/workflows/test.yml"
62
63
  - ".gitignore"
63
64
  - ".rspec"
64
65
  - ".ruby-version"
65
- - ".travis.yml"
66
66
  - CHANGELOG.md
67
67
  - Gemfile
68
68
  - Gemfile.lock
@@ -77,7 +77,11 @@ files:
77
77
  homepage: https://github.com/makandra/memoized
78
78
  licenses:
79
79
  - MIT
80
- metadata: {}
80
+ metadata:
81
+ source_code_uri: https://github.com/makandra/memoized
82
+ bug_tracker_uri: https://github.com/makandra/memoized/issues
83
+ changelog_uri: https://github.com/makandra/memoized/blob/master/CHANGELOG.md
84
+ rubygems_mfa_required: 'true'
81
85
  post_install_message:
82
86
  rdoc_options: []
83
87
  require_paths:
@@ -93,7 +97,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
93
97
  - !ruby/object:Gem::Version
94
98
  version: '0'
95
99
  requirements: []
96
- rubygems_version: 3.0.1
100
+ rubygems_version: 3.2.21
97
101
  signing_key:
98
102
  specification_version: 4
99
103
  summary: Memoized caches the results of your method calls
data/.travis.yml DELETED
@@ -1,26 +0,0 @@
1
- language: ruby
2
-
3
- rvm:
4
- - 2.1.8
5
- - 2.3.8
6
- - 2.4.5
7
- - 2.5.3
8
- - 2.6.1
9
-
10
- gemfile:
11
- - Gemfile
12
-
13
- script: bundle exec rspec spec
14
-
15
- sudo: false
16
-
17
- cache: bundler
18
-
19
- notifications:
20
- email:
21
- - fail@makandra.de
22
-
23
- install:
24
- # Replace default Travis CI bundler script with a version that doesn't
25
- # explode when lockfile doesn't match recently bumped version
26
- - bundle install --no-deployment --jobs=3 --retry=3 --path=${BUNDLE_PATH:-vendor/bundle}