dailybooth-cache-money 0.2.12

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