tacky 0.3.5 → 0.5.0
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 +4 -4
- data/.0pdd.yml +3 -3
- data/.github/workflows/actionlint.yml +25 -0
- data/.github/workflows/copyrights.yml +19 -0
- data/.github/workflows/pdd.yml +19 -0
- data/.github/workflows/rake.yml +28 -0
- data/.github/workflows/reuse.yml +19 -0
- data/.github/workflows/xcop.yml +15 -0
- data/.github/workflows/yamllint.yml +19 -0
- data/.gitignore +7 -3
- data/.rubocop.yml +15 -3
- data/.rultor.yml +9 -6
- data/Gemfile +11 -20
- data/Gemfile.lock +82 -0
- data/LICENSE.txt +1 -1
- data/LICENSES/MIT.txt +21 -0
- data/README.md +18 -15
- data/REUSE.toml +35 -0
- data/Rakefile +4 -21
- data/lib/tacky.rb +4 -25
- data/logo.svg +1 -1
- data/renovate.json +6 -0
- data/tacky.gemspec +10 -37
- data/test/test_tacky.rb +47 -26
- metadata +22 -87
- data/.travis.yml +0 -12
- data/appveyor.yml +0 -25
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 66e070784bf3eab59a930f0d63a5f910fb33f0bd6642c8d2148ea96adef88c9c
|
4
|
+
data.tar.gz: 94e8f05a030e86e042f839bb3f14c9bd10f193af4187ed83a7c54f4e94ac59c1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a4ca0db0df2352b30efa323b54ec6145a99cba13a57fa3d84c44d56ab6a949b97a664b100031b102d56bc935129275bccbe3e7c225074d609e7148da0ded2f8a
|
7
|
+
data.tar.gz: acb6474481c989d587516c2fd6a10220f2143e4c5eccd2d5eb3bec9b6442fc5b76e5628a3afa07e4e495feb57776fa0935bd3cdd37e8b618acacc34a4d644326
|
data/.0pdd.yml
CHANGED
@@ -0,0 +1,25 @@
|
|
1
|
+
# SPDX-FileCopyrightText: Copyright (c) 2020-2025 Yegor Bugayenko
|
2
|
+
# SPDX-License-Identifier: MIT
|
3
|
+
---
|
4
|
+
# yamllint disable rule:line-length
|
5
|
+
name: actionlint
|
6
|
+
'on':
|
7
|
+
push:
|
8
|
+
branches:
|
9
|
+
- master
|
10
|
+
pull_request:
|
11
|
+
branches:
|
12
|
+
- master
|
13
|
+
jobs:
|
14
|
+
actionlint:
|
15
|
+
timeout-minutes: 15
|
16
|
+
runs-on: ubuntu-24.04
|
17
|
+
steps:
|
18
|
+
- uses: actions/checkout@v4
|
19
|
+
- name: Download actionlint
|
20
|
+
id: get_actionlint
|
21
|
+
run: bash <(curl https://raw.githubusercontent.com/rhysd/actionlint/main/scripts/download-actionlint.bash)
|
22
|
+
shell: bash
|
23
|
+
- name: Check workflow files
|
24
|
+
run: ${{ steps.get_actionlint.outputs.executable }} -color
|
25
|
+
shell: bash
|
@@ -0,0 +1,19 @@
|
|
1
|
+
# SPDX-FileCopyrightText: Copyright (c) 2020-2025 Yegor Bugayenko
|
2
|
+
# SPDX-License-Identifier: MIT
|
3
|
+
---
|
4
|
+
# yamllint disable rule:line-length
|
5
|
+
name: copyrights
|
6
|
+
'on':
|
7
|
+
push:
|
8
|
+
branches:
|
9
|
+
- master
|
10
|
+
pull_request:
|
11
|
+
branches:
|
12
|
+
- master
|
13
|
+
jobs:
|
14
|
+
copyrights:
|
15
|
+
timeout-minutes: 15
|
16
|
+
runs-on: ubuntu-24.04
|
17
|
+
steps:
|
18
|
+
- uses: actions/checkout@v4
|
19
|
+
- uses: yegor256/copyrights-action@0.0.8
|
@@ -0,0 +1,19 @@
|
|
1
|
+
# SPDX-FileCopyrightText: Copyright (c) 2020-2025 Yegor Bugayenko
|
2
|
+
# SPDX-License-Identifier: MIT
|
3
|
+
---
|
4
|
+
# yamllint disable rule:line-length
|
5
|
+
name: pdd
|
6
|
+
'on':
|
7
|
+
push:
|
8
|
+
branches:
|
9
|
+
- master
|
10
|
+
pull_request:
|
11
|
+
branches:
|
12
|
+
- master
|
13
|
+
jobs:
|
14
|
+
pdd:
|
15
|
+
timeout-minutes: 15
|
16
|
+
runs-on: ubuntu-24.04
|
17
|
+
steps:
|
18
|
+
- uses: actions/checkout@v4
|
19
|
+
- uses: volodya-lombrozo/pdd-action@master
|
@@ -0,0 +1,28 @@
|
|
1
|
+
# SPDX-FileCopyrightText: Copyright (c) 2020-2025 Yegor Bugayenko
|
2
|
+
# SPDX-License-Identifier: MIT
|
3
|
+
---
|
4
|
+
# yamllint disable rule:line-length
|
5
|
+
name: rake
|
6
|
+
'on':
|
7
|
+
push:
|
8
|
+
branches:
|
9
|
+
- master
|
10
|
+
pull_request:
|
11
|
+
branches:
|
12
|
+
- master
|
13
|
+
jobs:
|
14
|
+
test:
|
15
|
+
strategy:
|
16
|
+
matrix:
|
17
|
+
os: [ubuntu-24.04]
|
18
|
+
ruby: [3.3]
|
19
|
+
runs-on: ${{ matrix.os }}
|
20
|
+
steps:
|
21
|
+
- uses: actions/checkout@v4
|
22
|
+
- uses: ruby/setup-ruby@v1
|
23
|
+
with:
|
24
|
+
ruby-version: ${{ matrix.ruby }}
|
25
|
+
bundler-cache: true
|
26
|
+
- run: bundle config set --global path "$(pwd)/vendor/bundle"
|
27
|
+
- run: bundle install --no-color
|
28
|
+
- run: bundle exec rake
|
@@ -0,0 +1,19 @@
|
|
1
|
+
# SPDX-FileCopyrightText: Copyright (c) 2020-2025 Yegor Bugayenko
|
2
|
+
# SPDX-License-Identifier: MIT
|
3
|
+
---
|
4
|
+
# yamllint disable rule:line-length
|
5
|
+
name: reuse
|
6
|
+
'on':
|
7
|
+
push:
|
8
|
+
branches:
|
9
|
+
- master
|
10
|
+
pull_request:
|
11
|
+
branches:
|
12
|
+
- master
|
13
|
+
jobs:
|
14
|
+
reuse:
|
15
|
+
timeout-minutes: 15
|
16
|
+
runs-on: ubuntu-24.04
|
17
|
+
steps:
|
18
|
+
- uses: actions/checkout@v4
|
19
|
+
- uses: fsfe/reuse-action@v5
|
@@ -0,0 +1,15 @@
|
|
1
|
+
# SPDX-FileCopyrightText: Copyright (c) 2020-2025 Yegor Bugayenko
|
2
|
+
# SPDX-License-Identifier: MIT
|
3
|
+
---
|
4
|
+
# yamllint disable rule:line-length
|
5
|
+
name: xcop
|
6
|
+
'on':
|
7
|
+
push:
|
8
|
+
pull_request:
|
9
|
+
jobs:
|
10
|
+
xcop:
|
11
|
+
timeout-minutes: 15
|
12
|
+
runs-on: ubuntu-24.04
|
13
|
+
steps:
|
14
|
+
- uses: actions/checkout@v4
|
15
|
+
- uses: g4s8/xcop-action@master
|
@@ -0,0 +1,19 @@
|
|
1
|
+
# SPDX-FileCopyrightText: Copyright (c) 2020-2025 Yegor Bugayenko
|
2
|
+
# SPDX-License-Identifier: MIT
|
3
|
+
---
|
4
|
+
# yamllint disable rule:line-length
|
5
|
+
name: yamllint
|
6
|
+
'on':
|
7
|
+
push:
|
8
|
+
branches:
|
9
|
+
- master
|
10
|
+
pull_request:
|
11
|
+
branches:
|
12
|
+
- master
|
13
|
+
jobs:
|
14
|
+
yamllint:
|
15
|
+
timeout-minutes: 15
|
16
|
+
runs-on: ubuntu-24.04
|
17
|
+
steps:
|
18
|
+
- uses: actions/checkout@v4
|
19
|
+
- uses: ibiqlik/action-yamllint@v3
|
data/.gitignore
CHANGED
data/.rubocop.yml
CHANGED
@@ -1,10 +1,20 @@
|
|
1
|
+
# SPDX-FileCopyrightText: Copyright (c) 2020-2025 Yegor Bugayenko
|
2
|
+
# SPDX-License-Identifier: MIT
|
3
|
+
---
|
1
4
|
AllCops:
|
2
5
|
DisplayCopNames: true
|
3
6
|
TargetRubyVersion: 2.3
|
4
|
-
|
7
|
+
NewCops: enable
|
8
|
+
SuggestExtensions: false
|
9
|
+
plugins:
|
10
|
+
- rubocop-rake
|
11
|
+
- rubocop-minitest
|
12
|
+
- rubocop-performance
|
13
|
+
Minitest/EmptyLineBeforeAssertionMethods:
|
14
|
+
Enabled: false
|
5
15
|
Layout/EndOfLine:
|
6
16
|
EnforcedStyle: lf
|
7
|
-
|
17
|
+
Lint/MissingSuper:
|
8
18
|
Enabled: false
|
9
19
|
Layout/EmptyLineAfterGuardClause:
|
10
20
|
Enabled: false
|
@@ -24,5 +34,7 @@ Metrics/PerceivedComplexity:
|
|
24
34
|
Max: 10
|
25
35
|
Metrics/ParameterLists:
|
26
36
|
Max: 10
|
27
|
-
Layout/
|
37
|
+
Layout/ParameterAlignment:
|
38
|
+
Enabled: false
|
39
|
+
Style/OptionalBooleanParameter:
|
28
40
|
Enabled: false
|
data/.rultor.yml
CHANGED
@@ -1,10 +1,17 @@
|
|
1
|
+
# SPDX-FileCopyrightText: Copyright (c) 2020-2025 Yegor Bugayenko
|
2
|
+
# SPDX-License-Identifier: MIT
|
3
|
+
---
|
4
|
+
# yamllint disable rule:line-length
|
5
|
+
docker:
|
6
|
+
image: yegor256/ruby
|
1
7
|
assets:
|
2
8
|
rubygems.yml: yegor256/home#assets/rubygems.yml
|
3
9
|
install: |-
|
4
|
-
|
5
|
-
|
10
|
+
sudo gem install pdd
|
11
|
+
pdd -f /dev/null
|
6
12
|
sudo bundle install --no-color "--gemfile=$(pwd)/Gemfile"
|
7
13
|
release:
|
14
|
+
pre: false
|
8
15
|
script: |-
|
9
16
|
bundle exec rake
|
10
17
|
rm -rf *.gem
|
@@ -18,7 +25,3 @@ merge:
|
|
18
25
|
script: |-
|
19
26
|
bundle install
|
20
27
|
bundle exec rake
|
21
|
-
deploy:
|
22
|
-
script: |-
|
23
|
-
echo 'Nothing to deploy'
|
24
|
-
exit -1
|
data/Gemfile
CHANGED
@@ -1,25 +1,16 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
# Copyright (c) 2020 Yegor Bugayenko
|
4
|
-
#
|
5
|
-
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
-
# of this software and associated documentation files (the 'Software'), to deal
|
7
|
-
# in the Software without restriction, including without limitation the rights
|
8
|
-
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
-
# copies of the Software, and to permit persons to whom the Software is
|
10
|
-
# furnished to do so, subject to the following conditions:
|
11
|
-
#
|
12
|
-
# The above copyright notice and this permission notice shall be included in all
|
13
|
-
# copies or substantial portions of the Software.
|
14
|
-
#
|
15
|
-
# THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
-
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
-
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
-
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
-
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
-
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
21
|
-
# SOFTWARE.
|
3
|
+
# SPDX-FileCopyrightText: Copyright (c) 2020-2025 Yegor Bugayenko
|
4
|
+
# SPDX-License-Identifier: MIT
|
22
5
|
|
23
6
|
source 'https://rubygems.org'
|
24
|
-
ruby '~>2.3'
|
25
7
|
gemspec
|
8
|
+
|
9
|
+
gem 'minitest', '~>5.25', require: false
|
10
|
+
gem 'rake', '~>13.2', require: false
|
11
|
+
gem 'rdoc', '~>6.11', require: false
|
12
|
+
gem 'rubocop', '~>1.71', require: false
|
13
|
+
gem 'rubocop-minitest', '>0', require: false
|
14
|
+
gem 'rubocop-performance', '>0', require: false
|
15
|
+
gem 'rubocop-rake', '>0', require: false
|
16
|
+
gem 'rubocop-rspec', '>0', require: false
|
data/Gemfile.lock
ADDED
@@ -0,0 +1,82 @@
|
|
1
|
+
PATH
|
2
|
+
remote: .
|
3
|
+
specs:
|
4
|
+
tacky (0.0.0)
|
5
|
+
|
6
|
+
GEM
|
7
|
+
remote: https://rubygems.org/
|
8
|
+
specs:
|
9
|
+
ast (2.4.3)
|
10
|
+
date (3.4.1)
|
11
|
+
json (2.10.2)
|
12
|
+
language_server-protocol (3.17.0.4)
|
13
|
+
lint_roller (1.1.0)
|
14
|
+
minitest (5.25.5)
|
15
|
+
parallel (1.26.3)
|
16
|
+
parser (3.3.7.3)
|
17
|
+
ast (~> 2.4.1)
|
18
|
+
racc
|
19
|
+
prism (1.4.0)
|
20
|
+
psych (5.2.3)
|
21
|
+
date
|
22
|
+
stringio
|
23
|
+
racc (1.8.1)
|
24
|
+
rainbow (3.1.1)
|
25
|
+
rake (13.2.1)
|
26
|
+
rdoc (6.13.0)
|
27
|
+
psych (>= 4.0.0)
|
28
|
+
regexp_parser (2.10.0)
|
29
|
+
rubocop (1.75.1)
|
30
|
+
json (~> 2.3)
|
31
|
+
language_server-protocol (~> 3.17.0.2)
|
32
|
+
lint_roller (~> 1.1.0)
|
33
|
+
parallel (~> 1.10)
|
34
|
+
parser (>= 3.3.0.2)
|
35
|
+
rainbow (>= 2.2.2, < 4.0)
|
36
|
+
regexp_parser (>= 2.9.3, < 3.0)
|
37
|
+
rubocop-ast (>= 1.43.0, < 2.0)
|
38
|
+
ruby-progressbar (~> 1.7)
|
39
|
+
unicode-display_width (>= 2.4.0, < 4.0)
|
40
|
+
rubocop-ast (1.43.0)
|
41
|
+
parser (>= 3.3.7.2)
|
42
|
+
prism (~> 1.4)
|
43
|
+
rubocop-minitest (0.37.1)
|
44
|
+
lint_roller (~> 1.1)
|
45
|
+
rubocop (>= 1.72.1, < 2.0)
|
46
|
+
rubocop-ast (>= 1.38.0, < 2.0)
|
47
|
+
rubocop-performance (1.24.0)
|
48
|
+
lint_roller (~> 1.1)
|
49
|
+
rubocop (>= 1.72.1, < 2.0)
|
50
|
+
rubocop-ast (>= 1.38.0, < 2.0)
|
51
|
+
rubocop-rake (0.7.1)
|
52
|
+
lint_roller (~> 1.1)
|
53
|
+
rubocop (>= 1.72.1)
|
54
|
+
rubocop-rspec (3.5.0)
|
55
|
+
lint_roller (~> 1.1)
|
56
|
+
rubocop (~> 1.72, >= 1.72.1)
|
57
|
+
ruby-progressbar (1.13.0)
|
58
|
+
stringio (3.1.6)
|
59
|
+
unicode-display_width (3.1.4)
|
60
|
+
unicode-emoji (~> 4.0, >= 4.0.4)
|
61
|
+
unicode-emoji (4.0.4)
|
62
|
+
|
63
|
+
PLATFORMS
|
64
|
+
arm64-darwin-22
|
65
|
+
arm64-darwin-23
|
66
|
+
arm64-darwin-24
|
67
|
+
x64-mingw-ucrt
|
68
|
+
x86_64-linux
|
69
|
+
|
70
|
+
DEPENDENCIES
|
71
|
+
minitest (~> 5.25)
|
72
|
+
rake (~> 13.2)
|
73
|
+
rdoc (~> 6.11)
|
74
|
+
rubocop (~> 1.71)
|
75
|
+
rubocop-minitest (> 0)
|
76
|
+
rubocop-performance (> 0)
|
77
|
+
rubocop-rake (> 0)
|
78
|
+
rubocop-rspec (> 0)
|
79
|
+
tacky!
|
80
|
+
|
81
|
+
BUNDLED WITH
|
82
|
+
2.5.16
|
data/LICENSE.txt
CHANGED
data/LICENSES/MIT.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2020-2025 Yegor Bugayenko
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included
|
13
|
+
in all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
21
|
+
SOFTWARE.
|
data/README.md
CHANGED
@@ -1,15 +1,13 @@
|
|
1
|
-
|
1
|
+
# Caching Decorator for Ruby Objects
|
2
2
|
|
3
3
|
[](https://www.elegantobjects.org)
|
4
|
-
[](https://www.rultor.com/p/yegor256/tacky)
|
5
5
|
[](https://www.jetbrains.com/ruby/)
|
6
6
|
|
7
|
-
[](http://badge.fury.io/rb/tacky)
|
7
|
+
[](https://github.com/yegor256/tacky/actions/workflows/rake.yml)
|
8
|
+
[](https://badge.fury.io/rb/tacky)
|
10
9
|
[](https://codeclimate.com/github/yegor256/tacky/maintainability)
|
11
|
-
[](https://rubydoc.info/github/yegor256/tacky/master/frames)
|
13
11
|
[](https://hitsofcode.com/view/github/yegor256/tacky)
|
14
12
|
[](https://github.com/yegor256/tacky/blob/master/LICENSE.txt)
|
15
13
|
|
@@ -23,26 +21,31 @@ Then, use it like this:
|
|
23
21
|
|
24
22
|
```ruby
|
25
23
|
require 'tacky'
|
26
|
-
|
24
|
+
tackified = Tacky.new(obj)
|
27
25
|
```
|
28
26
|
|
29
|
-
That's it, all method calls will be cached.
|
27
|
+
That's it, all method calls will be cached. This means that only the first
|
28
|
+
call of any method will actually reach your object. All consecutive calls
|
29
|
+
will be intercepted by the `Tacky` decorator, which will return
|
30
|
+
previously calculated values. The decorator keeps all values in its internal
|
31
|
+
`Hash`.
|
30
32
|
|
31
|
-
If you want all methods of everything your methods return be cached, you
|
33
|
+
If you want all methods of everything your methods return be cached too, you
|
32
34
|
need to use "deep" caching (it's `true` by default):
|
33
35
|
|
34
|
-
|
35
36
|
```ruby
|
36
37
|
obj = Tacky.new(obj, deep: true)
|
37
38
|
```
|
38
39
|
|
39
|
-
`Tacky` is thread-safe.
|
40
|
+
Keep in mind that `Tacky` is thread-safe.
|
40
41
|
|
41
42
|
## How to contribute
|
42
43
|
|
43
|
-
Read
|
44
|
-
|
45
|
-
|
44
|
+
Read
|
45
|
+
[these guidelines](https://www.yegor256.com/2014/04/15/github-guidelines.html).
|
46
|
+
Make sure your build is green before you contribute
|
47
|
+
your pull request. You will need to have
|
48
|
+
[Ruby](https://www.ruby-lang.org/en/) 2.3+ and
|
46
49
|
[Bundler](https://bundler.io/) installed. Then:
|
47
50
|
|
48
51
|
```
|
data/REUSE.toml
ADDED
@@ -0,0 +1,35 @@
|
|
1
|
+
# SPDX-FileCopyrightText: Copyright (c) 2025 Yegor Bugayenko
|
2
|
+
# SPDX-License-Identifier: MIT
|
3
|
+
|
4
|
+
version = 1
|
5
|
+
[[annotations]]
|
6
|
+
path = [
|
7
|
+
"**.json",
|
8
|
+
"**.md",
|
9
|
+
"**.svg",
|
10
|
+
"**.txt",
|
11
|
+
"**/*.csv",
|
12
|
+
"**/*.jpg",
|
13
|
+
"**/*.json",
|
14
|
+
"**/*.md",
|
15
|
+
"**/*.pdf",
|
16
|
+
"**/*.png",
|
17
|
+
"**/*.svg",
|
18
|
+
"**/*.txt",
|
19
|
+
"**/*.vm",
|
20
|
+
"**/.DS_Store",
|
21
|
+
"**/.gitignore",
|
22
|
+
"**/.pdd",
|
23
|
+
"**/CNAME",
|
24
|
+
"**/Gemfile.lock",
|
25
|
+
".DS_Store",
|
26
|
+
".gitattributes",
|
27
|
+
".gitignore",
|
28
|
+
".pdd",
|
29
|
+
"Gemfile.lock",
|
30
|
+
"README.md",
|
31
|
+
"renovate.json",
|
32
|
+
]
|
33
|
+
precedence = "override"
|
34
|
+
SPDX-FileCopyrightText = "Copyright (c) 2025 Yegor Bugayenko"
|
35
|
+
SPDX-License-Identifier = "MIT"
|
data/Rakefile
CHANGED
@@ -1,30 +1,13 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
# Copyright (c) 2020 Yegor Bugayenko
|
4
|
-
#
|
5
|
-
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
-
# of this software and associated documentation files (the 'Software'), to deal
|
7
|
-
# in the Software without restriction, including without limitation the rights
|
8
|
-
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
-
# copies of the Software, and to permit persons to whom the Software is
|
10
|
-
# furnished to do so, subject to the following conditions:
|
11
|
-
#
|
12
|
-
# The above copyright notice and this permission notice shall be included in all
|
13
|
-
# copies or substantial portions of the Software.
|
14
|
-
#
|
15
|
-
# THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
-
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
-
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
-
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
-
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
-
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
21
|
-
# SOFTWARE.
|
3
|
+
# SPDX-FileCopyrightText: Copyright (c) 2020-2025 Yegor Bugayenko
|
4
|
+
# SPDX-License-Identifier: MIT
|
22
5
|
|
23
6
|
require 'rubygems'
|
24
7
|
require 'rake'
|
25
8
|
require 'rake/clean'
|
26
9
|
|
27
|
-
CLEAN
|
10
|
+
CLEAN.include('coverage')
|
28
11
|
|
29
12
|
def name
|
30
13
|
@name ||= File.basename(Dir['*.gemspec'].first, '.*')
|
@@ -55,5 +38,5 @@ require 'rubocop/rake_task'
|
|
55
38
|
desc 'Run RuboCop on all directories'
|
56
39
|
RuboCop::RakeTask.new(:rubocop) do |task|
|
57
40
|
task.fail_on_error = true
|
58
|
-
task.
|
41
|
+
task.options = ['--plugin', 'rubocop-rspec']
|
59
42
|
end
|
data/lib/tacky.rb
CHANGED
@@ -1,26 +1,7 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
# (
|
4
|
-
#
|
5
|
-
# Copyright (c) 2020 Yegor Bugayenko
|
6
|
-
#
|
7
|
-
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
8
|
-
# of this software and associated documentation files (the 'Software'), to deal
|
9
|
-
# in the Software without restriction, including without limitation the rights
|
10
|
-
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
11
|
-
# copies of the Software, and to permit persons to whom the Software is
|
12
|
-
# furnished to do so, subject to the following conditions:
|
13
|
-
#
|
14
|
-
# The above copyright notice and this permission notice shall be included in all
|
15
|
-
# copies or substantial portions of the Software.
|
16
|
-
#
|
17
|
-
# THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
18
|
-
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
19
|
-
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
20
|
-
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
21
|
-
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
22
|
-
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
23
|
-
# SOFTWARE.
|
3
|
+
# SPDX-FileCopyrightText: Copyright (c) 2020-2025 Yegor Bugayenko
|
4
|
+
# SPDX-License-Identifier: MIT
|
24
5
|
|
25
6
|
# Tacky is a simple decorator of an existing object that makes all of
|
26
7
|
# its methods cache all values and calculate them only once.
|
@@ -29,7 +10,7 @@
|
|
29
10
|
# {README}[https://github.com/yegor256/tacky/blob/master/README.md] file.
|
30
11
|
#
|
31
12
|
# Author:: Yegor Bugayenko (yegor256@gmail.com)
|
32
|
-
# Copyright:: Copyright (c) 2020 Yegor Bugayenko
|
13
|
+
# Copyright:: Copyright (c) 2020-2025 Yegor Bugayenko
|
33
14
|
# License:: MIT
|
34
15
|
class Tacky
|
35
16
|
undef_method :send
|
@@ -56,9 +37,7 @@ class Tacky
|
|
56
37
|
@cache[args] = @origin.__send__(*args) do |*a|
|
57
38
|
yield(*a) if block_given?
|
58
39
|
end
|
59
|
-
if @deep && STOP.none? { |t| @cache[args].is_a?(t) }
|
60
|
-
@cache[args] = Tacky.new(@cache[args], deep: @deep)
|
61
|
-
end
|
40
|
+
@cache[args] = Tacky.new(@cache[args], deep: @deep) if @deep && STOP.none? { |t| @cache[args].is_a?(t) }
|
62
41
|
end
|
63
42
|
@cache[args]
|
64
43
|
end
|
data/logo.svg
CHANGED
data/renovate.json
ADDED
data/tacky.gemspec
CHANGED
@@ -1,51 +1,24 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
# (
|
4
|
-
#
|
5
|
-
# Copyright (c) 2020 Yegor Bugayenko
|
6
|
-
#
|
7
|
-
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
8
|
-
# of this software and associated documentation files (the 'Software'), to deal
|
9
|
-
# in the Software without restriction, including without limitation the rights
|
10
|
-
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
11
|
-
# copies of the Software, and to permit persons to whom the Software is
|
12
|
-
# furnished to do so, subject to the following conditions:
|
13
|
-
#
|
14
|
-
# The above copyright notice and this permission notice shall be included in all
|
15
|
-
# copies or substantial portions of the Software.
|
16
|
-
#
|
17
|
-
# THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
18
|
-
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
19
|
-
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
20
|
-
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
21
|
-
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
22
|
-
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
23
|
-
# SOFTWARE.
|
3
|
+
# SPDX-FileCopyrightText: Copyright (c) 2020-2025 Yegor Bugayenko
|
4
|
+
# SPDX-License-Identifier: MIT
|
24
5
|
|
25
6
|
require 'English'
|
26
7
|
Gem::Specification.new do |s|
|
27
|
-
s.
|
28
|
-
|
29
|
-
s.required_rubygems_version = Gem::Requirement.new('>= 0')
|
30
|
-
end
|
31
|
-
s.rubygems_version = '2.3.3'
|
32
|
-
s.required_ruby_version = '>=2.3'
|
8
|
+
s.required_rubygems_version = Gem::Requirement.new('>= 0') if s.respond_to? :required_rubygems_version=
|
9
|
+
s.required_ruby_version = '>= 2.3'
|
33
10
|
s.name = 'tacky'
|
34
|
-
s.version = '0.
|
11
|
+
s.version = '0.5.0'
|
35
12
|
s.license = 'MIT'
|
36
13
|
s.summary = 'Primitive Object Memoization for Ruby'
|
37
|
-
s.description =
|
38
|
-
|
14
|
+
s.description =
|
15
|
+
'Decorate your existing Ruby object with Tacky ' \
|
16
|
+
'and all its methods will be cached.'
|
39
17
|
s.authors = ['Yegor Bugayenko']
|
40
18
|
s.email = 'yegor256@gmail.com'
|
41
|
-
s.homepage = '
|
19
|
+
s.homepage = 'https://github.com/yegor256/tacky'
|
42
20
|
s.files = `git ls-files`.split($RS)
|
43
|
-
s.test_files = s.files.grep(%r{^(test)/})
|
44
21
|
s.rdoc_options = ['--charset=UTF-8']
|
45
22
|
s.extra_rdoc_files = ['README.md']
|
46
|
-
s.
|
47
|
-
s.add_development_dependency 'rake', '12.3.1'
|
48
|
-
s.add_development_dependency 'rdoc', '4.3.0'
|
49
|
-
s.add_development_dependency 'rubocop', '0.62.0'
|
50
|
-
s.add_development_dependency 'rubocop-rspec', '1.31.0'
|
23
|
+
s.metadata['rubygems_mfa_required'] = 'true'
|
51
24
|
end
|
data/test/test_tacky.rb
CHANGED
@@ -1,33 +1,14 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
# (
|
4
|
-
#
|
5
|
-
# Copyright (c) 2020 Yegor Bugayenko
|
6
|
-
#
|
7
|
-
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
8
|
-
# of this software and associated documentation files (the 'Software'), to deal
|
9
|
-
# in the Software without restriction, including without limitation the rights
|
10
|
-
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
11
|
-
# copies of the Software, and to permit persons to whom the Software is
|
12
|
-
# furnished to do so, subject to the following conditions:
|
13
|
-
#
|
14
|
-
# The above copyright notice and this permission notice shall be included in all
|
15
|
-
# copies or substantial portions of the Software.
|
16
|
-
#
|
17
|
-
# THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
18
|
-
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
19
|
-
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
20
|
-
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
21
|
-
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
22
|
-
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
23
|
-
# SOFTWARE.
|
3
|
+
# SPDX-FileCopyrightText: Copyright (c) 2020-2025 Yegor Bugayenko
|
4
|
+
# SPDX-License-Identifier: MIT
|
24
5
|
|
25
6
|
require 'minitest/autorun'
|
26
7
|
require_relative '../lib/tacky'
|
27
8
|
|
28
9
|
# Tacky test.
|
29
10
|
# Author:: Yegor Bugayenko (yegor256@gmail.com)
|
30
|
-
# Copyright:: Copyright (c) 2020 Yegor Bugayenko
|
11
|
+
# Copyright:: Copyright (c) 2020-2025 Yegor Bugayenko
|
31
12
|
# License:: MIT
|
32
13
|
class TackyTest < Minitest::Test
|
33
14
|
def test_wraps_simple_object
|
@@ -37,7 +18,7 @@ class TackyTest < Minitest::Test
|
|
37
18
|
end
|
38
19
|
bar = Tacky.new(foo)
|
39
20
|
first = bar.value
|
40
|
-
|
21
|
+
assert_equal(bar.value, first)
|
41
22
|
end
|
42
23
|
|
43
24
|
def test_deep_caching
|
@@ -51,8 +32,8 @@ class TackyTest < Minitest::Test
|
|
51
32
|
end
|
52
33
|
bar = Tacky.new(foo, deep: true)
|
53
34
|
first = bar.child.value
|
54
|
-
|
55
|
-
|
35
|
+
assert_kind_of(Numeric, first)
|
36
|
+
assert_equal(bar.child.value, first)
|
56
37
|
end
|
57
38
|
|
58
39
|
def test_stops_on_string
|
@@ -61,6 +42,46 @@ class TackyTest < Minitest::Test
|
|
61
42
|
'hello'
|
62
43
|
end
|
63
44
|
bar = Tacky.new(foo)
|
64
|
-
|
45
|
+
assert_kind_of(String, bar.value)
|
46
|
+
end
|
47
|
+
|
48
|
+
def test_wraps_void_returning_methods
|
49
|
+
foo = Class.new do
|
50
|
+
attr_reader :done
|
51
|
+
|
52
|
+
def initialize
|
53
|
+
@done = 0
|
54
|
+
end
|
55
|
+
|
56
|
+
def touch
|
57
|
+
@done += 1
|
58
|
+
nil
|
59
|
+
end
|
60
|
+
end.new
|
61
|
+
bar = Tacky.new(foo)
|
62
|
+
bar.touch
|
63
|
+
bar.touch
|
64
|
+
assert_equal(1, foo.done)
|
65
|
+
end
|
66
|
+
|
67
|
+
def test_diff_methods_by_params
|
68
|
+
foo = Object.new
|
69
|
+
def foo.value(val)
|
70
|
+
val
|
71
|
+
end
|
72
|
+
bar = Tacky.new(foo)
|
73
|
+
assert_equal(5, bar.value(5))
|
74
|
+
assert_equal(10, bar.value(10))
|
75
|
+
end
|
76
|
+
|
77
|
+
def test_diff_methods_by_hash_params
|
78
|
+
foo = Object.new
|
79
|
+
def foo.value(*)
|
80
|
+
rand(1000)
|
81
|
+
end
|
82
|
+
bar = Tacky.new(foo)
|
83
|
+
assert_equal(bar.value(val: 5), bar.value(val: 5))
|
84
|
+
assert_equal(bar.value(val: 10), bar.value(val: 10))
|
85
|
+
assert_equal(bar.value(val: true), bar.value(val: true))
|
65
86
|
end
|
66
87
|
end
|
metadata
CHANGED
@@ -1,88 +1,16 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tacky
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.5.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Yegor Bugayenko
|
8
|
-
autorequire:
|
9
8
|
bindir: bin
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
12
|
-
dependencies:
|
13
|
-
|
14
|
-
|
15
|
-
requirement: !ruby/object:Gem::Requirement
|
16
|
-
requirements:
|
17
|
-
- - '='
|
18
|
-
- !ruby/object:Gem::Version
|
19
|
-
version: 5.11.3
|
20
|
-
type: :development
|
21
|
-
prerelease: false
|
22
|
-
version_requirements: !ruby/object:Gem::Requirement
|
23
|
-
requirements:
|
24
|
-
- - '='
|
25
|
-
- !ruby/object:Gem::Version
|
26
|
-
version: 5.11.3
|
27
|
-
- !ruby/object:Gem::Dependency
|
28
|
-
name: rake
|
29
|
-
requirement: !ruby/object:Gem::Requirement
|
30
|
-
requirements:
|
31
|
-
- - '='
|
32
|
-
- !ruby/object:Gem::Version
|
33
|
-
version: 12.3.1
|
34
|
-
type: :development
|
35
|
-
prerelease: false
|
36
|
-
version_requirements: !ruby/object:Gem::Requirement
|
37
|
-
requirements:
|
38
|
-
- - '='
|
39
|
-
- !ruby/object:Gem::Version
|
40
|
-
version: 12.3.1
|
41
|
-
- !ruby/object:Gem::Dependency
|
42
|
-
name: rdoc
|
43
|
-
requirement: !ruby/object:Gem::Requirement
|
44
|
-
requirements:
|
45
|
-
- - '='
|
46
|
-
- !ruby/object:Gem::Version
|
47
|
-
version: 4.3.0
|
48
|
-
type: :development
|
49
|
-
prerelease: false
|
50
|
-
version_requirements: !ruby/object:Gem::Requirement
|
51
|
-
requirements:
|
52
|
-
- - '='
|
53
|
-
- !ruby/object:Gem::Version
|
54
|
-
version: 4.3.0
|
55
|
-
- !ruby/object:Gem::Dependency
|
56
|
-
name: rubocop
|
57
|
-
requirement: !ruby/object:Gem::Requirement
|
58
|
-
requirements:
|
59
|
-
- - '='
|
60
|
-
- !ruby/object:Gem::Version
|
61
|
-
version: 0.62.0
|
62
|
-
type: :development
|
63
|
-
prerelease: false
|
64
|
-
version_requirements: !ruby/object:Gem::Requirement
|
65
|
-
requirements:
|
66
|
-
- - '='
|
67
|
-
- !ruby/object:Gem::Version
|
68
|
-
version: 0.62.0
|
69
|
-
- !ruby/object:Gem::Dependency
|
70
|
-
name: rubocop-rspec
|
71
|
-
requirement: !ruby/object:Gem::Requirement
|
72
|
-
requirements:
|
73
|
-
- - '='
|
74
|
-
- !ruby/object:Gem::Version
|
75
|
-
version: 1.31.0
|
76
|
-
type: :development
|
77
|
-
prerelease: false
|
78
|
-
version_requirements: !ruby/object:Gem::Requirement
|
79
|
-
requirements:
|
80
|
-
- - '='
|
81
|
-
- !ruby/object:Gem::Version
|
82
|
-
version: 1.31.0
|
83
|
-
description: |-
|
84
|
-
Decorate your existing Ruby object with Tacky
|
85
|
-
and all its methods will be cached.
|
10
|
+
date: 2025-03-27 00:00:00.000000000 Z
|
11
|
+
dependencies: []
|
12
|
+
description: Decorate your existing Ruby object with Tacky and all its methods will
|
13
|
+
be cached.
|
86
14
|
email: yegor256@gmail.com
|
87
15
|
executables: []
|
88
16
|
extensions: []
|
@@ -90,25 +18,34 @@ extra_rdoc_files:
|
|
90
18
|
- README.md
|
91
19
|
files:
|
92
20
|
- ".0pdd.yml"
|
21
|
+
- ".github/workflows/actionlint.yml"
|
22
|
+
- ".github/workflows/copyrights.yml"
|
23
|
+
- ".github/workflows/pdd.yml"
|
24
|
+
- ".github/workflows/rake.yml"
|
25
|
+
- ".github/workflows/reuse.yml"
|
26
|
+
- ".github/workflows/xcop.yml"
|
27
|
+
- ".github/workflows/yamllint.yml"
|
93
28
|
- ".gitignore"
|
94
29
|
- ".pdd"
|
95
30
|
- ".rubocop.yml"
|
96
31
|
- ".rultor.yml"
|
97
|
-
- ".travis.yml"
|
98
32
|
- Gemfile
|
33
|
+
- Gemfile.lock
|
99
34
|
- LICENSE.txt
|
35
|
+
- LICENSES/MIT.txt
|
100
36
|
- README.md
|
37
|
+
- REUSE.toml
|
101
38
|
- Rakefile
|
102
|
-
- appveyor.yml
|
103
39
|
- lib/tacky.rb
|
104
40
|
- logo.svg
|
41
|
+
- renovate.json
|
105
42
|
- tacky.gemspec
|
106
43
|
- test/test_tacky.rb
|
107
|
-
homepage:
|
44
|
+
homepage: https://github.com/yegor256/tacky
|
108
45
|
licenses:
|
109
46
|
- MIT
|
110
|
-
metadata:
|
111
|
-
|
47
|
+
metadata:
|
48
|
+
rubygems_mfa_required: 'true'
|
112
49
|
rdoc_options:
|
113
50
|
- "--charset=UTF-8"
|
114
51
|
require_paths:
|
@@ -124,9 +61,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
124
61
|
- !ruby/object:Gem::Version
|
125
62
|
version: '0'
|
126
63
|
requirements: []
|
127
|
-
rubygems_version: 3.
|
128
|
-
|
129
|
-
specification_version: 2
|
64
|
+
rubygems_version: 3.6.2
|
65
|
+
specification_version: 4
|
130
66
|
summary: Primitive Object Memoization for Ruby
|
131
|
-
test_files:
|
132
|
-
- test/test_tacky.rb
|
67
|
+
test_files: []
|
data/.travis.yml
DELETED
data/appveyor.yml
DELETED
@@ -1,25 +0,0 @@
|
|
1
|
-
version: '{build}'
|
2
|
-
skip_tags: true
|
3
|
-
clone_depth: 10
|
4
|
-
branches:
|
5
|
-
only:
|
6
|
-
- master
|
7
|
-
except:
|
8
|
-
- gh-pages
|
9
|
-
os: Windows Server 2012
|
10
|
-
environment:
|
11
|
-
matrix:
|
12
|
-
- ruby_version: "25-x64"
|
13
|
-
install:
|
14
|
-
- ps: |
|
15
|
-
$Env:PATH = "C:\Ruby${Env:ruby_version}\bin;${Env:PATH}"
|
16
|
-
- bundle config --local path vendor/bundle
|
17
|
-
- ruby -v
|
18
|
-
- bundle -v
|
19
|
-
build_script:
|
20
|
-
- bundle update
|
21
|
-
- bundle install
|
22
|
-
test_script:
|
23
|
-
- bundle exec rake --quiet
|
24
|
-
cache:
|
25
|
-
- vendor/bundle
|