padrino-cache 0.9.25 → 0.9.26

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.
@@ -1,3 +1,4 @@
1
+ # -*- encoding: utf-8 -*-
1
2
  require File.expand_path("../../padrino-core/lib/padrino-core/version.rb", __FILE__)
2
3
 
3
4
  Gem::Specification.new do |s|
@@ -11,9 +12,13 @@ Gem::Specification.new do |s|
11
12
  s.required_rubygems_version = ">= 1.3.6"
12
13
  s.version = Padrino.version
13
14
  s.date = Time.now.strftime("%Y-%m-%d")
15
+
14
16
  s.extra_rdoc_files = Dir["*.rdoc"]
15
- s.files = %w(.document .gitignore LICENSE README.rdoc Rakefile padrino-cache.gemspec) + Dir.glob("{bin,lib,test}/**/*")
16
- s.rdoc_options = ["--charset=UTF-8"]
17
- s.require_path = "lib"
17
+ s.files = `git ls-files`.split("\n")
18
+ s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
19
+ s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
20
+ s.require_paths = ["lib"]
21
+ s.rdoc_options = ["--charset=UTF-8"]
22
+
18
23
  s.add_runtime_dependency("padrino-core", Padrino.version)
19
24
  end
@@ -1,6 +1,12 @@
1
1
  require File.expand_path(File.dirname(__FILE__) + '/helper')
2
2
 
3
3
  class TestPadrinoCache < Test::Unit::TestCase
4
+
5
+ def teardown
6
+ tmp = File.expand_path(File.dirname(__FILE__) + "/tmp")
7
+ system("rm -rf #{tmp}")
8
+ end
9
+
4
10
  should 'cache a fragment' do
5
11
  called = false
6
12
  mock_app do
data/test/test_stores.rb CHANGED
@@ -96,7 +96,7 @@ begin
96
96
 
97
97
  eval COMMON_TESTS
98
98
  end
99
- rescue
99
+ rescue LoadError
100
100
  warn "Skipping redis tests"
101
101
  end
102
102
 
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: padrino-cache
3
3
  version: !ruby/object:Gem::Version
4
- hash: 9
4
+ hash: 15
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 9
9
- - 25
10
- version: 0.9.25
9
+ - 26
10
+ version: 0.9.26
11
11
  platform: ruby
12
12
  authors:
13
13
  - Padrino Team
@@ -18,8 +18,7 @@ autorequire:
18
18
  bindir: bin
19
19
  cert_chain: []
20
20
 
21
- date: 2011-04-27 00:00:00 +02:00
22
- default_executable:
21
+ date: 2011-04-28 00:00:00 Z
23
22
  dependencies:
24
23
  - !ruby/object:Gem::Dependency
25
24
  name: padrino-core
@@ -29,12 +28,12 @@ dependencies:
29
28
  requirements:
30
29
  - - "="
31
30
  - !ruby/object:Gem::Version
32
- hash: 9
31
+ hash: 15
33
32
  segments:
34
33
  - 0
35
34
  - 9
36
- - 25
37
- version: 0.9.25
35
+ - 26
36
+ version: 0.9.26
38
37
  type: :runtime
39
38
  version_requirements: *id001
40
39
  description: Caching support for memcached, page and fragment
@@ -51,435 +50,19 @@ files:
51
50
  - LICENSE
52
51
  - README.rdoc
53
52
  - Rakefile
54
- - padrino-cache.gemspec
53
+ - lib/padrino-cache.rb
55
54
  - lib/padrino-cache/helpers/cache_store.rb
56
55
  - lib/padrino-cache/helpers/fragment.rb
57
56
  - lib/padrino-cache/helpers/page.rb
57
+ - lib/padrino-cache/store.rb
58
58
  - lib/padrino-cache/store/file.rb
59
59
  - lib/padrino-cache/store/memcache.rb
60
60
  - lib/padrino-cache/store/memory.rb
61
61
  - lib/padrino-cache/store/redis.rb
62
- - lib/padrino-cache/store.rb
63
- - lib/padrino-cache.rb
62
+ - padrino-cache.gemspec
64
63
  - test/helper.rb
65
64
  - test/test_padrino_cache.rb
66
65
  - test/test_stores.rb
