public
Description: A Write-Through Cacheing Library for ActiveRecord
Homepage:
Clone URL: git://github.com/nkallen/cache-money.git
cache-money / cache-money.gemspec
100644 52 lines (51 sloc) 1.528 kb
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
Gem::Specification.new do |s|
  s.name = "cache-money"
  s.version = "0.2.5"
  s.date = "2008-11-24"
  s.summary = "Write-through and Read-through Cacheing for ActiveRecord"
  s.email = "nick@twitter.com"
  s.homepage = "http://github.com/nkallen/cache-money"
  s.description = "Cache utilities."
  s.has_rdoc = false
  s.authors = ["Nick Kallen"]
  s.files = [
    "README",
    "TODO",
    "UNSUPPORTED_FEATURES",
    "lib/cash/accessor.rb",
    "lib/cash/buffered.rb",
    "lib/cash/config.rb",
    "lib/cash/finders.rb",
    "lib/cash/index.rb",
    "lib/cash/local.rb",
    "lib/cash/lock.rb",
    "lib/cash/mock.rb",
    "lib/cash/query/abstract.rb",
    "lib/cash/query/calculation.rb",
    "lib/cash/query/primary_key.rb",
    "lib/cash/query/select.rb",
    "lib/cash/request.rb",
    "lib/cash/transactional.rb",
    "lib/cash/util/array.rb",
    "lib/cash/write_through.rb",
    "lib/cache_money.rb"
  ]
  s.test_files = [
    "config/environment.rb",
    "config/memcache.yml",
    "db/schema.rb",
    "spec/cash/accessor_spec.rb",
    "spec/cash/active_record_spec.rb",
    "spec/cash/calculations_spec.rb",
    "spec/cash/finders_spec.rb",
    "spec/cash/lock_spec.rb",
    "spec/cash/order_spec.rb",
    "spec/cash/transactional_spec.rb",
    "spec/cash/window_spec.rb",
    "spec/cash/write_through_spec.rb",
    "spec/spec_helper.rb"
  ]
  s.add_dependency("activerecord", [">= 2.2.0"])
  s.add_dependency("activesupport", [">= 2.2.0"])
  s.add_dependency("memcache-client", [">= 1.5.0 "])
end