disco_app 0.8.2 → 0.8.3
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/app/models/disco_app/concerns/shop.rb +3 -4
- data/lib/disco_app/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: fd66d842458698a15b8be312434d4b07f3df1b8671eb5a21c56fb505a2c0aa45
|
|
4
|
+
data.tar.gz: 4fe046f44e70debb6d73636e9e84ff8bcaa76398764117f099220ba3750e5134
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ae57c0e9ce4c3c3d709bda36580a6510cf6466d1de31e961167665ebe71e3e58a12bf96d1880da7f3288dfb884bca4aeee936e42acffbb7917e3799a7db42da7
|
|
7
|
+
data.tar.gz: 5ce8ff4597bcd3c9c848d076b5ebbb11db1a47a8fdea11006d6e8fc825a87df675d935582352281b673691f3f2d88f27e3e8fe07c83b7eee9237923a04d557f7
|
|
@@ -54,11 +54,10 @@ module DiscoApp::Concerns::Shop
|
|
|
54
54
|
"#{protocol}://#{domain}"
|
|
55
55
|
end
|
|
56
56
|
|
|
57
|
-
# Return the protocol the shop's storefront uses.
|
|
58
|
-
#
|
|
59
|
-
# redirection should do most of the work.
|
|
57
|
+
# Return the protocol the shop's storefront uses. This should now always be
|
|
58
|
+
# https as all Shopify stores have SSL enabled.
|
|
60
59
|
def protocol
|
|
61
|
-
'
|
|
60
|
+
'https'
|
|
62
61
|
end
|
|
63
62
|
|
|
64
63
|
# Return the absolute URL to the shop's admin.
|
data/lib/disco_app/version.rb
CHANGED