shopify-cli 1.3.0 → 1.6.0

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.
Files changed (206) hide show
  1. checksums.yaml +4 -4
  2. data/.github/CODEOWNERS +2 -2
  3. data/.github/CONTRIBUTING.md +9 -1
  4. data/.github/PULL_REQUEST_TEMPLATE.md +10 -1
  5. data/.github/workflows/release.yml +61 -0
  6. data/.github/workflows/triage.yml +22 -0
  7. data/.gitignore +0 -1
  8. data/.rubocop.yml +61 -8
  9. data/.rubocop_todo.yml +11 -0
  10. data/.travis.yml +1 -0
  11. data/CHANGELOG.md +30 -0
  12. data/Gemfile +3 -2
  13. data/Gemfile.lock +39 -37
  14. data/README.md +39 -7
  15. data/RELEASING.md +19 -29
  16. data/Rakefile +2 -0
  17. data/dev.yml +2 -2
  18. data/docs/_config.yml +1 -18
  19. data/docs/app/node/commands/index.md +2 -80
  20. data/docs/app/node/index.md +2 -33
  21. data/docs/app/rails/commands/index.md +2 -78
  22. data/docs/app/rails/index.md +2 -34
  23. data/docs/core/index.md +2 -84
  24. data/docs/getting-started/index.md +2 -25
  25. data/docs/getting-started/install/index.md +1 -118
  26. data/docs/getting-started/migrate/index.md +2 -94
  27. data/docs/getting-started/uninstall/index.md +2 -35
  28. data/docs/getting-started/upgrade/index.md +2 -39
  29. data/docs/help/start-app/index.md +2 -4
  30. data/docs/index.md +2 -24
  31. data/install.sh +1 -1
  32. data/lib/project_types/extension/cli.rb +21 -11
  33. data/lib/project_types/extension/commands/extension_command.rb +2 -2
  34. data/lib/project_types/extension/features/argo.rb +117 -0
  35. data/lib/project_types/extension/forms/create.rb +2 -2
  36. data/lib/project_types/extension/models/specification.rb +35 -0
  37. data/lib/project_types/extension/models/specification_handlers/checkout_post_purchase.rb +19 -0
  38. data/lib/project_types/extension/models/specification_handlers/default.rb +67 -0
  39. data/lib/project_types/extension/models/specifications.rb +77 -0
  40. data/lib/project_types/extension/tasks/configure_features.rb +52 -0
  41. data/lib/project_types/extension/tasks/fetch_specifications.rb +38 -0
  42. data/lib/project_types/node/cli.rb +4 -1
  43. data/lib/project_types/node/commands/connect.rb +15 -0
  44. data/lib/project_types/node/commands/create.rb +10 -4
  45. data/lib/project_types/node/commands/generate.rb +2 -11
  46. data/lib/project_types/node/messages/messages.rb +16 -50
  47. data/lib/project_types/rails/cli.rb +4 -1
  48. data/lib/project_types/rails/commands/connect.rb +15 -0
  49. data/lib/project_types/rails/commands/create.rb +15 -12
  50. data/lib/project_types/rails/forms/create.rb +1 -1
  51. data/lib/project_types/rails/gem.rb +1 -1
  52. data/lib/project_types/rails/messages/messages.rb +8 -5
  53. data/lib/project_types/script/cli.rb +9 -5
  54. data/lib/project_types/script/commands/create.rb +6 -4
  55. data/lib/project_types/script/commands/enable.rb +12 -4
  56. data/lib/project_types/script/commands/push.rb +5 -13
  57. data/lib/project_types/script/config/extension_points.yml +17 -12
  58. data/lib/project_types/script/errors.rb +21 -0
  59. data/lib/project_types/script/forms/create.rb +26 -2
  60. data/lib/project_types/script/graphql/app_script_update_or_create.graphql +10 -1
  61. data/lib/project_types/script/layers/application/build_script.rb +18 -17
  62. data/lib/project_types/script/layers/application/create_script.rb +12 -10
  63. data/lib/project_types/script/layers/application/extension_points.rb +24 -0
  64. data/lib/project_types/script/layers/application/push_script.rb +18 -16
  65. data/lib/project_types/script/layers/domain/errors.rb +7 -0
  66. data/lib/project_types/script/layers/domain/extension_point.rb +62 -7
  67. data/lib/project_types/script/layers/domain/metadata.rb +55 -0
  68. data/lib/project_types/script/layers/domain/push_package.rb +25 -6
  69. data/lib/project_types/script/layers/infrastructure/assemblyscript_project_creator.rb +17 -52
  70. data/lib/project_types/script/layers/infrastructure/assemblyscript_task_runner.rb +42 -11
  71. data/lib/project_types/script/layers/infrastructure/errors.rb +16 -0
  72. data/lib/project_types/script/layers/infrastructure/extension_point_repository.rb +10 -4
  73. data/lib/project_types/script/layers/infrastructure/project_creator.rb +2 -1
  74. data/lib/project_types/script/layers/infrastructure/push_package_repository.rb +25 -13
  75. data/lib/project_types/script/layers/infrastructure/rust_project_creator.rb +72 -0
  76. data/lib/project_types/script/layers/infrastructure/rust_task_runner.rb +59 -0
  77. data/lib/project_types/script/layers/infrastructure/script_service.rb +9 -1
  78. data/lib/project_types/script/layers/infrastructure/task_runner.rb +4 -3
  79. data/lib/project_types/script/messages/messages.rb +55 -4
  80. data/lib/project_types/script/script_project.rb +25 -16
  81. data/lib/project_types/script/ui/error_handler.rb +59 -1
  82. data/lib/project_types/theme/cli.rb +40 -0
  83. data/lib/project_types/theme/commands/connect.rb +54 -0
  84. data/lib/project_types/theme/commands/create.rb +48 -0
  85. data/lib/project_types/theme/commands/deploy.rb +38 -0
  86. data/lib/project_types/theme/commands/generate.rb +20 -0
  87. data/lib/project_types/theme/commands/generate/env.rb +79 -0
  88. data/lib/project_types/theme/commands/push.rb +55 -0
  89. data/lib/project_types/theme/commands/serve.rb +31 -0
  90. data/lib/project_types/theme/forms/connect.rb +34 -0
  91. data/lib/project_types/theme/forms/create.rb +22 -0
  92. data/lib/project_types/theme/messages/messages.rb +147 -0
  93. data/lib/project_types/theme/tasks/ensure_themekit_installed.rb +78 -0
  94. data/lib/project_types/theme/themekit.rb +113 -0
  95. data/lib/shopify-cli/admin_api.rb +42 -2
  96. data/lib/shopify-cli/api.rb +34 -33
  97. data/lib/shopify-cli/commands/config.rb +24 -0
  98. data/lib/shopify-cli/commands/connect.rb +32 -15
  99. data/lib/shopify-cli/commands/system.rb +10 -1
  100. data/lib/shopify-cli/context.rb +23 -2
  101. data/lib/shopify-cli/core/entry_point.rb +1 -1
  102. data/lib/shopify-cli/core/monorail.rb +6 -4
  103. data/lib/shopify-cli/feature.rb +0 -2
  104. data/lib/shopify-cli/http_request.rb +27 -0
  105. data/lib/shopify-cli/js_deps.rb +1 -1
  106. data/lib/shopify-cli/messages/messages.rb +31 -7
  107. data/lib/shopify-cli/method_object.rb +104 -0
  108. data/lib/shopify-cli/partners_api.rb +25 -3
  109. data/lib/shopify-cli/process_supervision.rb +1 -1
  110. data/lib/shopify-cli/project.rb +12 -8
  111. data/lib/shopify-cli/project_type.rb +18 -2
  112. data/lib/shopify-cli/resolve_constant.rb +25 -0
  113. data/lib/shopify-cli/result.rb +432 -0
  114. data/lib/shopify-cli/shopifolk.rb +87 -0
  115. data/lib/shopify-cli/task.rb +8 -0
  116. data/lib/shopify-cli/tasks/create_api_client.rb +13 -2
  117. data/lib/shopify-cli/tasks/ensure_env.rb +3 -0
  118. data/lib/shopify-cli/tasks/select_org_and_shop.rb +10 -5
  119. data/lib/shopify-cli/tunnel.rb +8 -2
  120. data/lib/shopify-cli/version.rb +1 -1
  121. data/lib/shopify_cli.rb +5 -1
  122. data/shopify.fish +1 -1
  123. data/shopify.sh +1 -1
  124. data/vendor/deps/cli-kit/REVISION +1 -1
  125. data/vendor/deps/cli-kit/lib/cli/kit/logger.rb +2 -2
  126. data/vendor/deps/cli-kit/lib/cli/kit/system.rb +3 -3
  127. data/vendor/deps/cli-ui/REVISION +1 -1
  128. data/vendor/deps/cli-ui/lib/cli/ui.rb +26 -22
  129. data/vendor/deps/cli-ui/lib/cli/ui/ansi.rb +4 -6
  130. data/vendor/deps/cli-ui/lib/cli/ui/frame.rb +3 -3
  131. data/vendor/deps/cli-ui/lib/cli/ui/frame/frame_stack.rb +8 -9
  132. data/vendor/deps/cli-ui/lib/cli/ui/frame/frame_style.rb +1 -1
  133. data/vendor/deps/cli-ui/lib/cli/ui/glyph.rb +1 -0
  134. data/vendor/deps/cli-ui/lib/cli/ui/printer.rb +15 -3
  135. data/vendor/deps/cli-ui/lib/cli/ui/prompt/interactive_options.rb +4 -11
  136. data/vendor/deps/cli-ui/lib/cli/ui/spinner.rb +3 -5
  137. data/vendor/deps/cli-ui/lib/cli/ui/terminal.rb +10 -10
  138. data/vendor/deps/cli-ui/lib/cli/ui/version.rb +1 -1
  139. data/vendor/deps/cli-ui/lib/cli/ui/wrap.rb +56 -0
  140. data/vendor/deps/webrick/.gitignore +9 -0
  141. data/vendor/deps/webrick/Gemfile +3 -0
  142. data/vendor/deps/webrick/LICENSE.txt +22 -0
  143. data/vendor/deps/webrick/README.md +61 -0
  144. data/vendor/deps/webrick/Rakefile +10 -0
  145. data/vendor/deps/webrick/lib/webrick.rb +232 -0
  146. data/vendor/deps/webrick/lib/webrick/accesslog.rb +157 -0
  147. data/vendor/deps/webrick/lib/webrick/cgi.rb +313 -0
  148. data/vendor/deps/webrick/lib/webrick/compat.rb +36 -0
  149. data/vendor/deps/webrick/lib/webrick/config.rb +158 -0
  150. data/vendor/deps/webrick/lib/webrick/cookie.rb +172 -0
  151. data/vendor/deps/webrick/lib/webrick/htmlutils.rb +30 -0
  152. data/vendor/deps/webrick/lib/webrick/httpauth.rb +96 -0
  153. data/vendor/deps/webrick/lib/webrick/httpauth/authenticator.rb +117 -0
  154. data/vendor/deps/webrick/lib/webrick/httpauth/basicauth.rb +116 -0
  155. data/vendor/deps/webrick/lib/webrick/httpauth/digestauth.rb +395 -0
  156. data/vendor/deps/webrick/lib/webrick/httpauth/htdigest.rb +132 -0
  157. data/vendor/deps/webrick/lib/webrick/httpauth/htgroup.rb +97 -0
  158. data/vendor/deps/webrick/lib/webrick/httpauth/htpasswd.rb +158 -0
  159. data/vendor/deps/webrick/lib/webrick/httpauth/userdb.rb +53 -0
  160. data/vendor/deps/webrick/lib/webrick/httpproxy.rb +354 -0
  161. data/vendor/deps/webrick/lib/webrick/httprequest.rb +636 -0
  162. data/vendor/deps/webrick/lib/webrick/httpresponse.rb +564 -0
  163. data/vendor/deps/webrick/lib/webrick/https.rb +152 -0
  164. data/vendor/deps/webrick/lib/webrick/httpserver.rb +294 -0
  165. data/vendor/deps/webrick/lib/webrick/httpservlet.rb +23 -0
  166. data/vendor/deps/webrick/lib/webrick/httpservlet/abstract.rb +152 -0
  167. data/vendor/deps/webrick/lib/webrick/httpservlet/cgi_runner.rb +47 -0
  168. data/vendor/deps/webrick/lib/webrick/httpservlet/cgihandler.rb +126 -0
  169. data/vendor/deps/webrick/lib/webrick/httpservlet/erbhandler.rb +88 -0
  170. data/vendor/deps/webrick/lib/webrick/httpservlet/filehandler.rb +552 -0
  171. data/vendor/deps/webrick/lib/webrick/httpservlet/prochandler.rb +47 -0
  172. data/vendor/deps/webrick/lib/webrick/httpstatus.rb +194 -0
  173. data/vendor/deps/webrick/lib/webrick/httputils.rb +512 -0
  174. data/vendor/deps/webrick/lib/webrick/httpversion.rb +76 -0
  175. data/vendor/deps/webrick/lib/webrick/log.rb +156 -0
  176. data/vendor/deps/webrick/lib/webrick/server.rb +381 -0
  177. data/vendor/deps/webrick/lib/webrick/ssl.rb +215 -0
  178. data/vendor/deps/webrick/lib/webrick/utils.rb +265 -0
  179. data/vendor/deps/webrick/lib/webrick/version.rb +18 -0
  180. data/vendor/deps/webrick/webrick.gemspec +74 -0
  181. metadata +77 -27
  182. data/docs/Gemfile +0 -5
  183. data/docs/Gemfile.lock +0 -258
  184. data/docs/_data/nav.yml +0 -35
  185. data/docs/_includes/footer.html +0 -15
  186. data/docs/_includes/head.html +0 -19
  187. data/docs/_includes/sidebar_nav.html +0 -22
  188. data/docs/_includes/toc.html +0 -112
  189. data/docs/_layouts/default.html +0 -79
  190. data/docs/css/docs.css +0 -157
  191. data/docs/images/header.png +0 -0
  192. data/docs/installing-ruby.md +0 -28
  193. data/lib/project_types/extension/features/argo/admin.rb +0 -20
  194. data/lib/project_types/extension/features/argo/base.rb +0 -129
  195. data/lib/project_types/extension/features/argo/checkout.rb +0 -20
  196. data/lib/project_types/extension/models/type.rb +0 -81
  197. data/lib/project_types/extension/models/types/checkout_post_purchase.rb +0 -23
  198. data/lib/project_types/extension/models/types/product_subscription.rb +0 -24
  199. data/lib/project_types/node/commands/generate/billing.rb +0 -39
  200. data/lib/project_types/node/commands/generate/page.rb +0 -59
  201. data/lib/project_types/node/commands/generate/webhook.rb +0 -37
  202. data/lib/project_types/script/layers/domain/script.rb +0 -18
  203. data/lib/project_types/script/layers/infrastructure/assemblyscript_tsconfig.rb +0 -38
  204. data/lib/project_types/script/layers/infrastructure/script_repository.rb +0 -59
  205. data/lib/project_types/script/templates/ts/as-pect.config.js +0 -27
  206. data/lib/project_types/script/templates/ts/as-pect.d.ts +0 -1
