seo_cache 1.1.1 → 1.1.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/seo_cache/populate_cache.rb +1 -1
- data/lib/seo_cache/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1020870d044657759ac90591559df5abb82b9418ec242f6af3a8d100e457f593
|
4
|
+
data.tar.gz: 4627cb1b8e6ee8d0429c0d3ad61151670e85f881e6c0bc117ef67b2a08dfc1d8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0ea43ce22d924cfc142ffbcd6fc2d55989b46707c17a2fc210b5a1a31bbe6d9368c34990885a1bc476bc674145734f924fe006dad55cd2997f9a54747d4a1471
|
7
|
+
data.tar.gz: 61b1a6b1502c74cf0dff847ac8912018b47e9a295bc441d10c7641e3f31762e65186539477095cac2ec8f644d9d1d5f256b55c42d3526a4aff3c30633814a18a
|
data/CHANGELOG.md
CHANGED
@@ -35,7 +35,7 @@ module SeoCache
|
|
35
35
|
private
|
36
36
|
|
37
37
|
def generate_cache(path, locale_domain = nil)
|
38
|
-
return if @page_caching.cache_exists?(path,
|
38
|
+
return if @page_caching.cache_exists?(path, locale_domain) && !@force_cache
|
39
39
|
|
40
40
|
url = @host + path
|
41
41
|
url += path.include?('?') ? '&' : '?'
|
data/lib/seo_cache/version.rb
CHANGED