turbo_boost-commands 0.0.17 → 0.0.18
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/turbo_boost/commands/runner.rb +2 -0
- data/lib/turbo_boost/commands/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: 342917e85cc7c292f5a8291685144003787e2c7160bff7efd99201d4ccf3b79b
|
|
4
|
+
data.tar.gz: 1f56a0a3556b021e07cb7431a2322b1aa5b7f410f4a128009d2c78f8d2f8aa4f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 28129732bad9aa2621714b0e3ea7714d2f096075f61594e7d331343ac45a2741db02a9fb849a5355e1b033038bb7a85f6c3b16bd2be7ac8f42e2b14f6ea2093e
|
|
7
|
+
data.tar.gz: 3b1088f768fcab89de2bdb4ebf65c3b36d4db675b42b01e0bf3bc16ec445c716f5aafa3cfc00ad8d448249bed00e5bf553cd942e0b9a13a6516a1a1d014b71e3
|
|
@@ -177,6 +177,8 @@ class TurboBoost::Commands::Runner
|
|
|
177
177
|
|
|
178
178
|
def message_verifier
|
|
179
179
|
ActiveSupport::MessageVerifier.new Rails.application.secret_key_base, digest: "SHA256", url_safe: true
|
|
180
|
+
rescue
|
|
181
|
+
ActiveSupport::MessageVerifier.new Rails.application.secret_key_base, digest: "SHA256"
|
|
180
182
|
end
|
|
181
183
|
|
|
182
184
|
# Same implementation as ActionController::Base but with public visibility
|