This repository has been archived by the owner on Mar 5, 2021. It is now read-only.
forked from Shopify/identity_cache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
identity_cache.gemspec
37 lines (31 loc) · 1.73 KB
/
identity_cache.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/identity_cache/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Camilo Lopez", "Tom Burns", "Harry Brundage", "Dylan Smith", "Tobias Lütke"]
gem.email = ["[email protected]"]
gem.description = %q{Opt in read through ActiveRecord caching.}
gem.summary = %q{IdentityCache lets you specify how you want to cache your model objects, at the model level, and adds a number of convenience methods for accessing those objects through the cache. Memcached is used as the backend cache store, and the database is only hit when a copy of the object cannot be found in Memcached.}
gem.homepage = "https://github.com/Shopify/identity_cache"
gem.files = `git ls-files`.split($\)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.name = "identity_cache"
gem.require_paths = ["lib"]
gem.version = IdentityCache::VERSION
gem.add_dependency('ar_transaction_changes', '0.0.1')
gem.add_dependency('activerecord', '~> 3.2.12')
gem.add_dependency('activesupport', '~> 3.2.12')
gem.add_development_dependency('memcache-client')
gem.add_development_dependency('rake')
gem.add_development_dependency('mocha', '0.14.0')
if RUBY_PLATFORM == 'java'
gem.add_development_dependency 'jruby-openssl'
gem.add_development_dependency 'activerecord-jdbcmysql-adapter'
gem.add_development_dependency 'jdbc-mysql'
else
gem.add_development_dependency('debugger')
gem.add_development_dependency('ruby-prof')
gem.add_development_dependency('cityhash', '0.6.0')
gem.add_development_dependency('mysql2')
end
end