actionpack-page_caching 1.2.1 → 1.2.2
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/actionpack-page_caching.gemspec +1 -1
- data/lib/action_controller/caching/pages.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: 6a5abbd11f21a931bd64d38d91a0ae38d717d1afea2c0a5536a7df9981f07248
|
4
|
+
data.tar.gz: d2ac93992ddb056d8902f28031a7d93976f67354b0bd14d265f112f504add562
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 94c76032e911c0675a4be758cd1c3885ff72b9c69c69369a41e1ce2537d092e63fe3ded7238257081d606dd1fc546720aed37a7814e2ff56039cb9d6911762a0
|
7
|
+
data.tar.gz: 16800c630f714dc81440a6418a3da1ee63971859cb4e2b0786602b89d26e871b021eb1e4d36b3bc5c4cee8313308418ae7412e6c4e738263932ee13706ce95eb
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Gem::Specification.new do |gem|
|
2
2
|
gem.name = "actionpack-page_caching"
|
3
|
-
gem.version = "1.2.
|
3
|
+
gem.version = "1.2.2"
|
4
4
|
gem.author = "David Heinemeier Hansson"
|
5
5
|
gem.email = "david@loudthinking.com"
|
6
6
|
gem.description = "Static page caching for Action Pack (removed from core in Rails 4.0)"
|
@@ -160,7 +160,7 @@ module ActionController
|
|
160
160
|
unnormalized_path = File.join(normalized_cache_directory, cache_file(path, extension))
|
161
161
|
normalized_path = File.expand_path(unnormalized_path)
|
162
162
|
|
163
|
-
|
163
|
+
normalized_path if normalized_path.start_with?(normalized_cache_directory)
|
164
164
|
end
|
165
165
|
|
166
166
|
def delete(path)
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: actionpack-page_caching
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.2.
|
4
|
+
version: 1.2.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- David Heinemeier Hansson
|
@@ -85,7 +85,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
85
85
|
- !ruby/object:Gem::Version
|
86
86
|
version: '0'
|
87
87
|
requirements: []
|
88
|
-
rubygems_version: 3.2
|
88
|
+
rubygems_version: 3.1.2
|
89
89
|
signing_key:
|
90
90
|
specification_version: 4
|
91
91
|
summary: Static page caching for Action Pack (removed from core in Rails 4.0)
|