Sha256: 05ec1f1b1d11b6aa4dcfdec3f85fa10ed2043d114c73ec406b4ed20c14f0f1f3
Contents?: true
Size: 599 Bytes
Versions: 1
Compression:
Stored size: 599 Bytes
Contents
# ThreadCache A simple thread-local cache store ## Install Install it from rubygems.org in your terminal: ```sh gem install thread_cache ``` Or via `Gemfile` in your project: ```sh source 'https://rubygems.org' gem 'thread_cache', '~> 1.0' ``` Or build and install the gem locally: ```sh gem build thread_cache.gemspec gem install thread_cache-1.0.0.gem ``` Require it in your Ruby code and the `ThreadCache` class will be available: ```rb require 'thread_cache' ``` ## Tests Run tests with: ```sh bundle exec rspec ``` ## Linter Check your code with: ```sh bundle exec rubocop ```
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
thread_cache-1.0.0 | README.md |