shopify_app 12.0.6 → 12.0.7
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 +4 -0
- data/lib/shopify_app/configuration.rb +1 -7
- 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: c5acb9f9fb1606515013edfda25f981c36cf5ab4323572764ba9715018056532
|
|
4
|
+
data.tar.gz: e5499e7186fa12f37e01f975d7b67ed6a846d67679b580846a7191b53d81b3d3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c9e736b65bf5091c6ebdca30073653dde86abc131cd77747f872c0d42972bc35abdd406301e5a5eb0dd4f9273c66264c75b28e119d05d203e440038bb19250d3
|
|
7
|
+
data.tar.gz: 264ed359e7e07cf7b0947cbafad738cabf220e470872c663f18c2507c17c7d994316af275f1d28820d5624df03fabadf6f213475fb793b4fd024de514b636cf0
|
data/CHANGELOG.md
CHANGED
|
@@ -5,7 +5,7 @@ module ShopifyApp
|
|
|
5
5
|
# for the app in your Shopify Partners page. Change your settings in
|
|
6
6
|
# `config/initializers/shopify_app.rb`
|
|
7
7
|
attr_accessor :application_name
|
|
8
|
-
|
|
8
|
+
attr_accessor :api_key
|
|
9
9
|
attr_accessor :secret
|
|
10
10
|
attr_accessor :old_secret
|
|
11
11
|
attr_accessor :scope
|
|
@@ -65,12 +65,6 @@ module ShopifyApp
|
|
|
65
65
|
scripttags.present?
|
|
66
66
|
end
|
|
67
67
|
|
|
68
|
-
def api_key=(key)
|
|
69
|
-
raise 'API Key is required and is being returned nil. \
|
|
70
|
-
This may indicate that your enviroment variables have not been loaded.' if key.nil?
|
|
71
|
-
@api_key = key
|
|
72
|
-
end
|
|
73
|
-
|
|
74
68
|
def enable_same_site_none
|
|
75
69
|
!Rails.env.test? && (@enable_same_site_none.nil? ? embedded_app? : @enable_same_site_none)
|
|
76
70
|
end
|
data/lib/shopify_app/version.rb
CHANGED