├── .github └── workflows │ └── ci.yml ├── .gitignore ├── CHANGELOG.md ├── Gemfile ├── LICENSE.md ├── README.md ├── Rakefile ├── lib ├── memoist.rb └── memoist │ └── version.rb ├── memoist.gemspec ├── script └── benchmark.rb └── test ├── memoist_test.rb └── test_helper.rb /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrudy/memoist/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrudy/memoist/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrudy/memoist/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrudy/memoist/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrudy/memoist/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrudy/memoist/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrudy/memoist/HEAD/Rakefile -------------------------------------------------------------------------------- /lib/memoist.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrudy/memoist/HEAD/lib/memoist.rb -------------------------------------------------------------------------------- /lib/memoist/version.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | module Memoist 4 | VERSION = '0.16.2'.freeze 5 | end 6 | -------------------------------------------------------------------------------- /memoist.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrudy/memoist/HEAD/memoist.gemspec -------------------------------------------------------------------------------- /script/benchmark.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrudy/memoist/HEAD/script/benchmark.rb -------------------------------------------------------------------------------- /test/memoist_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrudy/memoist/HEAD/test/memoist_test.rb -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrudy/memoist/HEAD/test/test_helper.rb --------------------------------------------------------------------------------