├── .github ├── release.yml └── workflows │ ├── bump-request.yml │ ├── ci.yml │ ├── github-label-sync.yml │ └── release.yml ├── .gitignore ├── .rubocop.yml ├── Gemfile ├── Gemfile.lock ├── LICENSE.txt ├── README.md ├── Rakefile ├── lib ├── mem.rb └── mem │ ├── core_ext.rb │ └── version.rb ├── mem.gemspec └── spec ├── mem_spec.rb └── spec_helper.rb /.github/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r7kamura/mem/HEAD/.github/release.yml -------------------------------------------------------------------------------- /.github/workflows/bump-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r7kamura/mem/HEAD/.github/workflows/bump-request.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r7kamura/mem/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/github-label-sync.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r7kamura/mem/HEAD/.github/workflows/github-label-sync.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r7kamura/mem/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /.bundle/ 2 | /pkg/ 3 | /tmp/ 4 | -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r7kamura/mem/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r7kamura/mem/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r7kamura/mem/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r7kamura/mem/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r7kamura/mem/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r7kamura/mem/HEAD/Rakefile -------------------------------------------------------------------------------- /lib/mem.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r7kamura/mem/HEAD/lib/mem.rb -------------------------------------------------------------------------------- /lib/mem/core_ext.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | require 'mem' 4 | 5 | Object.include Mem 6 | -------------------------------------------------------------------------------- /lib/mem/version.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | module Mem 4 | VERSION = '0.2.0' 5 | end 6 | -------------------------------------------------------------------------------- /mem.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r7kamura/mem/HEAD/mem.gemspec -------------------------------------------------------------------------------- /spec/mem_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r7kamura/mem/HEAD/spec/mem_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r7kamura/mem/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------