tagged-cache 1.0.0 → 1.0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/History.txt +4 -0
- data/lib/active_support/cache/tagged_store.rb +2 -1
- metadata +4 -4
data/History.txt
CHANGED
@@ -1,4 +1,5 @@
|
|
1
1
|
require "active_support/core_ext/integer/time"
|
2
|
+
require "active_support/core_ext/hash"
|
2
3
|
|
3
4
|
module ActiveSupport
|
4
5
|
module Cache
|
@@ -152,7 +153,7 @@ module ActiveSupport
|
|
152
153
|
entry.extend(TaggedEntry)
|
153
154
|
entry.depends = read_tags(*depends)
|
154
155
|
end
|
155
|
-
@entity_store.send(:write_entry, key, entry, options.
|
156
|
+
@entity_store.send(:write_entry, key, entry, options.except(:depends))
|
156
157
|
end
|
157
158
|
|
158
159
|
def delete_entry(key, options)
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tagged-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
|
- 0
|
9
|
-
-
|
10
|
-
version: 1.0.
|
9
|
+
- 1
|
10
|
+
version: 1.0.1
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Anton Ageev
|
@@ -15,7 +15,7 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date: 2010-10-
|
18
|
+
date: 2010-10-07 00:00:00 +04:00
|
19
19
|
default_executable:
|
20
20
|
dependencies:
|
21
21
|
- !ruby/object:Gem::Dependency
|