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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 40598eee1ed82e2e5006eecc35038a4bab02536fa749765e3d938ab79cb3d881
4
- data.tar.gz: f5502a63ac7ed1c7f9930973c97ac10054e61e75a3597d7be57c0df61c662739
3
+ metadata.gz: 66e070784bf3eab59a930f0d63a5f910fb33f0bd6642c8d2148ea96adef88c9c
4
+ data.tar.gz: 94e8f05a030e86e042f839bb3f14c9bd10f193af4187ed83a7c54f4e94ac59c1
5
5
  SHA512:
6
- metadata.gz: dd4948163e7a0a876bd22eef5b16d82149eca20a78994c876966f669906c0806a0d03ac8d8aaaa5516bbf344b1b789e1da84a0227d2d2f85b290ac360ce858c9
7
- data.tar.gz: 0bd64a36d50f834ca9ca3ed7eb8bdea38897a23480a29b4d7aa7e56fc18f303d187ecdae2c7f51ba838c71b8af6eb8783ea31ed42486e6fec27b21be0062c6da
6
+ metadata.gz: a4ca0db0df2352b30efa323b54ec6145a99cba13a57fa3d84c44d56ab6a949b97a664b100031b102d56bc935129275bccbe3e7c225074d609e7148da0ded2f8a
7
+ data.tar.gz: acb6474481c989d587516c2fd6a10220f2143e4c5eccd2d5eb3bec9b6442fc5b76e5628a3afa07e4e495feb57776fa0935bd3cdd37e8b618acacc34a4d644326
data/.0pdd.yml CHANGED
@@ -1,8 +1,8 @@
1
+ # SPDX-FileCopyrightText: Copyright (c) 2020-2025 Yegor Bugayenko
2
+ # SPDX-License-Identifier: MIT
3
+ ---
1
4
  errors:
2
5
  - yegor256@gmail.com
3
- # alerts:
4
- # github:
5
- # - yegor256
6
6
 
7
7
  tags:
8
8
  - pdd
@@ -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
@@ -1,6 +1,10 @@
1
- Gemfile.lock
2
1
  *.gem
3
- .bundle/
4
2
  .DS_Store
5
- rdoc/
3
+ .bundle/
6
4
  .idea/
5
+ .yardoc/
6
+ coverage/
7
+ doc/
8
+ node_modules/
9
+ rdoc/
10
+ vendor/
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
- Style/MethodMissingSuper:
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/AlignParameters:
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
- export GEM_HOME=~/.ruby
5
- export GEM_PATH=$GEM_HOME:$GEM_PATH
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
@@ -1,6 +1,6 @@
1
1
  The MIT License (MIT)
2
2
 
3
- Copyright (c) 2019 Yegor Bugayenko
3
+ Copyright (c) 2020-2025 Yegor Bugayenko
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
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
- <img src="/logo.svg" width="64px" height="64px"/>
1
+ # Caching Decorator for Ruby Objects
2
2
 
3
3
  [![EO principles respected here](https://www.elegantobjects.org/badge.svg)](https://www.elegantobjects.org)
4
- [![DevOps By Rultor.com](http://www.rultor.com/b/yegor256/tacky)](http://www.rultor.com/p/yegor256/tacky)
4
+ [![DevOps By Rultor.com](https://www.rultor.com/b/yegor256/tacky)](https://www.rultor.com/p/yegor256/tacky)
5
5
  [![We recommend RubyMine](https://www.elegantobjects.org/rubymine.svg)](https://www.jetbrains.com/ruby/)
6
6
 
7
- [![Build Status](https://travis-ci.org/yegor256/tacky.svg)](https://travis-ci.org/yegor256/tacky)
8
- [![Build status](https://ci.appveyor.com/api/projects/status/e61qudqccs0fu8xt?svg=true)](https://ci.appveyor.com/project/yegor256/tacky)
9
- [![Gem Version](https://badge.fury.io/rb/tacky.svg)](http://badge.fury.io/rb/tacky)
7
+ [![rake](https://github.com/yegor256/tacky/actions/workflows/rake.yml/badge.svg)](https://github.com/yegor256/tacky/actions/workflows/rake.yml)
8
+ [![Gem Version](https://badge.fury.io/rb/tacky.svg)](https://badge.fury.io/rb/tacky)
10
9
  [![Maintainability](https://api.codeclimate.com/v1/badges/224939b58aa606fdd56c/maintainability)](https://codeclimate.com/github/yegor256/tacky/maintainability)
11
- [![Yard Docs](http://img.shields.io/badge/yard-docs-blue.svg)](http://rubydoc.info/github/yegor256/tacky/master/frames)
12
-
10
+ [![Yard Docs](https://img.shields.io/badge/yard-docs-blue.svg)](https://rubydoc.info/github/yegor256/tacky/master/frames)
13
11
  [![Hits-of-Code](https://hitsofcode.com/github/yegor256/tacky)](https://hitsofcode.com/view/github/yegor256/tacky)
14
12
  [![License](https://img.shields.io/badge/license-MIT-green.svg)](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
- obj = Tacky.new(obj)
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 [these guidelines](https://www.yegor256.com/2014/04/15/github-guidelines.html).
44
- Make sure you build is green before you contribute
45
- your pull request. You will need to have [Ruby](https://www.ruby-lang.org/en/) 2.3+ and
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 = FileList['coverage']
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.requires << 'rubocop-rspec'
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
- # (The MIT License)
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
@@ -16,4 +16,4 @@
16
16
  </g>
17
17
  </g>
18
18
  </g>
19
- </svg>
19
+ </svg>
data/renovate.json ADDED
@@ -0,0 +1,6 @@
1
+ {
2
+ "$schema": "https://docs.renovatebot.com/renovate-schema.json",
3
+ "extends": [
4
+ "config:base"
5
+ ]
6
+ }
data/tacky.gemspec CHANGED
@@ -1,51 +1,24 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- # (The MIT License)
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.specification_version = 2 if s.respond_to? :specification_version=
28
- if s.respond_to? :required_rubygems_version=
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.3.5'
11
+ s.version = '0.5.0'
35
12
  s.license = 'MIT'
36
13
  s.summary = 'Primitive Object Memoization for Ruby'
37
- s.description = 'Decorate your existing Ruby object with Tacky
38
- and all its methods will be cached.'
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 = 'http://github.com/yegor256/tacky'
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.add_development_dependency 'minitest', '5.11.3'
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
- # (The MIT License)
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
- assert(bar.value == first)
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
- assert(first.is_a?(Numeric))
55
- assert(bar.child.value == first)
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
- assert(bar.value.is_a?(String))
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.3.5
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: 2020-04-28 00:00:00.000000000 Z
12
- dependencies:
13
- - !ruby/object:Gem::Dependency
14
- name: minitest
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: http://github.com/yegor256/tacky
44
+ homepage: https://github.com/yegor256/tacky
108
45
  licenses:
109
46
  - MIT
110
- metadata: {}
111
- post_install_message:
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.0.1
128
- signing_key:
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
@@ -1,12 +0,0 @@
1
- language: ruby
2
- rvm:
3
- - 2.6.0
4
- branches:
5
- only:
6
- - master
7
- install:
8
- - bundle install
9
- script:
10
- - set -e
11
- - bundle exec rake
12
-
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