shopify_app 11.3.1 → 11.3.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/CHANGELOG.md +8 -0
- data/lib/generators/shopify_app/install/install_generator.rb +1 -1
- data/lib/shopify_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: 7a2e346cf0c508085dd5d60b57b0cd7d64447560c1e65bbcaf95ea9de8f4ddbb
|
|
4
|
+
data.tar.gz: dbcd5d391c0d9a35c431991f3485a9b38176d77769d9b1037662de038bc054dd
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: '094aded9b3d41dede60d7deb2f63646c04e0c16a65ac56f7a65b15764bf3fe3e391d21cbc797022320747360a564810c8c43404893a725c90b1e53159aa15001'
|
|
7
|
+
data.tar.gz: 2b674e58c2a0862651cc4415d726fc34eb2b82255b1b9432c1351c32a7a38c13aee82a30ad41eb209a32d86895be699ebe3fa9639ddeeb55b71fc00f09183679
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
11.3.2
|
|
2
|
+
-----
|
|
3
|
+
* Fix hosts generator in Rails 5 [#823](https://github.com/Shopify/shopify_app/pull/823)
|
|
4
|
+
|
|
5
|
+
11.3.1
|
|
6
|
+
-----
|
|
7
|
+
* Bump browser_sniffer version to 1.1.3 [#824](https://github.com/Shopify/shopify_app/pull/824)
|
|
8
|
+
|
|
1
9
|
11.3.0
|
|
2
10
|
-----
|
|
3
11
|
* Update assets to be compatible with Rails 6 [#808](https://github.com/Shopify/shopify_app/pull/808)
|
|
@@ -67,7 +67,7 @@ module ShopifyApp
|
|
|
67
67
|
def insert_hosts_into_development_config
|
|
68
68
|
inject_into_file(
|
|
69
69
|
'config/environments/development.rb',
|
|
70
|
-
" config.hosts << /\\h+.ngrok.io/\n",
|
|
70
|
+
" config.hosts = (config.hosts rescue []) << /\\h+.ngrok.io/\n",
|
|
71
71
|
after: "Rails.application.configure do\n"
|
|
72
72
|
)
|
|
73
73
|
end
|
data/lib/shopify_app/version.rb
CHANGED