merb-cache 1.1.2 → 1.1.3
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.
- data/lib/merb-cache/version.rb +1 -1
- metadata +33 -33
data/lib/merb-cache/version.rb
CHANGED
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: merb-cache
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 21
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 1
|
8
8
|
- 1
|
9
|
-
-
|
10
|
-
version: 1.1.
|
9
|
+
- 3
|
10
|
+
version: 1.1.3
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Ben Burkert
|
@@ -15,7 +15,7 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date: 2010-
|
18
|
+
date: 2010-07-11 00:00:00 +01:00
|
19
19
|
default_executable:
|
20
20
|
dependencies:
|
21
21
|
- !ruby/object:Gem::Dependency
|
@@ -26,12 +26,12 @@ dependencies:
|
|
26
26
|
requirements:
|
27
27
|
- - ~>
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
hash:
|
29
|
+
hash: 21
|
30
30
|
segments:
|
31
31
|
- 1
|
32
32
|
- 1
|
33
|
-
-
|
34
|
-
version: 1.1.
|
33
|
+
- 3
|
34
|
+
version: 1.1.3
|
35
35
|
type: :runtime
|
36
36
|
version_requirements: *id001
|
37
37
|
- !ruby/object:Gem::Dependency
|
@@ -62,38 +62,38 @@ extra_rdoc_files:
|
|
62
62
|
- TODO
|
63
63
|
files:
|
64
64
|
- Rakefile
|
65
|
-
- lib/merb-cache
|
66
|
-
- lib/merb-cache/cache_request.rb
|
67
|
-
- lib/merb-cache/core_ext/enumerable.rb
|
68
|
-
- lib/merb-cache/core_ext/hash.rb
|
69
|
-
- lib/merb-cache/merb_ext/controller.rb
|
70
|
-
- lib/merb-cache/stores/fundamental/abstract_store.rb
|
71
|
-
- lib/merb-cache/stores/fundamental/file_store.rb
|
72
|
-
- lib/merb-cache/stores/fundamental/memcached_store.rb
|
73
|
-
- lib/merb-cache/stores/strategy/abstract_strategy_store.rb
|
74
|
-
- lib/merb-cache/stores/strategy/action_store.rb
|
65
|
+
- lib/merb-cache.rb
|
75
66
|
- lib/merb-cache/stores/strategy/adhoc_store.rb
|
76
|
-
- lib/merb-cache/stores/strategy/gzip_store.rb
|
77
67
|
- lib/merb-cache/stores/strategy/page_store.rb
|
78
68
|
- lib/merb-cache/stores/strategy/sha1_store.rb
|
69
|
+
- lib/merb-cache/stores/strategy/gzip_store.rb
|
70
|
+
- lib/merb-cache/stores/strategy/action_store.rb
|
71
|
+
- lib/merb-cache/stores/strategy/abstract_strategy_store.rb
|
72
|
+
- lib/merb-cache/stores/fundamental/abstract_store.rb
|
73
|
+
- lib/merb-cache/stores/fundamental/memcached_store.rb
|
74
|
+
- lib/merb-cache/stores/fundamental/file_store.rb
|
75
|
+
- lib/merb-cache/cache.rb
|
76
|
+
- lib/merb-cache/merb_ext/controller.rb
|
77
|
+
- lib/merb-cache/core_ext/hash.rb
|
78
|
+
- lib/merb-cache/core_ext/enumerable.rb
|
79
79
|
- lib/merb-cache/version.rb
|
80
|
-
- lib/merb-cache.rb
|
81
|
-
- spec/merb-cache/cache_request_spec.rb
|
82
|
-
- spec/merb-cache/cache_spec.rb
|
83
|
-
- spec/merb-cache/core_ext/enumerable_spec.rb
|
84
|
-
- spec/merb-cache/core_ext/hash_spec.rb
|
85
|
-
- spec/merb-cache/merb_ext/controller_spec.rb
|
86
|
-
- spec/merb-cache/stores/fundamental/abstract_store_spec.rb
|
87
|
-
- spec/merb-cache/stores/fundamental/file_store_spec.rb
|
88
|
-
- spec/merb-cache/stores/fundamental/memcached_store_spec.rb
|
89
|
-
- spec/merb-cache/stores/strategy/abstract_strategy_store_spec.rb
|
90
|
-
- spec/merb-cache/stores/strategy/action_store_spec.rb
|
91
|
-
- spec/merb-cache/stores/strategy/adhoc_store_spec.rb
|
92
|
-
- spec/merb-cache/stores/strategy/gzip_store_spec.rb
|
93
|
-
- spec/merb-cache/stores/strategy/page_store_spec.rb
|
94
|
-
- spec/merb-cache/stores/strategy/sha1_store_spec.rb
|
80
|
+
- lib/merb-cache/cache_request.rb
|
95
81
|
- spec/spec.opts
|
96
82
|
- spec/spec_helper.rb
|
83
|
+
- spec/merb-cache/stores/strategy/page_store_spec.rb
|
84
|
+
- spec/merb-cache/stores/strategy/sha1_store_spec.rb
|
85
|
+
- spec/merb-cache/stores/strategy/gzip_store_spec.rb
|
86
|
+
- spec/merb-cache/stores/strategy/abstract_strategy_store_spec.rb
|
87
|
+
- spec/merb-cache/stores/strategy/adhoc_store_spec.rb
|
88
|
+
- spec/merb-cache/stores/strategy/action_store_spec.rb
|
89
|
+
- spec/merb-cache/stores/fundamental/memcached_store_spec.rb
|
90
|
+
- spec/merb-cache/stores/fundamental/abstract_store_spec.rb
|
91
|
+
- spec/merb-cache/stores/fundamental/file_store_spec.rb
|
92
|
+
- spec/merb-cache/merb_ext/controller_spec.rb
|
93
|
+
- spec/merb-cache/core_ext/hash_spec.rb
|
94
|
+
- spec/merb-cache/core_ext/enumerable_spec.rb
|
95
|
+
- spec/merb-cache/cache_request_spec.rb
|
96
|
+
- spec/merb-cache/cache_spec.rb
|
97
97
|
- README
|
98
98
|
- LICENSE
|
99
99
|
- TODO
|