shanboli-cache-money 0.2.6

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,159 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: shanboli-cache-money
3
+ version: !ruby/object:Gem::Version
4
+ hash: 27
5
+ prerelease: false
6
+ segments:
7
+ - 0
8
+ - 2
9
+ - 6
10
+ version: 0.2.6
11
+ platform: ruby
12
+ authors:
13
+ - Nick Kallen
14
+ - Shanbo Li
15
+ autorequire:
16
+ bindir: bin
17
+ cert_chain: []
18
+
19
+ date: 2010-10-10 00:00:00 +08:00
20
+ default_executable:
21
+ dependencies:
22
+ - !ruby/object:Gem::Dependency
23
+ name: activerecord
24
+ prerelease: false
25
+ requirement: &id001 !ruby/object:Gem::Requirement
26
+ none: false
27
+ requirements:
28
+ - - ">="
29
+ - !ruby/object:Gem::Version
30
+ hash: 7
31
+ segments:
32
+ - 2
33
+ - 2
34
+ - 0
35
+ version: 2.2.0
36
+ type: :runtime
37
+ version_requirements: *id001
38
+ - !ruby/object:Gem::Dependency
39
+ name: activesupport
40
+ prerelease: false
41
+ requirement: &id002 !ruby/object:Gem::Requirement
42
+ none: false
43
+ requirements:
44
+ - - ">="
45
+ - !ruby/object:Gem::Version
46
+ hash: 7
47
+ segments:
48
+ - 2
49
+ - 2
50
+ - 0
51
+ version: 2.2.0
52
+ type: :runtime
53
+ version_requirements: *id002
54
+ - !ruby/object:Gem::Dependency
55
+ name: dalli
56
+ prerelease: false
57
+ requirement: &id003 !ruby/object:Gem::Requirement
58
+ none: false
59
+ requirements:
60
+ - - ">="
61
+ - !ruby/object:Gem::Version
62
+ hash: 53
63
+ segments:
64
+ - 0
65
+ - 9
66
+ - 7
67
+ version: 0.9.7
68
+ type: :runtime
69
+ version_requirements: *id003
70
+ description: Cache utilities.
71
+ email: shanboli@gmail.com
72
+ executables: []
73
+
74
+ extensions: []
75
+
76
+ extra_rdoc_files: []
77
+
78
+ files:
79
+ - README
80
+ - TODO
81
+ - UNSUPPORTED_FEATURES
82
+ - lib/cash/accessor.rb
83
+ - lib/cash/buffered.rb
84
+ - lib/cash/config.rb
85
+ - lib/cash/finders.rb
86
+ - lib/cash/index.rb
87
+ - lib/cash/local.rb
88
+ - lib/cash/lock.rb
89
+ - lib/cash/mock.rb
90
+ - lib/cash/query/abstract.rb
91
+ - lib/cash/query/calculation.rb
92
+ - lib/cash/query/primary_key.rb
93
+ - lib/cash/query/select.rb
94
+ - lib/cash/request.rb
95
+ - lib/cash/transactional.rb
96
+ - lib/cash/util/array.rb
97
+ - lib/cash/write_through.rb
98
+ - lib/cache_money.rb
99
+ - config/environment.rb
100
+ - config/memcache.yml
101
+ - db/schema.rb
102
+ - spec/cash/accessor_spec.rb
103
+ - spec/cash/active_record_spec.rb
104
+ - spec/cash/calculations_spec.rb
105
+ - spec/cash/finders_spec.rb
106
+ - spec/cash/lock_spec.rb
107
+ - spec/cash/order_spec.rb
108
+ - spec/cash/transactional_spec.rb
109
+ - spec/cash/window_spec.rb
110
+ - spec/cash/write_through_spec.rb
111
+ - spec/spec_helper.rb
112
+ has_rdoc: true
113
+ homepage: http://github.com/shanboli/cache-money
114
+ licenses: []
115
+
116
+ post_install_message:
117
+ rdoc_options: []
118
+
119
+ require_paths:
120
+ - lib
121
+ required_ruby_version: !ruby/object:Gem::Requirement
122
+ none: false
123
+ requirements:
124
+ - - ">="
125
+ - !ruby/object:Gem::Version
126
+ hash: 3
127
+ segments:
128
+ - 0
129
+ version: "0"
130
+ required_rubygems_version: !ruby/object:Gem::Requirement
131
+ none: false
132
+ requirements:
133
+ - - ">="
134
+ - !ruby/object:Gem::Version
135
+ hash: 3
136
+ segments:
137
+ - 0
138
+ version: "0"
139
+ requirements: []
140
+
141
+ rubyforge_project:
142
+ rubygems_version: 1.3.7
143
+ signing_key:
144
+ specification_version: 3
145
+ summary: Write-through and Read-through Cacheing for ActiveRecord
146
+ test_files:
147
+ - config/environment.rb
148
+ - config/memcache.yml
149
+ - db/schema.rb
150
+ - spec/cash/accessor_spec.rb
151
+ - spec/cash/active_record_spec.rb
152
+ - spec/cash/calculations_spec.rb
153
+ - spec/cash/finders_spec.rb
154
+ - spec/cash/lock_spec.rb
155
+ - spec/cash/order_spec.rb
156
+ - spec/cash/transactional_spec.rb
157
+ - spec/cash/window_spec.rb
158
+ - spec/cash/write_through_spec.rb
159
+ - spec/spec_helper.rb