pagelime-rack 0.4.1 → 0.4.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/VERSION +1 -1
- data/lib/rack/pagelime.rb +2 -2
- data/pagelime-rack.gemspec +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9797fb72140bc6a86f650ca641acead9b7c86743
|
|
4
|
+
data.tar.gz: 90037c54727ff35372e2cf09b9e9f262eb3e136e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 77428d00c99c3982e48c5db83f44b4708312b9ca5b40d7a3b6dd2717a6a4404288c0140918ed835b17e8de1fb7d673c53d9eb23fce4052eeec8118f81b9ad0aa
|
|
7
|
+
data.tar.gz: 4dc7a231b559433345c34ca38b9c997431654dc88bd835b8af9132fc48976bab311bb95a4a7791cef386555eacae0a1427267a45a2568e737333f79a78c3fe50
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.4.
|
|
1
|
+
0.4.2
|
data/lib/rack/pagelime.rb
CHANGED
|
@@ -79,10 +79,10 @@ module Rack
|
|
|
79
79
|
case action
|
|
80
80
|
# handle publish callback
|
|
81
81
|
when "after_publish_callback"
|
|
82
|
-
resp = handle_publish_callback(
|
|
82
|
+
resp = handle_publish_callback(env)
|
|
83
83
|
# handle "index"
|
|
84
84
|
when ""
|
|
85
|
-
resp = handle_status_check(
|
|
85
|
+
resp = handle_status_check(env)
|
|
86
86
|
else
|
|
87
87
|
::Pagelime.logger.debug "PAGELIME CMS RACK PLUGIN: Unable to route action! (URL prefix: #{::Pagelime.config.url_path}, Request path: #{req.path})"
|
|
88
88
|
end
|
data/pagelime-rack.gemspec
CHANGED