nkallen-cache-money 0.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
metadata ADDED
@@ -0,0 +1,100 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: nkallen-cache-money
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.2.1
5
+ platform: ruby
6
+ authors:
7
+ - Nick Kallen
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+
12
+ date: 2008-11-24 00:00:00 -08:00
13
+ default_executable:
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: activerecord
17
+ version_requirement:
18
+ version_requirements: !ruby/object:Gem::Requirement
19
+ requirements:
20
+ - - ">"
21
+ - !ruby/object:Gem::Version
22
+ version: 2.2.0
23
+ version:
24
+ - !ruby/object:Gem::Dependency
25
+ name: activesupport
26
+ version_requirement:
27
+ version_requirements: !ruby/object:Gem::Requirement
28
+ requirements:
29
+ - - ">"
30
+ - !ruby/object:Gem::Version
31
+ version: 2.2.0
32
+ version:
33
+ description: Cache utilities.
34
+ email: nick@twitter.com
35
+ executables: []
36
+
37
+ extensions: []
38
+
39
+ extra_rdoc_files: []
40
+
41
+ files:
42
+ - README
43
+ - TODO
44
+ - UNSUPPORTED_FEATURES
45
+ - lib/cash/accessor.rb
46
+ - lib/cash/buffered.rb
47
+ - lib/cash/config.rb
48
+ - lib/cash/finders.rb
49
+ - lib/cash/index.rb
50
+ - lib/cash/local.rb
51
+ - lib/cash/lock.rb
52
+ - lib/cash/mock.rb
53
+ - lib/cash/query/abstract.rb
54
+ - lib/cash/query/calculation.rb
55
+ - lib/cash/query/primary_key.rb
56
+ - lib/cash/query/select.rb
57
+ - lib/cash/transactional.rb
58
+ - lib/cash/util/array.rb
59
+ - lib/cash/write_through.rb
60
+ - lib/cash.rb
61
+ has_rdoc: false
62
+ homepage: http://github.com/nkallen/cache-money
63
+ post_install_message:
64
+ rdoc_options: []
65
+
66
+ require_paths:
67
+ - lib
68
+ required_ruby_version: !ruby/object:Gem::Requirement
69
+ requirements:
70
+ - - ">="
71
+ - !ruby/object:Gem::Version
72
+ version: "0"
73
+ version:
74
+ required_rubygems_version: !ruby/object:Gem::Requirement
75
+ requirements:
76
+ - - ">="
77
+ - !ruby/object:Gem::Version
78
+ version: "0"
79
+ version:
80
+ requirements: []
81
+
82
+ rubyforge_project:
83
+ rubygems_version: 1.2.0
84
+ signing_key:
85
+ specification_version: 2
86
+ summary: Write-through and Read-through Cacheing for ActiveRecord
87
+ test_files:
88
+ - config/environment.rb
89
+ - config/memcache.yml
90
+ - db/schema.rb
91
+ - spec/cash/accessor_spec.rb
92
+ - spec/cash/active_record_spec.rb
93
+ - spec/cash/calculations_spec.rb
94
+ - spec/cash/finders_spec.rb
95
+ - spec/cash/lock_spec.rb
96
+ - spec/cash/order_spec.rb
97
+ - spec/cash/transactional_spec.rb
98
+ - spec/cash/window_spec.rb
99
+ - spec/cash/write_through_spec.rb
100
+ - spec/spec_helper.rb