af-cache-money 0.2.10

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,112 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: af-cache-money
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.2.10
5
+ platform: ruby
6
+ authors:
7
+ - Nick Kallen
8
+ - Ashley Martens
9
+ - Chad Ingram
10
+ autorequire:
11
+ bindir: bin
12
+ cert_chain: []
13
+
14
+ date: 2010-01-08 00:00:00 -05:00
15
+ default_executable:
16
+ dependencies:
17
+ - !ruby/object:Gem::Dependency
18
+ name: activerecord
19
+ type: :runtime
20
+ version_requirement:
21
+ version_requirements: !ruby/object:Gem::Requirement
22
+ requirements:
23
+ - - ">="
24
+ - !ruby/object:Gem::Version
25
+ version: 2.2.0
26
+ version:
27
+ - !ruby/object:Gem::Dependency
28
+ name: activesupport
29
+ type: :runtime
30
+ version_requirement:
31
+ version_requirements: !ruby/object:Gem::Requirement
32
+ requirements:
33
+ - - ">="
34
+ - !ruby/object:Gem::Version
35
+ version: 2.2.0
36
+ version:
37
+ description: Cache utilities.
38
+ email: chad@aurorafeint.com
39
+ executables: []
40
+
41
+ extensions: []
42
+
43
+ extra_rdoc_files: []
44
+
45
+ files:
46
+ - README
47
+ - TODO
48
+ - UNSUPPORTED_FEATURES
49
+ - lib/cash/accessor.rb
50
+ - lib/cash/buffered.rb
51
+ - lib/cash/config.rb
52
+ - lib/cash/finders.rb
53
+ - lib/cash/index.rb
54
+ - lib/cash/local.rb
55
+ - lib/cash/lock.rb
56
+ - lib/cash/fake.rb
57
+ - lib/cash/query/abstract.rb
58
+ - lib/cash/query/calculation.rb
59
+ - lib/cash/query/primary_key.rb
60
+ - lib/cash/query/select.rb
61
+ - lib/cash/request.rb
62
+ - lib/cash/transactional.rb
63
+ - lib/cash/util/array.rb
64
+ - lib/cash/util/marshal.rb
65
+ - lib/cash/write_through.rb
66
+ - lib/cache_money.rb
67
+ - lib/memcached_wrapper.rb
68
+ - rails/init.rb
69
+ - init.rb
70
+ has_rdoc: false
71
+ homepage: http://github.com/matrix9180/cache-money
72
+ licenses: []
73
+
74
+ post_install_message:
75
+ rdoc_options: []
76
+
77
+ require_paths:
78
+ - lib
79
+ required_ruby_version: !ruby/object:Gem::Requirement
80
+ requirements:
81
+ - - ">="
82
+ - !ruby/object:Gem::Version
83
+ version: "0"
84
+ version:
85
+ required_rubygems_version: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - ">="
88
+ - !ruby/object:Gem::Version
89
+ version: "0"
90
+ version:
91
+ requirements: []
92
+
93
+ rubyforge_project:
94
+ rubygems_version: 1.3.5
95
+ signing_key:
96
+ specification_version: 3
97
+ summary: Write-through and Read-through Cacheing for ActiveRecord
98
+ test_files:
99
+ - config/environment.rb
100
+ - config/memcached.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/cash/marshal_spec.rb
112
+ - spec/spec_helper.rb