ngmoco-cache-money 0.2.9

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