decidim-term_customizer 0.19.0 → 0.19.1
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.
- checksums.yaml +4 -4
- data/lib/decidim/term_customizer/loader.rb +4 -3
- data/lib/decidim/term_customizer/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3d24629b02f7c7abcc7feaf40712fd3af65154639b1180ae4ec32ccc6e5be27d
|
|
4
|
+
data.tar.gz: a8da30a09b35b362c1e7721942fec62c3f114458d23ae5d682d85fb64630b9ef
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fd8d52b2bd8ffe712a37e01935d6ba639544fab14cf6fc459c8fb03c5e2c087872d7bb919332076cf6d369f15cecb65179170667d6fac468183f0605716f2719
|
|
7
|
+
data.tar.gz: def326536b8cf6a012571f416d1649477e9aef38721773a447572a8f54ac9ef578b84c341146c133631286a0a6217df21727be8a0c82e38b74960f678af4d5fa
|
|
@@ -57,9 +57,10 @@ module Decidim
|
|
|
57
57
|
# the resolver.
|
|
58
58
|
def clear_cache
|
|
59
59
|
Rails.cache.delete_matched("#{cache_key_base}/*")
|
|
60
|
-
rescue NotImplementedError
|
|
61
|
-
# Some cache store, such as `ActiveSupport::Cache::MemCacheStore`
|
|
62
|
-
# support `delete_matched`.
|
|
60
|
+
rescue NotImplementedError, NoMethodError
|
|
61
|
+
# Some cache store, such as `ActiveSupport::Cache::MemCacheStore` or
|
|
62
|
+
# `ActiveSupport::Cache::DalliStore` do not support `delete_matched`.
|
|
63
|
+
# Therefore, clear all the possibly existing
|
|
63
64
|
# cache keys manually for each space and component.
|
|
64
65
|
|
|
65
66
|
# Clear all the "organization" translation keys.
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: decidim-term_customizer
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.19.
|
|
4
|
+
version: 0.19.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Antti Hukkanen
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2020-03-03 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: decidim-admin
|