@@ -1,27 +1,4 @@
1
1
  ---
2
- title: Getting started
3
- section: getting-started
4
- toc: false
2
+ title: Getting started with Shopify App CLI
3
+ redirect_to: https://shopify.dev/tools/cli/getting-started
5
4
  ---
6
-
7
- Developers should have some prior knowledge of the [Shopify app ecosystem](https://shopify.dev/concepts/apps). Shopify App CLI creates apps using either [Node.js](https://nodejs.org/) or [Ruby on Rails](https://rubyonrails.org/).
8
-
9
- ## Requirements
10
-
11
- - A [Shopify partner account](https://partners.shopify.com/signup)
12
- - A [Shopify development store](https://help.shopify.com/en/partners/dashboard/development-stores#create-a-development-store) to install and test apps
13
- - [Ruby](https://www.ruby-lang.org) 2.5.1+
14
-
15
- ### Windows requirements
16
-
17
- If you wish to use Shopify App CLI natively on **Windows 10**, we recommend installing Ruby using [RubyInstaller for Windows](https://rubyinstaller.org/downloads/).
18
-
19
- Alternatively, you can also use Shopify App CLI using **Windows Subsystem for Linux**, in which case you need:
20
- - [Linux Subsystem for Windows](https://docs.microsoft.com/en-us/windows/wsl/install-win10)
21
- - [Ubuntu VM](https://www.microsoft.com/en-ca/p/ubuntu/9nblggh4msv6)
22
-
23
- ## Next steps
24
-
25
- - [Install the CLI]({{ site.baseurl }}/getting-started/install/)
26
- - [Upgrade]({{ site.baseurl }}/getting-started/upgrade/)
27
- - [Uninstall]({{ site.baseurl }}/getting-started/uninstall/)
@@ -1,121 +1,4 @@
1
1
  ---
2
2
  title: Install Shopify App CLI
3
- section: getting-started
4
- toc: false
5
- redirect_from: "/install/"
3
+ redirect_to: https://shopify.dev/tools/cli/installation
6
4
  ---
7
-
8
- Shopify App CLI can be installed on a variety of systems, using a variety of package managers.
9
- > Note that for systems that have multiple installation options, you only need to use one of these methods to install.
10
-
11
- ---
12
- ### macOS
13
-
14
- Shopify App CLI is available through Homebrew _or_ RubyGems.
15
-
16
- **Homebrew**
17
-
18
- You’ll need to run `brew tap` first to add Shopify’s third-party repositories to Homebrew.
19
-
20
- ```console
21
- $ brew tap shopify/shopify
22
- $ brew install shopify-cli
23
- ```
24
-
25
- **RubyGems**
26
-
27
- See the [RubyGems]({{ site.baseurl }}/getting-started/install/#rubygems-all-platforms) section for further details.
28
-
29
- ---
30
-
31
- ### Debian/Ubuntu Linux
32
-
33
- On Debian-based Linux systems, Shopify App CLI is available through the `apt` command _or_ RubyGems.
34
-
35
- **apt**
36
-
37
- You’ll need to install a downloaded `.deb` file with an explicit version number. Check the [releases page](https://github.com/Shopify/shopify-app-cli/releases) to make sure you install the latest package.
38
-
39
- 1. Download the `.deb` file from the [releases page](https://github.com/Shopify/shopify-app-cli/releases)
40
- 1. Install the downloaded file
41
- ```console
42
- $ sudo apt install /path/to/downloaded/shopify-cli-x.y.z.deb
43
- ```
44
-
45
- **RubyGems**
46
-
47
- See the [RubyGems]({{ site.baseurl }}/getting-started/install/#rubygems-all-platforms) section for further details.
48
-
49
- ---
50
-
51
- ### CentOS 8+/Fedora/Red Hat/SUSE Linux
52
-
53
- On RPM-based Linux systems, Shopify App CLI is available through the `yum` command _or_ RubyGems.
54
-
55
- **yum**
56
-
57
- You’ll need to install a downloaded `.rpm` file with an explicit version number. Check the [releases page](https://github.com/Shopify/shopify-app-cli/releases) to make sure you install the latest package.
58
-
59
- 1. Download the `.rpm` file from the [releases page](https://github.com/Shopify/shopify-app-cli/releases)
60
- 1. Install the downloaded file
61
- ```console
62
- $ sudo yum install /path/to/downloaded/shopify-cli-x.y.x.rpm
63
- ```
64
-
65
- **RubyGems**
66
-
67
- See the [RubyGems]({{ site.baseurl }}/getting-started/install/#rubygems-all-platforms) section for further details.
68
-
69
- ---
70
-
71
- ### Windows 10
72
-
73
- On Windows 10 systems, Shopify App CLI is available through [RubyGems]({{ site.baseurl }}/getting-started/install/#rubygem-all-platforms).
74
-
75
- ---
76
-
77
- ### RubyGems (all platforms)
78
-
79
- Shopify App CLI is available on all platforms as a RubyGem through [RubyGems.org](https://rubygems.org/).
80
-
81
- ```console
82
- $ gem install shopify-cli
83
- ```
84
-
85
- ---
86
-
87
- ### To check that Shopify App CLI is installed correctly:
88
-
89
- ```console
90
- $ shopify version
91
- 1.0.0
92
- $
93
- ```
94
-
95
- > Note 1: the version displayed may be newer.
96
-
97
- > Note 2: If you have the `shopify_api` gem installed, you may see the following response:
98
- > ```console
99
- > shopify command is no longer bundled with shopify_api.
100
- > if you need these tools, install the shopify_cli gem
101
- > ```
102
- >
103
- > If so, then you will also need to upgrade the `shopify_api` gem to v9.2.0+ to remove a deprecated `shopify` command that is contained in that gem.
104
- >
105
- > If you also have the `shopify_app` gem (which depends on `shopify_api` gem), you'll need to install or update `shopify_api` first, then uninstall the older version.
106
- >
107
- > To get a list of the version(s) of `shopify_api` currently installed:
108
- > ```console
109
- > $ gem list shopify_api
110
- > ```
111
- >
112
- > To install the latest version:
113
- > ```console
114
- > $ gem install shopify_api
115
- > ```
116
- >
117
- > To uninstall the older version:
118
- > ```console
119
- > $ gem uninstall shopify_api -v x.y.z
120
- > ```
121
- > Replace x.y.z with a version number listed from the `gem list` command. Repeat as needed.
@@ -1,96 +1,4 @@
1
1
  ---
2
- title: Migrate from the legacy Shopify App CLI
3
- section: getting-started
4
- redirect_from: "/migrate/"
2
+ title: Troubleshooting Shopify App CLI
3
+ redirect_to: https://shopify.dev/tools/cli/troubleshooting
5
4
  ---
6
-
7
- As of version 0.9.0, Shopify App CLI is installed and managed as a software package, instead of as a git repository. If you’re using a legacy version, you’ll need to perform a one-time migration to keep using the CLI. Follow these steps to remove the legacy version and reinstall as a package.
8
-
9
- ## Check whether you’re using the legacy version
10
-
11
- Prior to version 0.9.0, Shopify App CLI was installed as a Git repository. You can determine if you’re running a legacy version by running this command:
12
-
13
- ```console
14
- $ shopify version
15
- ```
16
-
17
- If you get a “Command not found” error, then you’re using a legacy version and will need to uninstall it manually.
18
-
19
- ## 1. Uninstall the legacy Shopify App CLI
20
-
21
- There are two steps to completely uninstall the legacy version of Shopify App CLI:
22
-
23
- 1. Delete the legacy CLI files
24
- 1. Remove the legacy `shopify` command from your shell profile
25
- 1. Reload your terminal
26
-
27
- ### 1. Delete the CLI files
28
-
29
- By default, Shopify App CLI was installed in your home directory. All the files are contained in a hidden directory called `.shopify-app-cli`. Delete it to uninstall:
30
-
31
- ```console
32
- $ rm -rf ~/.shopify-app-cli/
33
- ```
34
-
35
- ### 2. Remove the `shopify` command from your shell
36
-
37
- During the install process, Shopify App CLI added a line to your shell configuration. This line could be located in one of a few possible files in your home directory:
38
-
39
- - `~/.bash_profile`
40
- - `~/.zshrc`
41
- - `~/.bash_login`
42
- - `~/.profile`
43
- - `~/.config/fish/config.fish`
44
-
45
- It will look similar to one of the lines below. The exact syntax may vary depending on your system:
46
-
47
- ```sh
48
- # The line won’t look *exactly* like this. `HOME_DIR` will instead be the absolute path to your home directory.
49
- if [[ -f /HOME_DIR/.shopify-cli/shopify.sh ]]; then source /HOME_DIR/.shopify-cli/shopify.sh; fi
50
-
51
- # The line might not be wrapped in an `if` statement. Example:
52
- [ -f "/HOME_DIR/.shopify-app-cli/shopify.sh" ] && source "/HOME_DIR/.shopify-app-cli/shopify.sh"
53
- ```
54
-
55
- Deleting or commenting out the relevant line in your shell profile will remove `shopify` as a command.
56
-
57
- ### 3. Reload your terminal
58
-
59
- For the changes above to take effect, exit your terminal, and start a new one.
60
-
61
- If you try running `shopify` now, you should get a `command not found` error.
62
-
63
- > If you have the `shopify_api` gem installed, you may see the following response:
64
- > ```console
65
- > shopify command is no longer bundled with shopify_api.
66
- > if you need these tools, install the shopify_cli gem
67
- > ```
68
- >
69
- > If so, then you will also need to upgrade the `shopify_api` gem to v9.2.0+ to remove a deprecated `shopify` command that is contained in that gem.
70
- >
71
- > If you also have the `shopify_app` gem (which depends on `shopify_api` gem), you'll need to install or update `shopify_api` first, then uninstall the older version.
72
- >
73
- > To get a list of the version(s) of `shopify_api` currently installed:
74
- > ```console
75
- > $ gem list shopify_api
76
- > ```
77
- >
78
- > To install the latest version:
79
- > ```console
80
- > $ gem install shopify_api
81
- > ```
82
- >
83
- > To uninstall the older version:
84
- > ```console
85
- > $ gem uninstall shopify_api -v x.y.z
86
- > ```
87
- > Replace x.y.z with a version number listed from the `gem list` command. Repeat as needed.
88
-
89
- ## 2. Install the new version
90
-
91
- Next, install the most recent version of Shopify App CLI. Follow the [install directions]({{ site.baseurl }}/getting-started/install/) for your platform.
92
-
93
- ## 3. Re-authenticate the CLI
94
-
95
- The migration process moves some configuration files, so you’ll need to re-authenticate the CLI with your Shopify Partner Dashboard. The CLI will automatically prompt you to re-authenticate when needed.
96
-
@@ -1,37 +1,4 @@
1
1
  ---
2
- title: Uninstall Shopify App CLI
3
- section: getting-started
4
- toc: false
5
- redirect_from: "/uninstall/"
2
+ title: Troubleshooting Shopify App CLI
3
+ redirect_to: https://shopify.dev/tools/cli/troubleshooting
6
4
  ---
7
-
8
- Shopify App CLI can be removed from your system using the same package manager you used to install it.
9
-
10
- ### Homebrew (macOS)
11
-
12
- ```console
13
- $ brew uninstall shopify-cli
14
- ```
15
-
16
- ### apt (Debian, Ubuntu)
17
-
18
- ```console
19
- $ sudo apt remove shopify-cli
20
- ```
21
-
22
- ### yum (CentOS 8+, Fedora, Red Hat, SUSE)
23
-
24
- ```console
25
- $ sudo yum remove shopify-cli
26
- ```
27
-
28
- ### RubyGems (macOS, Linux, Windows 10)
29
-
30
- ```console
31
- $ gem uninstall shopify-cli
32
- ```
33
-
34
- ## Uninstall a legacy version
35
-
36
- If you’re using a legacy version of the CLI (`<0.9.0`), you’ll need to [uninstall it manually]({{ site.baseurl }}/getting-started/migrate/#1-uninstall-the-old-cli).
37
-
@@ -1,41 +1,4 @@
1
1
  ---
2
- title: Upgrade Shopify App CLI
3
- section: getting-started
4
- toc: false
5
- redirect_from: "/upgrade/"
2
+ title: Troubleshooting Shopify App CLI
3
+ redirect_to: https://shopify.dev/tools/cli/troubleshooting
6
4
  ---
7
-
8
- You can manage upgrades to Shopify App CLI with the package manager for your platform. **Note** that it's important to use the same package manager to upgrade that you originally used to install Shopify App CLI.
9
-
10
- ### Homebrew (macOS)
11
-
12
- ```console
13
- $ brew update
14
- $ brew upgrade shopify-cli
15
- ```
16
-
17
- ### apt (Debian, Ubuntu)
18
-
19
- On Debian-based Linux distributions, download the latest `.deb` file for Shopify App CLI from the [releases page](https://github.com/Shopify/shopify-app-cli/releases) and install it to update.
20
-
21
- 1. Download the `.deb` file from the [releases page](https://github.com/Shopify/shopify-app-cli/releases)
22
- 1. Install the downloaded file
23
- ```console
24
- $ sudo apt install /path/to/downloaded/shopify-cli-x.y.z.deb
25
- ```
26
-
27
- ### yum (CentOS 8+, Fedora, Red Hat, SUSE)
28
-
29
- On Red Hat–based Linux distributions, download the latest `.rpm` file for Shopify App CLI from the [releases page](https://github.com/Shopify/shopify-app-cli/releases) and install it to update.
30
-
31
- 1. Download the `.rpm` file from the [releases page](https://github.com/Shopify/shopify-app-cli/releases)
32
- 1. Install the downloaded file
33
- ```console
34
- $ sudo yum install /path/to/downloaded/shopify-cli-x.y.x.rpm
35
- ```
36
-
37
- ### RubyGems (macOS, Linux, Windows 10)
38
-
39
- ```console
40
- $ gem update shopify-cli
41
- ```
@@ -1,6 +1,4 @@
1
1
  ---
2
- title: Start your app
3
- toc: false
2
+ title: Getting started with Shopify App CLI
3
+ redirect_to: https://shopify.dev/tools/cli/getting-started
4
4
  ---
5
-
6
- Your app is not running, and no app URL has been set. Try running `shopify serve` in your project to get started.
data/docs/index.md CHANGED
@@ -1,26 +1,4 @@
1
1
  ---
2
- title: Introduction
3
- section: intro
4
- toc: false
2
+ title: Shopify App CLI
3
+ redirect_to: https://shopify.dev/tools/cli
5
4
  ---
6
-
7
- Shopify App CLI helps you build Shopify apps faster. It quickly scaffolds Node.js and Ruby on Rails apps, and automates many common development tasks.
8
-
9
- **[Get started with Shopify App CLI]({{ site.baseurl }}{% link getting-started/index.md %})**
10
-
11
- ## Quick start
12
-
13
- 1. [Install Shopify App CLI]({{ site.baseurl }}{% link getting-started/install/index.md %}).
14
- 2. Create an app:
15
- ```console
16
- $ shopify create
17
- ```
18
- 3. Start and install your app on a Shopify development store:
19
- ```console
20
- $ shopify serve
21
- ```
22
- ```console
23
- $ shopify open
24
- ```
25
-
26
- **[Learn more in our Getting Started guide]({{ site.baseurl }}{% link getting-started/index.md %})**
data/install.sh CHANGED
@@ -3,5 +3,5 @@
3
3
  This install method for Shopify App CLI is no longer supported.
4
4
 
5
5
  Please visit this page for complete instructions:
6
- https://shopify.github.io/shopify-app-cli/migrate/
6
+ https://shopify.dev/tools/cli/troubleshooting#migrate-from-a-legacy-version
7
7
  EOF
@@ -3,7 +3,8 @@
3
3
  module Extension
4
4
  class Project < ShopifyCli::ProjectType
5
5
  hidden_feature
6
- creator 'App Extension', 'Extension::Commands::Create'
6
+ title('App Extension')
7
+ creator('Extension::Commands::Create')
7
8
 
8
9
  register_command('Extension::Commands::Build', "build")
9
10
  register_command('Extension::Commands::Register', "register")
@@ -33,6 +34,8 @@ module Extension
33
34
  autoload :GetApp, Project.project_filepath('tasks/get_app')
34
35
  autoload :CreateExtension, Project.project_filepath('tasks/create_extension')
35
36
  autoload :UpdateDraft, Project.project_filepath('tasks/update_draft')
37
+ autoload :FetchSpecifications, Project.project_filepath('tasks/fetch_specifications')
38
+ autoload :ConfigureFeatures, Project.project_filepath('tasks/configure_features')
36
39
 
37
40
  module Converters
38
41
  autoload :RegistrationConverter, Project.project_filepath('tasks/converters/registration_converter')
@@ -53,25 +56,32 @@ module Extension
53
56
  autoload :ArgoSetupSteps, Project.project_filepath('features/argo_setup_steps')
54
57
  autoload :ArgoDependencies, Project.project_filepath('features/argo_dependencies')
55
58
  autoload :ArgoConfig, Project.project_filepath('features/argo_config')
56
- module Argo
57
- autoload :Base, Project.project_filepath('features/argo/base')
58
- autoload :Admin, Project.project_filepath('features/argo/admin')
59
- autoload :Checkout, Project.project_filepath('features/argo/checkout')
60
- end
59
+ autoload :Argo, Project.project_filepath('features/argo')
61
60
  end
62
61
 
63
62
  module Models
63
+ module SpecificationHandlers
64
+ autoload :Default, Project.project_filepath('models/specification_handlers/default')
65
+ end
66
+
64
67
  autoload :App, Project.project_filepath('models/app')
65
68
  autoload :Registration, Project.project_filepath('models/registration')
66
69
  autoload :Version, Project.project_filepath('models/version')
67
- autoload :Type, Project.project_filepath('models/type')
68
70
  autoload :ValidationError, Project.project_filepath('models/validation_error')
69
-
70
- class << self
71
- Models::Type.load_all
72
- end
71
+ autoload :Specification, Project.project_filepath('models/specification')
72
+ autoload :Specifications, Project.project_filepath('models/specifications')
73
73
  end
74
74
 
75
75
  autoload :ExtensionProjectKeys, Project.project_filepath('extension_project_keys')
76
76
  autoload :ExtensionProject, Project.project_filepath('extension_project')
77
+
78
+ def self.specifications
79
+ @specifications ||= Models::Specifications.new(
80
+ fetch_specifications: Tasks::FetchSpecifications
81
+ )
82
+ end
83
+
84
+ def self.specifications=(specifications)
85
+ @specifications = specifications
86
+ end
77
87
  end