67
- - test/tmp/#<class:0x0000010084e5a8>/cache/%2Ffoo
68
- - test/tmp/#<class:0x00000100858be8>/cache/%2Ffoo%2F12
69
- - test/tmp/#<class:0x000001008636d8>/cache/test
70
- - test/tmp/#<class:0x000001008643a8>/cache/%2Ffoo
71
- - test/tmp/#<class:0x00000100866310>/cache/%2Ffoo
72
- - test/tmp/#<class:0x00000100866450>/cache/%2Ffoo
73
- - test/tmp/#<class:0x000001008671e8>/cache/%2Ffoo
74
- - test/tmp/#<class:0x000001008675f8>/cache/%2Ffoo
75
- - test/tmp/#<class:0x000001008677d8>/cache/%2Ffoo
76
- - test/tmp/#<class:0x00000100867918>/cache/%2Ffoo
77
- - test/tmp/#<class:0x00000100868ca0>/cache/%2Ffoo
78
- - test/tmp/#<class:0x000001008691c8>/cache/%2Ffoo
79
- - test/tmp/#<class:0x000001008692b8>/cache/%2Ffoo%2F12
80
- - test/tmp/#<class:0x00000100869e70>/cache/%2Ffoo
81
- - test/tmp/#<class:0x0000010086aaa0>/cache/%2Ffoo
82
- - test/tmp/#<class:0x0000010086b838>/cache/%2Ffoo
83
- - test/tmp/#<class:0x0000010086e588>/cache/%2Ffoo
84
- - test/tmp/#<class:0x00000100871918>/cache/%2Ffoo
85
- - test/tmp/#<class:0x0000010089b560>/cache/%2Ffoo
86
- - test/tmp/#<class:0x000001008c3dd0>/cache/test
87
- - test/tmp/#<class:0x000001009036d8>/cache/%2Ffoo
88
- - test/tmp/#<class:0x00000100909d58>/cache/%2Ffoo
89
- - test/tmp/#<class:0x000001009174d0>/cache/%2Ffoo
90
- - test/tmp/#<class:0x00000100926660>/cache/%2Ffoo%2F12
91
- - test/tmp/#<class:0x000001009422c0>/cache/test
92
- - test/tmp/#<class:0x0000010094c090>/cache/test
93
- - test/tmp/#<class:0x00000100954b00>/cache/bar
94
- - test/tmp/#<class:0x00000100954b00>/cache/foo
95
- - test/tmp/#<class:0x0000010095f5a0>/cache/%2Ffoo%2F12
96
- - test/tmp/#<class:0x00000100967ae8>/cache/test
97
- - test/tmp/#<class:0x0000010096afe0>/cache/%2Ffoo
98
- - test/tmp/#<class:0x00000100973ff0>/cache/test
99
- - test/tmp/#<class:0x0000010097d528>/cache/test
100
- - test/tmp/#<class:0x000001009ad2c8>/cache/%2Ffoo%2F12
101
- - test/tmp/#<class:0x000001009b9258>/cache/test
102
- - test/tmp/#<class:0x000001009ba798>/cache/%2Ffoo
103
- - test/tmp/#<class:0x000001009bb2d8>/cache/bar
104
- - test/tmp/#<class:0x000001009bb2d8>/cache/foo
105
- - test/tmp/#<class:0x000001009c4310>/cache/bar
106
- - test/tmp/#<class:0x000001009c4310>/cache/foo
107
- - test/tmp/#<class:0x000001009c4ae0>/cache/test
108
- - test/tmp/#<class:0x000001009d2a00>/cache/test
109
- - test/tmp/#<class:0x000001009d6970>/cache/test
110
- - test/tmp/#<class:0x000001009da688>/cache/%2Ffoo%2F12
111
- - test/tmp/#<class:0x00000100a00630>/cache/%2Ffoo
112
- - test/tmp/#<class:0x00000100a7f890>/cache/cached
113
- - test/tmp/#<class:0x00000100a81118>/cache/%2Ffoo
114
- - test/tmp/#<class:0x00000100a8ce00>/cache/bar
115
- - test/tmp/#<class:0x00000100a8ce00>/cache/foo
116
- - test/tmp/#<class:0x00000100aad5d8>/cache/%2Ffoo
117
- - test/tmp/#<class:0x00000100ac5700>/cache/%2Ffoo
118
- - test/tmp/#<class:0x00000100ad4868>/cache/%2Ffoo
119
- - test/tmp/#<class:0x00000100b002d8>/cache/cached
120
- - test/tmp/#<class:0x00000100b10d18>/cache/%2Ffoo
121
- - test/tmp/#<class:0x00000100b31888>/cache/cached
122
- - test/tmp/#<class:0x00000100b458d8>/cache/%2Ffoo
123
- - test/tmp/#<class:0x00000100b480d8>/cache/%2Ffoo
124
- - test/tmp/#<class:0x00000100b53b68>/cache/%2Ffoo%2F12
125
- - test/tmp/#<class:0x00000100b6d130>/cache/test
126
- - test/tmp/#<class:0x00000100b7bd70>/cache/test
127
- - test/tmp/#<class:0x00000100b7ebb0>/cache/test
128
- - test/tmp/#<class:0x00000100b963c8>/cache/%2Ffoo
129
- - test/tmp/#<class:0x00000100bac790>/cache/%2Ffoo%2F12
130
- - test/tmp/#<class:0x00000100bb3900>/cache/%2Ffoo
131
- - test/tmp/#<class:0x00000100bb3ec8>/cache/%2Ffoo
132
- - test/tmp/#<class:0x00000100bb4120>/cache/%2Ffoo
133
- - test/tmp/#<class:0x00000100bc4ae8>/cache/test
134
- - test/tmp/#<class:0x00000100bd83e0>/cache/%2Ffoo
135
- - test/tmp/#<class:0x00000100be29a8>/cache/bar
136
- - test/tmp/#<class:0x00000100be29a8>/cache/foo
137
- - test/tmp/#<class:0x00000100bebcd8>/cache/%2Ffoo
138
- - test/tmp/#<class:0x00000100bf7380>/cache/%2Ffoo%2F12
139
- - test/tmp/#<class:0x00000100bfb9a8>/cache/%2Ffoo
140
- - test/tmp/#<class:0x00000100c124f0>/cache/%2Ffoo
141
- - test/tmp/#<class:0x00000100c1df08>/cache/%2Ffoo
142
- - test/tmp/#<class:0x00000100c44220>/cache/%2Ffoo
143
- - test/tmp/#<class:0x00000100c5bfd8>/cache/%2Ffoo
144
- - test/tmp/#<class:0x00000100c6e7f0>/cache/%2Ffoo
145
- - test/tmp/#<class:0x00000100c76310>/cache/cached
146
- - test/tmp/#<class:0x00000100c86a30>/cache/%2Ffoo
147
- - test/tmp/#<class:0x00000100c879a8>/cache/%2Ffoo%2F12
148
- - test/tmp/#<class:0x00000100ca2ca8>/cache/bar
149
- - test/tmp/#<class:0x00000100ca2ca8>/cache/foo
150
- - test/tmp/#<class:0x00000100ca5228>/cache/%2Ffoo
151
- - test/tmp/#<class:0x00000100cafef8>/cache/test
152
- - test/tmp/#<class:0x00000100cb3a08>/cache/%2Ffoo%2F12
153
- - test/tmp/#<class:0x00000100cb7928>/cache/test
154
- - test/tmp/#<class:0x00000100cde2a8>/cache/test
155
- - test/tmp/#<class:0x00000100d08300>/cache/%2Ffoo
156
- - test/tmp/#<class:0x00000100d0bc58>/cache/%2Ffoo
157
- - test/tmp/#<class:0x00000100d2dee8>/cache/test
158
- - test/tmp/#<class:0x00000100d3e6a8>/cache/%2Ffoo
159
- - test/tmp/#<class:0x00000100d71b48>/cache/%2Ffoo
160
- - test/tmp/#<class:0x00000100db5f50>/cache/%2Ffoo
161
- - test/tmp/#<class:0x00000100db9330>/cache/test
162
- - test/tmp/#<class:0x00000100e651f8>/cache/test
163
- - test/tmp/#<class:0x00000100f55108>/cache/%2Ffoo
164
- - test/tmp/#<class:0x00000101043128>/cache/%2Ffoo
165
- - test/tmp/#<class:0x00000101046ee0>/cache/%2Ffoo%2F12
166
- - test/tmp/#<class:0x0000010105c010>/cache/%2Ffoo%2F12
167
- - test/tmp/#<class:0x00000101077608>/cache/bar
168
- - test/tmp/#<class:0x00000101077608>/cache/foo
169
- - test/tmp/#<class:0x000001010839d0>/cache/%2Ffoo
170
- - test/tmp/#<class:0x000001010afcb0>/cache/%2Ffoo
171
- - test/tmp/#<class:0x000001010d7148>/cache/%2Ffoo
172
- - test/tmp/#<class:0x00000101174498>/cache/cached
173
- - test/tmp/#<class:0x00000101180018>/cache/%2Ffoo
174
- - test/tmp/#<class:0x000001011812b0>/cache/bar
175
- - test/tmp/#<class:0x000001011812b0>/cache/foo
176
- - test/tmp/#<class:0x000001011868f0>/cache/%2Ffoo%2F12
177
- - test/tmp/#<class:0x000001011d55b8>/cache/%2Ffoo
178
- - test/tmp/#<class:0x000001011fbf88>/cache/%2Ffoo
179
- - test/tmp/#<class:0x0000010121ec40>/cache/test
180
- - test/tmp/#<class:0x000001012285b0>/cache/test
181
- - test/tmp/#<class:0x0000010126c6c0>/cache/test
182
- - test/tmp/#<class:0x00000101294378>/cache/%2Ffoo
183
- - test/tmp/#<class:0x000001012fb2a8>/cache/%2Ffoo
184
- - test/tmp/#<class:0x00000101300000>/cache/test
185
- - test/tmp/#<class:0x000001013029b8>/cache/%2Ffoo
186
- - test/tmp/#<class:0x000001013225b0>/cache/%2Ffoo
187
- - test/tmp/#<class:0x00000101348bc0>/cache/test
188
- - test/tmp/#<class:0x000001013c8cf8>/cache/test
189
- - test/tmp/#<class:0x000001013f3b38>/cache/test
190
- - test/tmp/#<class:0x00000101400a40>/cache/%2Ffoo
191
- - test/tmp/#<class:0x000001014130f0>/cache/%2Ffoo
192
- - test/tmp/#<class:0x000001014d8f08>/cache/test
193
- - test/tmp/#<class:0x00000101815e50>/cache/%2Ffoo
194
- - test/tmp/#<class:0x0000010185bc70>/cache/test
195
- - test/tmp/#<class:0x0000010186eca8>/cache/cached
196
- - test/tmp/#<class:0x00000101893a58>/cache/test
197
- - test/tmp/#<class:0x000001018bbda0>/cache/test
198
- - test/tmp/#<class:0x000001018c0e40>/cache/bar
199
- - test/tmp/#<class:0x000001018c0e40>/cache/foo
200
- - test/tmp/#<class:0x000001018d9210>/cache/%2Ffoo%2F12
201
- - test/tmp/#<class:0x000001018f1568>/cache/%2Ffoo
202
- - test/tmp/#<class:0x00000101925520>/cache/cached
203
- - test/tmp/#<class:0x00000101926718>/cache/cached
204
- - test/tmp/#<class:0x00000101930308>/cache/test
205
- - test/tmp/#<class:0x0000010193de90>/cache/%2Ffoo
206
- - test/tmp/#<class:0x0000010194a910>/cache/%2Ffoo
207
- - test/tmp/#<class:0x00000101960670>/cache/%2Ffoo
208
- - test/tmp/#<class:0x00000101963ed8>/cache/%2Ffoo%2F12
209
- - test/tmp/#<class:0x000001019946f0>/cache/%2Ffoo%2F12
210
- - test/tmp/#<class:0x000001019c3978>/cache/%2Ffoo%2F12
211
- - test/tmp/#<class:0x000001019cf778>/cache/%2Ffoo
212
- - test/tmp/#<class:0x00000101a02448>/cache/%2Ffoo
213
- - test/tmp/#<class:0x00000101a130e0>/cache/%2Ffoo
214
- - test/tmp/#<class:0x00000101a17050>/cache/test
215
- - test/tmp/#<class:0x00000101a25678>/cache/cached
216
- - test/tmp/#<class:0x00000101a389a8>/cache/%2Ffoo
217
- - test/tmp/#<class:0x00000101a48498>/cache/%2Ffoo
218
- - test/tmp/#<class:0x00000101a50cd8>/cache/%2Ffoo
219
- - test/tmp/#<class:0x00000101a54950>/cache/bar
220
- - test/tmp/#<class:0x00000101a54950>/cache/foo
221
- - test/tmp/#<class:0x00000101a5a648>/cache/%2Ffoo
222
- - test/tmp/#<class:0x00000101a668a8>/cache/%2Ffoo
223
- - test/tmp/#<class:0x00000101a6e440>/cache/%2Ffoo
224
- - test/tmp/#<class:0x00000101a7c6f8>/cache/test
225
- - test/tmp/#<class:0x00000101a95478>/cache/test
226
- - test/tmp/#<class:0x00000101ab5d40>/cache/test
227
- - test/tmp/#<class:0x00000101aeb940>/cache/%2Ffoo%2F12
228
- - test/tmp/#<class:0x00000101aefbf8>/cache/test
229
- - test/tmp/#<class:0x00000101b5d7e8>/cache/%2Ffoo
230
- - test/tmp/#<class:0x00000101b748a8>/cache/%2Ffoo
231
- - test/tmp/#<class:0x00000101bad270>/cache/%2Ffoo
232
- - test/tmp/#<class:0x00000101bba768>/cache/%2Ffoo
233
- - test/tmp/#<class:0x00000101bc3840>/cache/test
234
- - test/tmp/#<class:0x00000101bc8a70>/cache/cached
235
- - test/tmp/#<class:0x00000101bcc148>/cache/test
236
- - test/tmp/#<class:0x00000101bd5a90>/cache/cached
237
- - test/tmp/#<class:0x00000101bf06d8>/cache/%2Ffoo
238
- - test/tmp/#<class:0x00000101bf0e80>/cache/test
239
- - test/tmp/#<class:0x00000101c3f760>/cache/%2Ffoo
240
- - test/tmp/#<class:0x00000101c3fb48>/cache/%2Ffoo%2F12
241
- - test/tmp/#<class:0x00000101c69e98>/cache/test
242
- - test/tmp/#<class:0x00000101c6f5c8>/cache/%2Ffoo
243
- - test/tmp/#<class:0x00000101c804e0>/cache/%2Ffoo%2F12
244
- - test/tmp/#<class:0x00000101ccbf30>/cache/%2Ffoo
245
- - test/tmp/#<class:0x00000101cef160>/cache/%2Ffoo
246
- - test/tmp/#<class:0x00000101d0cff8>/cache/%2Ffoo
247
- - test/tmp/#<class:0x00000101d427e8>/cache/test
248
- - test/tmp/#<class:0x00000101d6c890>/cache/test
249
- - test/tmp/#<class:0x00000101d80e80>/cache/%2Ffoo%2F12
250
- - test/tmp/#<class:0x00000101de2720>/cache/bar
251
- - test/tmp/#<class:0x00000101de2720>/cache/foo
252
- - test/tmp/#<class:0x00000101dfec90>/cache/%2Ffoo
253
- - test/tmp/#<class:0x1011cb158>/cache/%2Ffoo
254
- - test/tmp/#<class:0x1011cc990>/cache/%2Ffoo
255
- - test/tmp/#<class:0x1011d8c40>/cache/%2Ffoo
256
- - test/tmp/#<class:0x1011dec08>/cache/%2Ffoo
257
- - test/tmp/#<class:0x1011ded48>/cache/%2Ffoo
258
- - test/tmp/#<class:0x1011e4428>/cache/%2Ffoo
259
- - test/tmp/#<class:0x1011e8cd0>/cache/%2Ffoo
260
- - test/tmp/#<class:0x1011e9400>/cache/%2Ffoo
261
- - test/tmp/#<class:0x101205f10>/cache/%2Ffoo
262
- - test/tmp/#<class:0x10158c148>/cache/cached
263
- - test/tmp/#<class:0x1015da550>/cache/cached
264
- - test/tmp/#<class:0x1015dc828>/cache/cached
265
- - test/tmp/#<class:0x1015df8e8>/cache/cached
266
- - test/tmp/#<class:0x1015ea220>/cache/cached
267
- - test/tmp/#<class:0x1015eb8c8>/cache/cached
268
- - test/tmp/#<class:0x1015ed718>/cache/cached
269
- - test/tmp/#<class:0x101619a20>/cache/%2Ffoo
270
- - test/tmp/#<class:0x101668080>/cache/%2Ffoo
271
- - test/tmp/#<class:0x10166bfa0>/cache/%2Ffoo
272
- - test/tmp/#<class:0x101675348>/cache/%2Ffoo
273
- - test/tmp/#<class:0x10169bbd8>/cache/%2Ffoo
274
- - test/tmp/#<class:0x10169c218>/cache/%2Ffoo
275
- - test/tmp/#<class:0x10169dc08>/cache/%2Ffoo
276
- - test/tmp/#<class:0x102f9cbc8>/cache/cached
277
- - test/tmp/#<class:0x102fec9e8>/cache/%2Ffoo
278
- - test/tmp/#<class:0x1030f01f0>/cache/%2Ffoo
279
- - test/tmp/#<class:0x103131240>/cache/test
280
- - test/tmp/#<class:0x1031b0090>/cache/%2Ffoo
281
- - test/tmp/#<class:0x103242058>/cache/%2Ffoo
282
- - test/tmp/#<class:0x10324b338>/cache/%2Ffoo
283
- - test/tmp/#<class:0x1032566e8>/cache/%2Ffoo
284
- - test/tmp/#<class:0x1033a3af0>/cache/test
285
- - test/tmp/#<class:0x1033b6c18>/cache/test
286
- - test/tmp/#<class:0x1033c2ce8>/cache/test
287
- - test/tmp/#<class:0x1033eb7b0>/cache/%2Ffoo%2F12
288
- - test/tmp/#<class:0x103516f40>/cache/bar
289
- - test/tmp/#<class:0x103516f40>/cache/foo
290
- - test/tmp/#<class:0x1035a0a10>/cache/%2Ffoo
291
- - test/tmp/#<class:0x1035d86e0>/cache/%2Ffoo
292
- - test/tmp/#<class:0x1036933f0>/cache/%2Ffoo
293
- - test/tmp/#<class:0x1036a9bf0>/cache/%2Ffoo
294
- - test/tmp/#<class:0x10370f0e0>/cache/%2Ffoo
295
- - test/tmp/#<class:0x104328ea8>/cache/bar
296
- - test/tmp/#<class:0x104328ea8>/cache/foo
297
- - test/tmp/#<class:0x104359a58>/cache/bar
298
- - test/tmp/#<class:0x104359a58>/cache/foo
299
- - test/tmp/#<class:0x10435a340>/cache/bar
300
- - test/tmp/#<class:0x10435a340>/cache/foo
301
- - test/tmp/#<class:0x104414bc8>/cache/%2Ffoo%2F12
302
- - test/tmp/#<class:0x104559970>/cache/%2Ffoo%2F12
303
- - test/tmp/#<class:0x1045a5d48>/cache/%2Ffoo%2F12
304
- - test/tmp/#<class:0x10462c438>/cache/%2Ffoo%2F12
305
- - test/tmp/#<class:0x10479c4d0>/cache/test
306
- - test/tmp/#<class:0x104839de8>/cache/%2Ffoo
307
- - test/tmp/#<class:0x104ba9c58>/cache/%2Ffoo
308
- - test/tmp/#<class:0x104d20000>/cache/%2Ffoo
309
- - test/tmp/#<class:0x10520acc8>/cache/%2Ffoo
310
- - test/tmp/#<class:0x1053740f0>/cache/%2Ffoo
311
- - test/tmp/#<class:0x10537cdb8>/cache/%2Ffoo
312
- - test/tmp/#<class:0x10545cb98>/cache/%2Ffoo
313
- - test/tmp/#<class:0x105505ce8>/cache/%2Ffoo
314
- - test/tmp/#<class:0x1055065f8>/cache/%2Ffoo
315
- - test/tmp/#<class:0x10553cef0>/cache/test
316
- - test/tmp/#<class:0x105579760>/cache/test
317
- - test/tmp/#<class:0x10560f058>/cache/test
318
- - test/tmp/#<class:0x105650300>/cache/test
319
- - test/tmp/#<class:0x10577a640>/cache/test
320
- - test/tmp/#<class:0x107ddff76>/cache/test
321
- - test/tmp/#<class:0x108a77250>/cache/%2Ffoo
322
- - test/tmp/#<class:0x108aac748>/cache/test
323
- - test/tmp/#<class:0x108aeb0b0>/cache/test
324
- - test/tmp/#<class:0x108af8850>/cache/test
325
- - test/tmp/#<class:0x108b0a320>/cache/%2Ffoo
326
- - test/tmp/#<class:0x108b0a7d0>/cache/%2Ffoo%2F12
327
- - test/tmp/#<class:0x108b0c530>/cache/%2Ffoo%2F12
328
- - test/tmp/#<class:0x108b0f960>/cache/%2Ffoo%2F12
329
- - test/tmp/#<class:0x108b10540>/cache/%2Ffoo%2F12
330
- - test/tmp/#<class:0x108b105e0>/cache/%2Ffoo%2F12
331
- - test/tmp/#<class:0x108b10770>/cache/%2Ffoo%2F12
332
- - test/tmp/#<class:0x108b1bfa8>/cache/%2Ffoo
333
- - test/tmp/#<class:0x108b203a0>/cache/%2Ffoo%2F12
334
- - test/tmp/#<class:0x108b21de0>/cache/bar
335
- - test/tmp/#<class:0x108b21de0>/cache/foo
336
- - test/tmp/#<class:0x108b35778>/cache/%2Ffoo
337
- - test/tmp/#<class:0x108b374d8>/cache/%2Ffoo
338
- - test/tmp/#<class:0x108b3a908>/cache/%2Ffoo
339
- - test/tmp/#<class:0x108b3b4e8>/cache/%2Ffoo
340
- - test/tmp/#<class:0x108b3b588>/cache/%2Ffoo
341
- - test/tmp/#<class:0x108b3b718>/cache/%2Ffoo
342
- - test/tmp/#<class:0x108b46640>/cache/test
343
- - test/tmp/#<class:0x108b5fdc0>/cache/test
344
- - test/tmp/#<class:0x108b60c98>/cache/bar
345
- - test/tmp/#<class:0x108b60c98>/cache/foo
346
- - test/tmp/#<class:0x108b61b20>/cache/test
347
- - test/tmp/#<class:0x108b63588>/cache/%2Ffoo%2F12
348
- - test/tmp/#<class:0x108b64f50>/cache/test
349
- - test/tmp/#<class:0x108b65b30>/cache/test
350
- - test/tmp/#<class:0x108b65bd0>/cache/test
351
- - test/tmp/#<class:0x108b65d60>/cache/test
352
- - test/tmp/#<class:0x108b6e438>/cache/bar
353
- - test/tmp/#<class:0x108b6e438>/cache/foo
354
- - test/tmp/#<class:0x108b7d2f8>/cache/%2Ffoo
355
- - test/tmp/#<class:0x108b96a28>/cache/%2Ffoo
356
- - test/tmp/#<class:0x108b978d8>/cache/%2Ffoo
357
- - test/tmp/#<class:0x108b98788>/cache/%2Ffoo
358
- - test/tmp/#<class:0x108b9bbb8>/cache/%2Ffoo
359
- - test/tmp/#<class:0x108b9c798>/cache/%2Ffoo
360
- - test/tmp/#<class:0x108b9c838>/cache/%2Ffoo
361
- - test/tmp/#<class:0x108b9c9c8>/cache/%2Ffoo
362
- - test/tmp/#<class:0x108ba3598>/cache/%2Ffoo
363
- - test/tmp/#<class:0x108ba8750>/cache/%2Ffoo
364
- - test/tmp/#<class:0x108ba8930>/cache/test
365
- - test/tmp/#<class:0x108baa118>/cache/test
366
- - test/tmp/#<class:0x108baa730>/cache/test
367
- - test/tmp/#<class:0x108bad368>/cache/%2Ffoo
368
- - test/tmp/#<class:0x108baf398>/cache/%2Ffoo
369
- - test/tmp/#<class:0x108bb29f8>/cache/test
370
- - test/tmp/#<class:0x108bb7598>/cache/test
371
- - test/tmp/#<class:0x108bb7a70>/cache/test
372
- - test/tmp/#<class:0x108bb9370>/cache/test
373
- - test/tmp/#<class:0x108bcc0d8>/cache/test
374
- - test/tmp/#<class:0x108bccda8>/cache/test
375
- - test/tmp/#<class:0x108bcd0c8>/cache/test
376
- - test/tmp/#<class:0x108bcd5c8>/cache/%2Ffoo
377
- - test/tmp/#<class:0x108bcde38>/cache/test
378
- - test/tmp/#<class:0x108bd1268>/cache/test
379
- - test/tmp/#<class:0x108bd1e48>/cache/test
380
- - test/tmp/#<class:0x108bd1ee8>/cache/test
381
- - test/tmp/#<class:0x108bd2078>/cache/test
382
- - test/tmp/#<class:0x108bd8720>/cache/%2Ffoo
383
- - test/tmp/#<class:0x108bd9210>/cache/%2Ffoo
384
- - test/tmp/#<class:0x108bd9cb0>/cache/%2Ffoo
385
- - test/tmp/#<class:0x108bd9ff8>/cache/%2Ffoo
386
- - test/tmp/#<class:0x108bda700>/cache/test
387
- - test/tmp/#<class:0x108bdb4e8>/cache/%2Ffoo
388
- - test/tmp/#<class:0x108bdd7e8>/cache/test
389
- - test/tmp/#<class:0x108bddb08>/cache/%2Ffoo
390
- - test/tmp/#<class:0x108bddc98>/cache/%2Ffoo
391
- - test/tmp/#<class:0x108bde2d8>/cache/%2Ffoo
392
- - test/tmp/#<class:0x108bded50>/cache/%2Ffoo
393
- - test/tmp/#<class:0x108bdf6d8>/cache/%2Ffoo
394
- - test/tmp/#<class:0x108be0ec0>/cache/%2Ffoo
395
- - test/tmp/#<class:0x108be14d8>/cache/%2Ffoo
396
- - test/tmp/#<class:0x108be9318>/cache/test
397
- - test/tmp/#<class:0x108bed530>/cache/%2Ffoo
398
- - test/tmp/#<class:0x108bee340>/cache/%2Ffoo
399
- - test/tmp/#<class:0x108bee818>/cache/%2Ffoo
400
- - test/tmp/#<class:0x108bfacd0>/cache/%2Ffoo
401
- - test/tmp/#<class:0x108c03b50>/cache/%2Ffoo
402
- - test/tmp/#<class:0x108c07340>/cache/%2Ffoo%2F12
403
- - test/tmp/#<class:0x108c0ae78>/cache/%2Ffoo%2F12
404
- - test/tmp/#<class:0x108c0f7e8>/cache/test
405
- - test/tmp/#<class:0x108c10cd8>/cache/test
406
- - test/tmp/#<class:0x108c132f8>/cache/test
407
- - test/tmp/#<class:0x108c14ec8>/cache/test
408
- - test/tmp/#<class:0x108c166b0>/cache/test
409
- - test/tmp/#<class:0x108c16cc8>/cache/test
410
- - test/tmp/#<class:0x108c23b30>/cache/test
411
- - test/tmp/#<class:0x108c24008>/cache/test
412
- - test/tmp/#<class:0x108c24ff8>/cache/%2Ffoo
413
- - test/tmp/#<class:0x108c38530>/cache/%2Ffoo
414
- - test/tmp/#<class:0x108c39340>/cache/test
415
- - test/tmp/#<class:0x108c393e0>/cache/%2Ffoo
416
- - test/tmp/#<class:0x108c3e8e0>/cache/%2Ffoo
417
- - test/tmp/#<class:0x108c402d0>/cache/%2Ffoo
418
- - test/tmp/#<class:0x108c436b0>/cache/%2Ffoo
419
- - test/tmp/#<class:0x108c43700>/cache/bar
420
- - test/tmp/#<class:0x108c43700>/cache/foo
421
- - test/tmp/#<class:0x108c48c00>/cache/%2Ffoo
422
- - test/tmp/#<class:0x108c48d68>/cache/%2Ffoo
423
- - test/tmp/#<class:0x108c49678>/cache/%2Ffoo
424
- - test/tmp/#<class:0x108c4bc98>/cache/%2Ffoo
425
- - test/tmp/#<class:0x108c4c1e8>/cache/%2Ffoo
426
- - test/tmp/#<class:0x108c5b878>/cache/%2Ffoo
427
- - test/tmp/#<class:0x108c73a68>/cache/test
428
- - test/tmp/#<class:0x108c74b70>/cache/%2Ffoo%2F12
429
- - test/tmp/#<class:0x108c75430>/cache/test
430
- - test/tmp/#<class:0x108c85e20>/cache/bar
431
- - test/tmp/#<class:0x108c85e20>/cache/foo
432
- - test/tmp/#<class:0x108c87310>/cache/bar
433
- - test/tmp/#<class:0x108c87310>/cache/foo
434
- - test/tmp/#<class:0x108c89160>/cache/%2Ffoo%2F12
435
- - test/tmp/#<class:0x108c8ab50>/cache/%2Ffoo%2F12
436
- - test/tmp/#<class:0x108c8b3e8>/cache/bar
437
- - test/tmp/#<class:0x108c8b3e8>/cache/foo
438
- - test/tmp/#<class:0x108c8b4b0>/cache/cached
439
- - test/tmp/#<class:0x108c8b500>/cache/bar
440
- - test/tmp/#<class:0x108c8b500>/cache/foo
441
- - test/tmp/#<class:0x108c8b780>/cache/bar
442
- - test/tmp/#<class:0x108c8b9b0>/cache/bar
443
- - test/tmp/#<class:0x108c8bac8>/cache/cached
444
- - test/tmp/#<class:0x108c8ddc8>/cache/%2Ffoo%2F12
445
- - test/tmp/#<class:0x108c93890>/cache/%2Ffoo%2F12
446
- - test/tmp/#<class:0x108c93908>/cache/%2Ffoo%2F12
447
- - test/tmp/#<class:0x108c94380>/cache/%2Ffoo%2F12
448
- - test/tmp/#<class:0x108c96130>/cache/%2Ffoo%2F12
449
- - test/tmp/#<class:0x108c96b58>/cache/%2Ffoo%2F12
450
- - test/tmp/#<class:0x108ca7b88>/cache/%2Ffoo%2F12
451
- - test/tmp/#<class:0x108cc51b0>/cache/%2Ffoo
452
- - test/tmp/#<class:0x108cc6d80>/cache/%2Ffoo
453
- - test/tmp/#<class:0x108cc9d00>/cache/%2Ffoo
454
- - test/tmp/#<class:0x108cc9ff8>/cache/%2Ffoo
455
- - test/tmp/#<class:0x108ccb6c8>/cache/%2Ffoo
456
- - test/tmp/#<class:0x108ccd5b8>/cache/%2Ffoo
457
- - test/tmp/#<class:0x108ccea80>/cache/%2Ffoo
458
- - test/tmp/#<class:0x108cd4638>/cache/%2Ffoo
459
- - test/tmp/#<class:0x108cd46b0>/cache/%2Ffoo
460
- - test/tmp/#<class:0x108cd5100>/cache/%2Ffoo
461
- - test/tmp/#<class:0x108cd6e10>/cache/%2Ffoo
462
- - test/tmp/#<class:0x108cd7798>/cache/%2Ffoo
463
- - test/tmp/#<class:0x108cf3c68>/cache/%2Ffoo
464
- - test/tmp/#<class:0x108cf5b58>/cache/test
465
- - test/tmp/#<class:0x114dee6e2>/cache/%2Ffoo
466
- - test/tmp/#<class:0x116881734>/cache/bar
467
- - test/tmp/#<class:0x116881734>/cache/foo
468
- - test/tmp/#<class:0x119ba67ec>/cache/%2Ffoo%2F12
469
- - test/tmp/#<class:0x12222af8c>/cache/test
470
- - test/tmp/#<class:0x1330345ed>/cache/%2Ffoo
471
- - test/tmp/#<class:0x1448bcf49>/cache/test
472
- - test/tmp/#<class:0x159a683e6>/cache/bar
473
- - test/tmp/#<class:0x159a683e6>/cache/foo
474
- - test/tmp/#<class:0x15de6cecc>/cache/test
475
- - test/tmp/#<class:0x15f1e7e46>/cache/%2Ffoo
476
- - test/tmp/#<class:0x168808e07>/cache/%2Ffoo
477
- - test/tmp/#<class:0x1689c7307>/cache/%2Ffoo
478
- - test/tmp/#<class:0x16bef63f9>/cache/%2Ffoo%2F12
479
- - test/tmp/#<class:0x16fe85c45>/cache/%2Ffoo
480
- - test/tmp/#<class:0x17a3ec403>/cache/%2Ffoo
481
- - test/tmp/#<class:0x17b3abf3d>/cache/%2Ffoo
482
- has_rdoc: true
483
66
  homepage: http://www.padrinorb.com
484
67
  licenses: []
485
68
 
@@ -511,9 +94,11 @@ required_rubygems_version: !ruby/object:Gem::Requirement
511
94
  requirements: []
512
95
 
513
96
  rubyforge_project: padrino-cache
514
- rubygems_version: 1.5.2
97
+ rubygems_version: 1.7.2
515
98
  signing_key:
516
99
  specification_version: 3
517
100
  summary: Page and fragment caching for Padrino
518
- test_files: []
519
-
101
+ test_files:
102
+ - test/helper.rb
103
+ - test/test_padrino_cache.rb
104
+ - test/test_stores.rb