shopify_app 17.0.5 → 17.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/ISSUE_TEMPLATE/bug-report.md +63 -0
- data/.github/ISSUE_TEMPLATE/config.yml +1 -0
- data/.github/ISSUE_TEMPLATE/feature-request.md +33 -0
- data/.github/PULL_REQUEST_TEMPLATE.md +17 -1
- data/CHANGELOG.md +5 -0
- data/CONTRIBUTING.md +76 -0
- data/Gemfile.lock +61 -61
- data/README.md +72 -593
- data/app/controllers/concerns/shopify_app/shop_access_scopes_verification.rb +32 -0
- data/app/controllers/shopify_app/callback_controller.rb +18 -2
- data/docs/Quickstart.md +15 -77
- data/docs/Upgrading.md +110 -0
- data/docs/shopify_app/authentication.md +124 -0
- data/docs/shopify_app/engine.md +82 -0
- data/docs/shopify_app/generators.md +127 -0
- data/docs/shopify_app/handling-access-scopes-changes.md +8 -0
- data/docs/shopify_app/script-tags.md +28 -0
- data/docs/shopify_app/session-repository.md +88 -0
- data/docs/shopify_app/testing.md +38 -0
- data/docs/shopify_app/webhooks.md +72 -0
- data/lib/generators/shopify_app/home_controller/templates/home_controller.rb +2 -0
- data/lib/generators/shopify_app/home_controller/templates/unauthenticated_home_controller.rb +1 -0
- data/lib/generators/shopify_app/install/install_generator.rb +30 -1
- data/lib/generators/shopify_app/install/templates/omniauth.rb +1 -0
- data/lib/generators/shopify_app/install/templates/shopify_app.rb.tt +5 -2
- data/lib/generators/shopify_app/install/templates/shopify_provider.rb.tt +8 -0
- data/lib/generators/shopify_app/shop_model/shop_model_generator.rb +27 -0
- data/lib/generators/shopify_app/shop_model/templates/db/migrate/add_shop_access_scopes_column.erb +5 -0
- data/lib/generators/shopify_app/shop_model/templates/shop.rb +1 -1
- data/lib/generators/shopify_app/shopify_app_generator.rb +1 -1
- data/lib/generators/shopify_app/user_model/templates/db/migrate/add_user_access_scopes_column.erb +5 -0
- data/lib/generators/shopify_app/user_model/templates/user.rb +1 -1
- data/lib/generators/shopify_app/user_model/user_model_generator.rb +27 -0
- data/lib/shopify_app.rb +10 -0
- data/lib/shopify_app/access_scopes/noop_strategy.rb +13 -0
- data/lib/shopify_app/access_scopes/shop_strategy.rb +24 -0
- data/lib/shopify_app/access_scopes/user_strategy.rb +41 -0
- data/lib/shopify_app/configuration.rb +22 -0
- data/lib/shopify_app/omniauth/omniauth_configuration.rb +64 -0
- data/lib/shopify_app/session/in_memory_shop_session_store.rb +9 -7
- data/lib/shopify_app/session/in_memory_user_session_store.rb +9 -7
- data/lib/shopify_app/session/shop_session_storage_with_scopes.rb +58 -0
- data/lib/shopify_app/session/user_session_storage_with_scopes.rb +58 -0
- data/lib/shopify_app/utils.rb +12 -0
- data/lib/shopify_app/version.rb +1 -1
- data/package.json +1 -1
- data/shopify_app.gemspec +1 -1
- metadata +27 -8
- data/.github/ISSUE_TEMPLATE.md +0 -19
- data/docs/install-on-dev-shop.png +0 -0
- data/docs/test-your-app.png +0 -0
- data/lib/generators/shopify_app/install/templates/shopify_provider.rb +0 -20
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: db6d499169653da5b11b813fe35e2ecf11312403cfa418c755e43c6b2dea3667
|
4
|
+
data.tar.gz: 39d42cd9bba1bc353a5959376758fc52a71cfb3005c25dd9defb9d0816210244
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 013f7337c0018134bd389a4c968118d8f26a4df9dca4d22a2dfe8de7d514f6914c5c11bd9e7446e3ab15d7c81c744967621f03c9fd354c43843706e77db79d21
|
7
|
+
data.tar.gz: 3cc55404a0dd1e4dc0d3dadf1226c1755d887f13698dd87d118589a8c325b657d85de719a8a49ec3e6dcf33e7191968f7b04b8caaf5f722ee9ad36c1513937cb
|
@@ -0,0 +1,63 @@
|
|
1
|
+
---
|
2
|
+
name: Bug report
|
3
|
+
about: Report a technical issue with the Shopify App gem.
|
4
|
+
labels: bug
|
5
|
+
---
|
6
|
+
|
7
|
+
<!--
|
8
|
+
|
9
|
+
Do you want to ask a question? Are you looking for support? The Shopify Community forum is the best place for getting support: https://community.shopify.com
|
10
|
+
|
11
|
+
You can also join the Partners Slack Community group: https://www.shopify.com/partners/community#conversation
|
12
|
+
|
13
|
+
Authentication Issues: A great deal of the issues surrounding this repo are around authenticating (installing) the generated app with Shopify.
|
14
|
+
|
15
|
+
If you are experiencing issues with your app authenticating/installing the best way to get help fast is to create a repo with the minimal amount of code to demonstrate the issue and a clearly documented set of steps you took to arrive there. This will help us solve your problem quicker since we won't need to spend any time figuring out how to reproduce the bug. Please also include your operating system and browser.
|
16
|
+
|
17
|
+
-->
|
18
|
+
|
19
|
+
### Description
|
20
|
+
|
21
|
+
<!-- Description of the issue -->
|
22
|
+
|
23
|
+
### Steps to Reproduce
|
24
|
+
|
25
|
+
1. <!-- First Step -->
|
26
|
+
2. <!-- Second Step -->
|
27
|
+
3. <!-- and so on… -->
|
28
|
+
|
29
|
+
**Expected behavior:**
|
30
|
+
|
31
|
+
<!-- What you expect to happen -->
|
32
|
+
|
33
|
+
**Actual behavior:**
|
34
|
+
|
35
|
+
<!-- What actually happens -->
|
36
|
+
|
37
|
+
**Reproduces how often:**
|
38
|
+
|
39
|
+
<!-- What percentage of the time does it reproduce? -->
|
40
|
+
|
41
|
+
### Browsers
|
42
|
+
|
43
|
+
<!-- Please specify the browser(s) you have tested that exhibit this behaviour. -->
|
44
|
+
|
45
|
+
### Gem versions
|
46
|
+
|
47
|
+
<!-- Please specify which version(s) of the gem exhibit this behaviour. -->
|
48
|
+
|
49
|
+
### Additional Information
|
50
|
+
|
51
|
+
<!-- Any additional information, configuration or data that might be necessary to reproduce the issue. See common examples of important information below. -->
|
52
|
+
|
53
|
+
<!-- - [x] My app relies on third-party cookies -->
|
54
|
+
<!-- - [x] My app is intended to be a non-embedded app -->
|
55
|
+
<!-- - [x] My app uses session tokens -->
|
56
|
+
|
57
|
+
|
58
|
+
### Security
|
59
|
+
|
60
|
+
<!-- Please be certain to redact any private information from your logs or code snippets such as Api Keys, Api Secrets, and any authentication tokens such as shop_tokens. -->
|
61
|
+
|
62
|
+
- [ ] I have redacted any private information from my logs or code snippets.
|
63
|
+
|
@@ -0,0 +1 @@
|
|
1
|
+
blank_issues_enabled: false
|
@@ -0,0 +1,33 @@
|
|
1
|
+
---
|
2
|
+
name: Feature request
|
3
|
+
about: Request new functionality for the Shopify App gem.
|
4
|
+
labels: feature request
|
5
|
+
---
|
6
|
+
|
7
|
+
<!--
|
8
|
+
|
9
|
+
Do you want to ask a question? Are you looking for support? The Shopify Community forum is the best place for getting support: https://community.shopify.com
|
10
|
+
|
11
|
+
You can also join the Partners Slack Community group: https://www.shopify.com/partners/community#conversation
|
12
|
+
|
13
|
+
---
|
14
|
+
|
15
|
+
Please note that the team that maintains this gem has finite resources so it's unlikely that we'll work on feature requests. If we're interested in a particular feature however, we'll follow up and ask for more detail.
|
16
|
+
|
17
|
+
-->
|
18
|
+
|
19
|
+
### Summary
|
20
|
+
|
21
|
+
<!-- One paragraph explanation of the feature or suggestions. -->
|
22
|
+
|
23
|
+
### Motivation
|
24
|
+
|
25
|
+
<!-- Why is this feature or suggestion needed? What is the expected outcome? -->
|
26
|
+
|
27
|
+
### Describe alternatives you've considered
|
28
|
+
|
29
|
+
<!-- A clear and concise description of the alternative solutions you've considered. -->
|
30
|
+
|
31
|
+
### Additional context
|
32
|
+
|
33
|
+
<!-- Add any other context or screenshots about the feature request here. -->
|
@@ -1,6 +1,22 @@
|
|
1
|
+
### What this PR does
|
2
|
+
|
3
|
+
<!-- Please describe what changes this PR introduces and why they're needed. -->
|
4
|
+
|
5
|
+
### Reviewer's guide to testing
|
6
|
+
|
7
|
+
<!-- If this PR changes functionality, please list out steps to test your changes. This helps reviewers verify your changes are correct. -->
|
8
|
+
|
9
|
+
### Things to focus on
|
10
|
+
|
11
|
+
1. <!-- Focus on a particular file -->
|
12
|
+
2. <!-- Is the test case correct? -->
|
13
|
+
3. <!-- Etc. -->
|
14
|
+
|
15
|
+
### Checklist
|
16
|
+
|
1
17
|
Before submitting the PR, please consider if any of the following are needed:
|
2
18
|
|
3
19
|
- [ ] Update `CHANGELOG.md` if the changes would impact users
|
4
20
|
- [ ] Update `README.md`, if appropriate.
|
5
|
-
- [ ] Update any relevant pages in
|
21
|
+
- [ ] Update any relevant pages in `/docs`, if necessary
|
6
22
|
- [ ] For security fixes, the [Disclosure Policy](https://github.com/Shopify/shopify_app/blob/master/SECURITY.md#disclosure-policy) must be followed.
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased
|
2
2
|
----------
|
3
3
|
|
4
|
+
17.1.0 (March 5, 2021)
|
5
|
+
----------
|
6
|
+
* Create OmniAuthConfiguration object to build future OmniAuth strategies [#1190](https://github.com/Shopify/shopify_app/pull/1190)
|
7
|
+
* Added access scopes to Shop and User models, added checks to handle scope changes [#1192](https://github.com/Shopify/shopify_app/pull/1192) [#1197](https://github.com/Shopify/shopify_app/pull/1197)
|
8
|
+
|
4
9
|
17.0.5 (January 27, 2021)
|
5
10
|
----------
|
6
11
|
* Fix omniauth strategy not being set correctly for apps using session tokens [#1164](https://github.com/Shopify/shopify_app/pull/1164)
|
data/CONTRIBUTING.md
ADDED
@@ -0,0 +1,76 @@
|
|
1
|
+
# Contributing to the Shopify App gem
|
2
|
+
|
3
|
+
The following is a set of guidelines for contributing to the Shopify App gem. These are mostly guidelines, not rules. Use your best judgement, and feel free to propose changes to this document in a pull request.
|
4
|
+
|
5
|
+
#### Table of contents
|
6
|
+
|
7
|
+
[I just have a question!](#i-just-have-a-question)
|
8
|
+
|
9
|
+
[How can I contribute?](#how-can-i-contribute)
|
10
|
+
* [Reporting bugs](#reporting-bugs)
|
11
|
+
* [Suggesting or requesting improvements](#suggesting-or-requesting-improvements)
|
12
|
+
* [Pull requests](#pull-requests)
|
13
|
+
|
14
|
+
## I just have a question!
|
15
|
+
|
16
|
+
> **Note:** Please don't file an issue to ask a question. You'll get faster results by using the resources below.
|
17
|
+
|
18
|
+
Shopify has an official message board with dedicated forums to discuss all things apps, APIs, SDKs and more.
|
19
|
+
|
20
|
+
#### Shopify Community forum links
|
21
|
+
|
22
|
+
* [Shopify Community](https://community.shopify.com)
|
23
|
+
* [Shopify Apps](https://community.shopify.com/c/Shopify-Apps/bd-p/shopify-apps)
|
24
|
+
* [Shopify APIs & SDKs](https://community.shopify.com/c/Shopify-APIs-SDKs/bd-p/shopify-apis-and-technology)
|
25
|
+
|
26
|
+
If you prefer to chat instead, join the [Shopify Partners Slack Community group](https://www.shopify.com/partners/community#conversation). This Slack group hosts an active community of thousands of app developers.
|
27
|
+
|
28
|
+
By participating in the Community forum or Slack group, you agree to adhere to the forum [Code of Conduct](https://community.shopify.com/c/Announcements/Code-of-Conduct/m-p/491969#M23) outlined.
|
29
|
+
|
30
|
+
## How can I contribute?
|
31
|
+
|
32
|
+
### Reporting bugs
|
33
|
+
|
34
|
+
This section guides you through submitting a bug report for the Shopify App gem. Following these guidelines helps maintainers and the community understand your report, reproduce the behavior, and find related reports.
|
35
|
+
|
36
|
+
#### Before submitting a bug report
|
37
|
+
|
38
|
+
* **Check the [troubleshooting guide](/docs/Troubleshooting.md).** You may be able to troubleshoot the issue you're facing.
|
39
|
+
* **Check the [Shopify Community links](#shopify-community-forum-links) to search for your issue.** This problem may have been reported before and solved on the Shopify forum.
|
40
|
+
* **Perform a cursory search for similar issues.** You may find that the same problem (or a similar one) has been filed already as an issue.
|
41
|
+
|
42
|
+
#### How do I submit a good bug report?
|
43
|
+
|
44
|
+
Bugs are tracked as GitHub issues. Create an issue and provide the following information by filling in the [bug-report template](/.github/ISSUE_TEMPLATE/bug-report.md).
|
45
|
+
|
46
|
+
Explain the problem and include additional details to help maintainers reproduce the problem:
|
47
|
+
|
48
|
+
* **Use a clear and descriptive title** for the issue to identify the problem.
|
49
|
+
* **Describe the exact steps which reproduce the problem** in as many details as possible.
|
50
|
+
* **Provide specific examples to demonstrate the steps.** Include links to files, or copy/pasteable snippets. If you're providing snippets in the issue, use Markdown code blocks.
|
51
|
+
* **Describe the behavior you observed** after following the steps and point out what exactly is the problem with that behavior.
|
52
|
+
* **Explain which behavior you expected to see** instead and why.
|
53
|
+
* **Include screenshots and animated GIFs** where possible.
|
54
|
+
* **Redact any private information** from your logs and issue description. This includes things like API keys, API secrets, and any access tokens.
|
55
|
+
|
56
|
+
### Suggesting or requesting improvements
|
57
|
+
|
58
|
+
If you have a suggestion for the Shopify App gem or a feature request, provide the appropriate information by filling out the [feature-request template](/.github/ISSUE_TEMPLATE/feature-request.md).
|
59
|
+
|
60
|
+
### Pull requests
|
61
|
+
|
62
|
+
The process described here has several goals:
|
63
|
+
|
64
|
+
* Maintain the Shopify App gem's quality
|
65
|
+
* Fix problems that are important to app developers
|
66
|
+
* Enable a sustainable system for the Shopify App gem's maintainers to review contributions
|
67
|
+
|
68
|
+
Please follow these steps to have your contribution considered by the maintainers:
|
69
|
+
|
70
|
+
* Follow all instructions in the [pull request template](/.github/PULL_REQUEST_TEMPLATE.md)
|
71
|
+
* After you submit your pull request, verify that all status checks are passing
|
72
|
+
* <details>
|
73
|
+
<summary>What if the status checks are failing?</summary>
|
74
|
+
|
75
|
+
While the prerequisites above must be satisfied prior to having your pull request reviewed, the reviewer(s) may ask you to complete additional design work, tests, or other changes before your pull request can be ultimately accepted.
|
76
|
+
</details>
|
data/Gemfile.lock
CHANGED
@@ -1,75 +1,75 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
shopify_app (17.0
|
4
|
+
shopify_app (17.1.0)
|
5
5
|
browser_sniffer (~> 1.2.2)
|
6
6
|
jwt (~> 2.2.1)
|
7
7
|
omniauth-shopify-oauth2 (~> 2.2.2)
|
8
8
|
rails (> 5.2.1, < 6.1)
|
9
9
|
redirect_safely (~> 1.0)
|
10
|
-
shopify_api (~> 9.
|
10
|
+
shopify_api (~> 9.4)
|
11
11
|
|
12
12
|
GEM
|
13
13
|
remote: https://rubygems.org/
|
14
14
|
specs:
|
15
|
-
actioncable (6.0.3.
|
16
|
-
actionpack (= 6.0.3.
|
15
|
+
actioncable (6.0.3.5)
|
16
|
+
actionpack (= 6.0.3.5)
|
17
17
|
nio4r (~> 2.0)
|
18
18
|
websocket-driver (>= 0.6.1)
|
19
|
-
actionmailbox (6.0.3.
|
20
|
-
actionpack (= 6.0.3.
|
21
|
-
activejob (= 6.0.3.
|
22
|
-
activerecord (= 6.0.3.
|
23
|
-
activestorage (= 6.0.3.
|
24
|
-
activesupport (= 6.0.3.
|
19
|
+
actionmailbox (6.0.3.5)
|
20
|
+
actionpack (= 6.0.3.5)
|
21
|
+
activejob (= 6.0.3.5)
|
22
|
+
activerecord (= 6.0.3.5)
|
23
|
+
activestorage (= 6.0.3.5)
|
24
|
+
activesupport (= 6.0.3.5)
|
25
25
|
mail (>= 2.7.1)
|
26
|
-
actionmailer (6.0.3.
|
27
|
-
actionpack (= 6.0.3.
|
28
|
-
actionview (= 6.0.3.
|
29
|
-
activejob (= 6.0.3.
|
26
|
+
actionmailer (6.0.3.5)
|
27
|
+
actionpack (= 6.0.3.5)
|
28
|
+
actionview (= 6.0.3.5)
|
29
|
+
activejob (= 6.0.3.5)
|
30
30
|
mail (~> 2.5, >= 2.5.4)
|
31
31
|
rails-dom-testing (~> 2.0)
|
32
|
-
actionpack (6.0.3.
|
33
|
-
actionview (= 6.0.3.
|
34
|
-
activesupport (= 6.0.3.
|
32
|
+
actionpack (6.0.3.5)
|
33
|
+
actionview (= 6.0.3.5)
|
34
|
+
activesupport (= 6.0.3.5)
|
35
35
|
rack (~> 2.0, >= 2.0.8)
|
36
36
|
rack-test (>= 0.6.3)
|
37
37
|
rails-dom-testing (~> 2.0)
|
38
38
|
rails-html-sanitizer (~> 1.0, >= 1.2.0)
|
39
|
-
actiontext (6.0.3.
|
40
|
-
actionpack (= 6.0.3.
|
41
|
-
activerecord (= 6.0.3.
|
42
|
-
activestorage (= 6.0.3.
|
43
|
-
activesupport (= 6.0.3.
|
39
|
+
actiontext (6.0.3.5)
|
40
|
+
actionpack (= 6.0.3.5)
|
41
|
+
activerecord (= 6.0.3.5)
|
42
|
+
activestorage (= 6.0.3.5)
|
43
|
+
activesupport (= 6.0.3.5)
|
44
44
|
nokogiri (>= 1.8.5)
|
45
|
-
actionview (6.0.3.
|
46
|
-
activesupport (= 6.0.3.
|
45
|
+
actionview (6.0.3.5)
|
46
|
+
activesupport (= 6.0.3.5)
|
47
47
|
builder (~> 3.1)
|
48
48
|
erubi (~> 1.4)
|
49
49
|
rails-dom-testing (~> 2.0)
|
50
50
|
rails-html-sanitizer (~> 1.1, >= 1.2.0)
|
51
|
-
activejob (6.0.3.
|
52
|
-
activesupport (= 6.0.3.
|
51
|
+
activejob (6.0.3.5)
|
52
|
+
activesupport (= 6.0.3.5)
|
53
53
|
globalid (>= 0.3.6)
|
54
|
-
activemodel (6.0.3.
|
55
|
-
activesupport (= 6.0.3.
|
54
|
+
activemodel (6.0.3.5)
|
55
|
+
activesupport (= 6.0.3.5)
|
56
56
|
activemodel-serializers-xml (1.0.2)
|
57
57
|
activemodel (> 5.x)
|
58
58
|
activesupport (> 5.x)
|
59
59
|
builder (~> 3.1)
|
60
|
-
activerecord (6.0.3.
|
61
|
-
activemodel (= 6.0.3.
|
62
|
-
activesupport (= 6.0.3.
|
60
|
+
activerecord (6.0.3.5)
|
61
|
+
activemodel (= 6.0.3.5)
|
62
|
+
activesupport (= 6.0.3.5)
|
63
63
|
activeresource (5.1.1)
|
64
64
|
activemodel (>= 5.0, < 7)
|
65
65
|
activemodel-serializers-xml (~> 1.0)
|
66
66
|
activesupport (>= 5.0, < 7)
|
67
|
-
activestorage (6.0.3.
|
68
|
-
actionpack (= 6.0.3.
|
69
|
-
activejob (= 6.0.3.
|
70
|
-
activerecord (= 6.0.3.
|
67
|
+
activestorage (6.0.3.5)
|
68
|
+
actionpack (= 6.0.3.5)
|
69
|
+
activejob (= 6.0.3.5)
|
70
|
+
activerecord (= 6.0.3.5)
|
71
71
|
marcel (~> 0.3.1)
|
72
|
-
activesupport (6.0.3.
|
72
|
+
activesupport (6.0.3.5)
|
73
73
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
74
74
|
i18n (>= 0.7, < 2)
|
75
75
|
minitest (~> 5.1)
|
@@ -84,7 +84,7 @@ GEM
|
|
84
84
|
builder (3.2.4)
|
85
85
|
byebug (11.1.3)
|
86
86
|
coderay (1.1.3)
|
87
|
-
concurrent-ruby (1.1.
|
87
|
+
concurrent-ruby (1.1.8)
|
88
88
|
crack (0.4.4)
|
89
89
|
crass (1.0.6)
|
90
90
|
debug_inspector (0.0.3)
|
@@ -96,13 +96,13 @@ GEM
|
|
96
96
|
faraday-net_http (1.0.1)
|
97
97
|
globalid (0.4.2)
|
98
98
|
activesupport (>= 4.2.0)
|
99
|
-
graphql (1.12.
|
99
|
+
graphql (1.12.5)
|
100
100
|
graphql-client (0.16.0)
|
101
101
|
activesupport (>= 3.0)
|
102
102
|
graphql (~> 1.8)
|
103
103
|
hashdiff (1.0.1)
|
104
104
|
hashie (4.1.0)
|
105
|
-
i18n (1.8.
|
105
|
+
i18n (1.8.9)
|
106
106
|
concurrent-ruby (~> 1.0)
|
107
107
|
jwt (2.2.2)
|
108
108
|
loofah (2.7.0)
|
@@ -116,12 +116,12 @@ GEM
|
|
116
116
|
mimemagic (0.3.5)
|
117
117
|
mini_mime (1.0.2)
|
118
118
|
mini_portile2 (2.5.0)
|
119
|
-
minitest (5.14.
|
119
|
+
minitest (5.14.4)
|
120
120
|
mocha (1.11.2)
|
121
121
|
multi_json (1.15.0)
|
122
122
|
multi_xml (0.6.0)
|
123
123
|
multipart-post (2.1.1)
|
124
|
-
nio4r (2.5.
|
124
|
+
nio4r (2.5.7)
|
125
125
|
nokogiri (1.11.1)
|
126
126
|
mini_portile2 (~> 2.5.0)
|
127
127
|
racc (~> 1.4)
|
@@ -156,20 +156,20 @@ GEM
|
|
156
156
|
rack (2.2.3)
|
157
157
|
rack-test (1.1.0)
|
158
158
|
rack (>= 1.0, < 3)
|
159
|
-
rails (6.0.3.
|
160
|
-
actioncable (= 6.0.3.
|
161
|
-
actionmailbox (= 6.0.3.
|
162
|
-
actionmailer (= 6.0.3.
|
163
|
-
actionpack (= 6.0.3.
|
164
|
-
actiontext (= 6.0.3.
|
165
|
-
actionview (= 6.0.3.
|
166
|
-
activejob (= 6.0.3.
|
167
|
-
activemodel (= 6.0.3.
|
168
|
-
activerecord (= 6.0.3.
|
169
|
-
activestorage (= 6.0.3.
|
170
|
-
activesupport (= 6.0.3.
|
159
|
+
rails (6.0.3.5)
|
160
|
+
actioncable (= 6.0.3.5)
|
161
|
+
actionmailbox (= 6.0.3.5)
|
162
|
+
actionmailer (= 6.0.3.5)
|
163
|
+
actionpack (= 6.0.3.5)
|
164
|
+
actiontext (= 6.0.3.5)
|
165
|
+
actionview (= 6.0.3.5)
|
166
|
+
activejob (= 6.0.3.5)
|
167
|
+
activemodel (= 6.0.3.5)
|
168
|
+
activerecord (= 6.0.3.5)
|
169
|
+
activestorage (= 6.0.3.5)
|
170
|
+
activesupport (= 6.0.3.5)
|
171
171
|
bundler (>= 1.3.0)
|
172
|
-
railties (= 6.0.3.
|
172
|
+
railties (= 6.0.3.5)
|
173
173
|
sprockets-rails (>= 2.0.0)
|
174
174
|
rails-controller-testing (1.0.5)
|
175
175
|
actionpack (>= 5.0.1.rc1)
|
@@ -180,14 +180,14 @@ GEM
|
|
180
180
|
nokogiri (>= 1.6)
|
181
181
|
rails-html-sanitizer (1.3.0)
|
182
182
|
loofah (~> 2.3)
|
183
|
-
railties (6.0.3.
|
184
|
-
actionpack (= 6.0.3.
|
185
|
-
activesupport (= 6.0.3.
|
183
|
+
railties (6.0.3.5)
|
184
|
+
actionpack (= 6.0.3.5)
|
185
|
+
activesupport (= 6.0.3.5)
|
186
186
|
method_source
|
187
187
|
rake (>= 0.8.7)
|
188
188
|
thor (>= 0.20.3, < 2.0)
|
189
189
|
rainbow (3.0.0)
|
190
|
-
rake (13.0.
|
190
|
+
rake (13.0.3)
|
191
191
|
rb-readline (0.5.5)
|
192
192
|
redirect_safely (1.0.0)
|
193
193
|
activemodel
|
@@ -208,7 +208,7 @@ GEM
|
|
208
208
|
rubocop (~> 1.4)
|
209
209
|
ruby-progressbar (1.10.1)
|
210
210
|
ruby2_keywords (0.0.4)
|
211
|
-
shopify_api (9.
|
211
|
+
shopify_api (9.4.0)
|
212
212
|
activeresource (>= 4.1.0, < 6.0.0)
|
213
213
|
graphql-client
|
214
214
|
rack
|
@@ -222,7 +222,7 @@ GEM
|
|
222
222
|
sqlite3 (1.4.2)
|
223
223
|
thor (1.1.0)
|
224
224
|
thread_safe (0.3.6)
|
225
|
-
tzinfo (1.2.
|
225
|
+
tzinfo (1.2.9)
|
226
226
|
thread_safe (~> 0.1)
|
227
227
|
unicode-display_width (1.7.0)
|
228
228
|
webmock (3.9.1)
|
@@ -232,7 +232,7 @@ GEM
|
|
232
232
|
websocket-driver (0.7.3)
|
233
233
|
websocket-extensions (>= 0.1.0)
|
234
234
|
websocket-extensions (0.1.5)
|
235
|
-
zeitwerk (2.4.
|
235
|
+
zeitwerk (2.4.2)
|
236
236
|
|
237
237
|
PLATFORMS
|
238
238
|
ruby
|