-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathquery_memcached.gemspec
More file actions
270 lines (266 loc) · 12.2 KB
/
query_memcached.gemspec
File metadata and controls
270 lines (266 loc) · 12.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = %q{query_memcached}
s.version = "2.2.2"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Fernando Blat"]
s.date = %q{2009-07-27}
s.email = ["ferblape@gmail.com"]
s.extra_rdoc_files = [
"README.markdown"
]
s.files = [
".gitignore",
"MIT-LICENSE",
"README.markdown",
"RUNNING_TESTS",
"Rakefile",
"TODO",
"init.rb",
"lib/extensions/lock.rb",
"lib/query_memcached.rb",
"test/query_memcached_test.rb",
"test/testing_app/README",
"test/testing_app/Rakefile",
"test/testing_app/app/controllers/application.rb",
"test/testing_app/app/helpers/application_helper.rb",
"test/testing_app/app/models/author.rb",
"test/testing_app/app/models/auto_id.rb",
"test/testing_app/app/models/binary.rb",
"test/testing_app/app/models/book.rb",
"test/testing_app/app/models/categorization.rb",
"test/testing_app/app/models/category.rb",
"test/testing_app/app/models/citation.rb",
"test/testing_app/app/models/club.rb",
"test/testing_app/app/models/column_name.rb",
"test/testing_app/app/models/comment.rb",
"test/testing_app/app/models/company.rb",
"test/testing_app/app/models/company_in_module.rb",
"test/testing_app/app/models/computer.rb",
"test/testing_app/app/models/contact.rb",
"test/testing_app/app/models/course.rb",
"test/testing_app/app/models/customer.rb",
"test/testing_app/app/models/default.rb",
"test/testing_app/app/models/developer.rb",
"test/testing_app/app/models/edge.rb",
"test/testing_app/app/models/entrant.rb",
"test/testing_app/app/models/guid.rb",
"test/testing_app/app/models/item.rb",
"test/testing_app/app/models/job.rb",
"test/testing_app/app/models/joke.rb",
"test/testing_app/app/models/keyboard.rb",
"test/testing_app/app/models/legacy_thing.rb",
"test/testing_app/app/models/matey.rb",
"test/testing_app/app/models/member.rb",
"test/testing_app/app/models/membership.rb",
"test/testing_app/app/models/minimalistic.rb",
"test/testing_app/app/models/mixed_case_monkey.rb",
"test/testing_app/app/models/movie.rb",
"test/testing_app/app/models/order.rb",
"test/testing_app/app/models/owner.rb",
"test/testing_app/app/models/parrot.rb",
"test/testing_app/app/models/person.rb",
"test/testing_app/app/models/pet.rb",
"test/testing_app/app/models/pirate.rb",
"test/testing_app/app/models/post.rb",
"test/testing_app/app/models/price_estimate.rb",
"test/testing_app/app/models/project.rb",
"test/testing_app/app/models/reader.rb",
"test/testing_app/app/models/reference.rb",
"test/testing_app/app/models/reply.rb",
"test/testing_app/app/models/ship.rb",
"test/testing_app/app/models/sponsor.rb",
"test/testing_app/app/models/subject.rb",
"test/testing_app/app/models/subscriber.rb",
"test/testing_app/app/models/subscription.rb",
"test/testing_app/app/models/tag.rb",
"test/testing_app/app/models/tagging.rb",
"test/testing_app/app/models/task.rb",
"test/testing_app/app/models/topic.rb",
"test/testing_app/app/models/treasure.rb",
"test/testing_app/app/models/vertex.rb",
"test/testing_app/app/models/warehouse_thing.rb",
"test/testing_app/config/boot.rb",
"test/testing_app/config/database.yml",
"test/testing_app/config/environment.rb",
"test/testing_app/config/environments/development.rb",
"test/testing_app/config/environments/production.rb",
"test/testing_app/config/environments/test.rb",
"test/testing_app/config/initializers/inflections.rb",
"test/testing_app/config/initializers/mime_types.rb",
"test/testing_app/config/initializers/new_rails_defaults.rb",
"test/testing_app/config/routes.rb",
"test/testing_app/db/schema.rb",
"test/testing_app/script/about",
"test/testing_app/script/console",
"test/testing_app/script/dbconsole",
"test/testing_app/script/destroy",
"test/testing_app/script/generate",
"test/testing_app/script/performance/benchmarker",
"test/testing_app/script/performance/profiler",
"test/testing_app/script/performance/request",
"test/testing_app/script/plugin",
"test/testing_app/script/process/inspector",
"test/testing_app/script/process/reaper",
"test/testing_app/script/process/spawner",
"test/testing_app/script/runner",
"test/testing_app/script/server",
"test/testing_app/test/fixtures/accounts.yml",
"test/testing_app/test/fixtures/all/developers.yml",
"test/testing_app/test/fixtures/all/people.csv",
"test/testing_app/test/fixtures/all/tasks.yml",
"test/testing_app/test/fixtures/author_addresses.yml",
"test/testing_app/test/fixtures/author_favorites.yml",
"test/testing_app/test/fixtures/authors.yml",
"test/testing_app/test/fixtures/binaries.yml",
"test/testing_app/test/fixtures/books.yml",
"test/testing_app/test/fixtures/categories.yml",
"test/testing_app/test/fixtures/categories/special_categories.yml",
"test/testing_app/test/fixtures/categories/subsubdir/arbitrary_filename.yml",
"test/testing_app/test/fixtures/categories_posts.yml",
"test/testing_app/test/fixtures/categorizations.yml",
"test/testing_app/test/fixtures/clubs.yml",
"test/testing_app/test/fixtures/comments.yml",
"test/testing_app/test/fixtures/companies.yml",
"test/testing_app/test/fixtures/computers.yml",
"test/testing_app/test/fixtures/courses.yml",
"test/testing_app/test/fixtures/customers.yml",
"test/testing_app/test/fixtures/developers.yml",
"test/testing_app/test/fixtures/developers_projects.yml",
"test/testing_app/test/fixtures/edges.yml",
"test/testing_app/test/fixtures/entrants.yml",
"test/testing_app/test/fixtures/fk_test_has_fk.yml",
"test/testing_app/test/fixtures/fk_test_has_pk.yml",
"test/testing_app/test/fixtures/funny_jokes.yml",
"test/testing_app/test/fixtures/items.yml",
"test/testing_app/test/fixtures/jobs.yml",
"test/testing_app/test/fixtures/legacy_things.yml",
"test/testing_app/test/fixtures/mateys.yml",
"test/testing_app/test/fixtures/members.yml",
"test/testing_app/test/fixtures/memberships.yml",
"test/testing_app/test/fixtures/minimalistics.yml",
"test/testing_app/test/fixtures/mixed_case_monkeys.yml",
"test/testing_app/test/fixtures/mixins.yml",
"test/testing_app/test/fixtures/movies.yml",
"test/testing_app/test/fixtures/naked/csv/accounts.csv",
"test/testing_app/test/fixtures/naked/yml/accounts.yml",
"test/testing_app/test/fixtures/naked/yml/companies.yml",
"test/testing_app/test/fixtures/naked/yml/courses.yml",
"test/testing_app/test/fixtures/owners.yml",
"test/testing_app/test/fixtures/parrots.yml",
"test/testing_app/test/fixtures/parrots_pirates.yml",
"test/testing_app/test/fixtures/people.yml",
"test/testing_app/test/fixtures/pets.yml",
"test/testing_app/test/fixtures/pirates.yml",
"test/testing_app/test/fixtures/posts.yml",
"test/testing_app/test/fixtures/price_estimates.yml",
"test/testing_app/test/fixtures/projects.yml",
"test/testing_app/test/fixtures/readers.yml",
"test/testing_app/test/fixtures/references.yml",
"test/testing_app/test/fixtures/reserved_words/distinct.yml",
"test/testing_app/test/fixtures/reserved_words/distincts_selects.yml",
"test/testing_app/test/fixtures/reserved_words/group.yml",
"test/testing_app/test/fixtures/reserved_words/select.yml",
"test/testing_app/test/fixtures/reserved_words/values.yml",
"test/testing_app/test/fixtures/ships.yml",
"test/testing_app/test/fixtures/sponsors.yml",
"test/testing_app/test/fixtures/subscribers.yml",
"test/testing_app/test/fixtures/subscriptions.yml",
"test/testing_app/test/fixtures/taggings.yml",
"test/testing_app/test/fixtures/tags.yml",
"test/testing_app/test/fixtures/tasks.yml",
"test/testing_app/test/fixtures/topics.yml",
"test/testing_app/test/fixtures/treasures.yml",
"test/testing_app/test/fixtures/vertices.yml",
"test/testing_app/test/fixtures/warehouse-things.yml",
"test/testing_app/test/test_helper.rb",
"test/testing_app/test/unit/query_cache_test.rb"
]
s.has_rdoc = true
s.homepage = %q{http://github.com/ferblape/query_memcached}
s.rdoc_options = ["--charset=UTF-8"]
s.require_paths = ["lib"]
s.rubygems_version = %q{1.3.1}
s.summary = %q{A replacement for ActiveRecord query_cache that a adds a Memcache layer for persistence of the query's cache}
s.test_files = [
"test/query_memcached_test.rb",
"test/testing_app/app/controllers/application.rb",
"test/testing_app/app/helpers/application_helper.rb",
"test/testing_app/app/models/author.rb",
"test/testing_app/app/models/auto_id.rb",
"test/testing_app/app/models/binary.rb",
"test/testing_app/app/models/book.rb",
"test/testing_app/app/models/categorization.rb",
"test/testing_app/app/models/category.rb",
"test/testing_app/app/models/citation.rb",
"test/testing_app/app/models/club.rb",
"test/testing_app/app/models/column_name.rb",
"test/testing_app/app/models/comment.rb",
"test/testing_app/app/models/company.rb",
"test/testing_app/app/models/company_in_module.rb",
"test/testing_app/app/models/computer.rb",
"test/testing_app/app/models/contact.rb",
"test/testing_app/app/models/course.rb",
"test/testing_app/app/models/customer.rb",
"test/testing_app/app/models/default.rb",
"test/testing_app/app/models/developer.rb",
"test/testing_app/app/models/edge.rb",
"test/testing_app/app/models/entrant.rb",
"test/testing_app/app/models/guid.rb",
"test/testing_app/app/models/item.rb",
"test/testing_app/app/models/job.rb",
"test/testing_app/app/models/joke.rb",
"test/testing_app/app/models/keyboard.rb",
"test/testing_app/app/models/legacy_thing.rb",
"test/testing_app/app/models/matey.rb",
"test/testing_app/app/models/member.rb",
"test/testing_app/app/models/membership.rb",
"test/testing_app/app/models/minimalistic.rb",
"test/testing_app/app/models/mixed_case_monkey.rb",
"test/testing_app/app/models/movie.rb",
"test/testing_app/app/models/order.rb",
"test/testing_app/app/models/owner.rb",
"test/testing_app/app/models/parrot.rb",
"test/testing_app/app/models/person.rb",
"test/testing_app/app/models/pet.rb",
"test/testing_app/app/models/pirate.rb",
"test/testing_app/app/models/post.rb",
"test/testing_app/app/models/price_estimate.rb",
"test/testing_app/app/models/project.rb",
"test/testing_app/app/models/reader.rb",
"test/testing_app/app/models/reference.rb",
"test/testing_app/app/models/reply.rb",
"test/testing_app/app/models/ship.rb",
"test/testing_app/app/models/sponsor.rb",
"test/testing_app/app/models/subject.rb",
"test/testing_app/app/models/subscriber.rb",
"test/testing_app/app/models/subscription.rb",
"test/testing_app/app/models/tag.rb",
"test/testing_app/app/models/tagging.rb",
"test/testing_app/app/models/task.rb",
"test/testing_app/app/models/topic.rb",
"test/testing_app/app/models/treasure.rb",
"test/testing_app/app/models/vertex.rb",
"test/testing_app/app/models/warehouse_thing.rb",
"test/testing_app/config/boot.rb",
"test/testing_app/config/environment.rb",
"test/testing_app/config/environments/development.rb",
"test/testing_app/config/environments/production.rb",
"test/testing_app/config/environments/test.rb",
"test/testing_app/config/initializers/inflections.rb",
"test/testing_app/config/initializers/mime_types.rb",
"test/testing_app/config/initializers/new_rails_defaults.rb",
"test/testing_app/config/routes.rb",
"test/testing_app/db/schema.rb",
"test/testing_app/test/test_helper.rb",
"test/testing_app/test/unit/query_cache_test.rb"
]
if s.respond_to? :specification_version then
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
s.specification_version = 2
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
else
end
else
end
end