├── .github └── workflows │ └── build.yml ├── .gitignore ├── CHANGELOG.md ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── cloak-rb.gemspec ├── gemfiles ├── redis4.gemfile └── redis45.gemfile ├── lib ├── cloak-rb.rb └── cloak │ ├── dalli.rb │ ├── redis.rb │ ├── utils.rb │ └── version.rb └── test ├── dalli_test.rb ├── redis_test.rb └── test_helper.rb /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankane/cloak/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankane/cloak/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankane/cloak/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankane/cloak/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankane/cloak/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankane/cloak/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankane/cloak/HEAD/Rakefile -------------------------------------------------------------------------------- /cloak-rb.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankane/cloak/HEAD/cloak-rb.gemspec -------------------------------------------------------------------------------- /gemfiles/redis4.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankane/cloak/HEAD/gemfiles/redis4.gemfile -------------------------------------------------------------------------------- /gemfiles/redis45.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankane/cloak/HEAD/gemfiles/redis45.gemfile -------------------------------------------------------------------------------- /lib/cloak-rb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankane/cloak/HEAD/lib/cloak-rb.rb -------------------------------------------------------------------------------- /lib/cloak/dalli.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankane/cloak/HEAD/lib/cloak/dalli.rb -------------------------------------------------------------------------------- /lib/cloak/redis.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankane/cloak/HEAD/lib/cloak/redis.rb -------------------------------------------------------------------------------- /lib/cloak/utils.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankane/cloak/HEAD/lib/cloak/utils.rb -------------------------------------------------------------------------------- /lib/cloak/version.rb: -------------------------------------------------------------------------------- 1 | module Cloak 2 | VERSION = "0.2.0" 3 | end 4 | -------------------------------------------------------------------------------- /test/dalli_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankane/cloak/HEAD/test/dalli_test.rb -------------------------------------------------------------------------------- /test/redis_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankane/cloak/HEAD/test/redis_test.rb -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankane/cloak/HEAD/test/test_helper.rb --------------------------------------------------------------------------------