parolkar-cache-money 0.2.5

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,114 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: parolkar-cache-money
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.2.5
5
+ platform: ruby
6
+ authors:
7
+ - Nick Kallen
8
+ - Abhishek Parolkar
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+
13
+ date: 2008-11-24 00:00:00 -08:00
14
+ default_executable:
15
+ dependencies:
16
+ - !ruby/object:Gem::Dependency
17
+ name: activerecord
18
+ type: :runtime
19
+ version_requirement:
20
+ version_requirements: !ruby/object:Gem::Requirement
21
+ requirements:
22
+ - - ">="
23
+ - !ruby/object:Gem::Version
24
+ version: 2.2.0
25
+ version:
26
+ - !ruby/object:Gem::Dependency
27
+ name: activesupport
28
+ type: :runtime
29
+ version_requirement:
30
+ version_requirements: !ruby/object:Gem::Requirement
31
+ requirements:
32
+ - - ">="
33
+ - !ruby/object:Gem::Version
34
+ version: 2.2.0
35
+ version:
36
+ - !ruby/object:Gem::Dependency
37
+ name: memcache-client
38
+ type: :runtime
39
+ version_requirement:
40
+ version_requirements: !ruby/object:Gem::Requirement
41
+ requirements:
42
+ - - ">="
43
+ - !ruby/object:Gem::Version
44
+ version: 1.5.0
45
+ version:
46
+ description: Cache utilities.
47
+ email: abhishek@parolkar.com
48
+ executables: []
49
+
50
+ extensions: []
51
+
52
+ extra_rdoc_files: []
53
+
54
+ files:
55
+ - README
56
+ - TODO
57
+ - UNSUPPORTED_FEATURES
58
+ - lib/cash/accessor.rb
59
+ - lib/cash/buffered.rb
60
+ - lib/cash/config.rb
61
+ - lib/cash/finders.rb
62
+ - lib/cash/index.rb
63
+ - lib/cash/local.rb
64
+ - lib/cash/lock.rb
65
+ - lib/cash/mock.rb
66
+ - lib/cash/query/abstract.rb
67
+ - lib/cash/query/calculation.rb
68
+ - lib/cash/query/primary_key.rb
69
+ - lib/cash/query/select.rb
70
+ - lib/cash/request.rb
71
+ - lib/cash/transactional.rb
72
+ - lib/cash/util/array.rb
73
+ - lib/cash/write_through.rb
74
+ - lib/cache_money.rb
75
+ has_rdoc: false
76
+ homepage: http://github.com/nkallen/cache-money
77
+ post_install_message:
78
+ rdoc_options: []
79
+
80
+ require_paths:
81
+ - lib
82
+ required_ruby_version: !ruby/object:Gem::Requirement
83
+ requirements:
84
+ - - ">="
85
+ - !ruby/object:Gem::Version
86
+ version: "0"
87
+ version:
88
+ required_rubygems_version: !ruby/object:Gem::Requirement
89
+ requirements:
90
+ - - ">="
91
+ - !ruby/object:Gem::Version
92
+ version: "0"
93
+ version:
94
+ requirements: []
95
+
96
+ rubyforge_project:
97
+ rubygems_version: 1.2.0
98
+ signing_key:
99
+ specification_version: 2
100
+ summary: "[This is Fork] Write-through and Read-through Cacheing for ActiveRecord"
101
+ test_files:
102
+ - config/environment.rb
103
+ - config/memcache.yml
104
+ - db/schema.rb
105
+ - spec/cash/accessor_spec.rb
106
+ - spec/cash/active_record_spec.rb
107
+ - spec/cash/calculations_spec.rb
108
+ - spec/cash/finders_spec.rb
109
+ - spec/cash/lock_spec.rb
110
+ - spec/cash/order_spec.rb
111
+ - spec/cash/transactional_spec.rb
112
+ - spec/cash/window_spec.rb
113
+ - spec/cash/write_through_spec.rb
114
+ - spec/spec_helper.rb