Sha256: ffae2bdd21225d7949f9d90f4c3e9c9b2ae4202c54989fc8844564830eeae66e

Contents?: true

Size: 1.72 KB

Versions: 3

Compression:

Stored size: 1.72 KB

Contents

# -*- encoding: utf-8 -*-
require File.expand_path('../lib/second_level_cache/version', __FILE__)
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)

Gem::Specification.new do |gem|
  gem.authors       = ['Hooopo']
  gem.email         = ['hoooopo@gmail.com']
  gem.description   = 'Write Through and Read Through caching library inspired by CacheMoney and cache_fu, support  ActiveRecord 4.'
  gem.summary       = <<-SUMMARY
  SecondLevelCache is a write-through and read-through caching library inspired by Cache Money and cache_fu, support only Rails3 and ActiveRecord.

  Read-Through: Queries by ID, like current_user.articles.find(params[:id]), will first look in cache store and then look in the database for the results of that query. If there is a cache miss, it will populate the cache.

  Write-Through: As objects are created, updated, and deleted, all of the caches are automatically kept up-to-date and coherent.
  SUMMARY

  gem.homepage      = 'https://github.com/hooopo/second_level_cache'

  gem.files         = Dir.glob('lib/**/*.rb') + [
    'README.md',
    'Rakefile',
    'Gemfile',
    'CHANGELOG.md',
    'second_level_cache.gemspec'
  ]
  gem.test_files    = Dir.glob('test/**/*.rb')
  gem.executables   = gem.files.grep(%r{^bin/})
  gem.name          = 'second_level_cache'
  gem.require_paths = ['lib']
  gem.version       = SecondLevelCache::VERSION

  gem.add_runtime_dependency 'activesupport', ['>= 5.2', '< 7']
  gem.add_runtime_dependency 'activerecord', ['>= 5.2', '< 7']

  gem.add_development_dependency 'sqlite3', '> 1.4'
  gem.add_development_dependency 'rake'
  gem.add_development_dependency 'database_cleaner'
  gem.add_development_dependency 'rubocop', "~> 0.52.0"
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
second_level_cache-2.6.0 second_level_cache.gemspec
second_level_cache-2.5.3 second_level_cache.gemspec
second_level_cache-2.5.2 second_level_cache.gemspec