shopify_cli 1.0.2 → 1.0.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: aec4b85f70c3298633adf32884c5b07e19223cdeeec22bcfb393823e90e9c27a
4
- data.tar.gz: b7cf37012e2e4f6b906022c281f5056a18ad6bcfa355764a7cbf445b4190cc3d
3
+ metadata.gz: 257b67c93feedc4c97a3f7e7fcdca639c85c032383f010bfe5a391cdcd87b6ac
4
+ data.tar.gz: c9c679ec583dac41fab34bfe4bec799da7dc18fce9ad8196e33d7d9d527758c5
5
5
  SHA512:
6
- metadata.gz: 1d0c42a524087174f42e7b58d5cc0ba49e20c3d802f9299e0db2feb8c68127b554f5fe7b02f7991a031175a100953700666ccfb611de305092a9f276820307fe
7
- data.tar.gz: 9ef49a1b0170fa4ac127a9b06ac00b4c2bee8eee116411bb0cd101354680737909c597be9bee35e8488b1180e89f55564ac22995200bd4dead02a04838ca8fe9
6
+ metadata.gz: a11e624059da372dff855f8d9229eb71556df2e042a77a5317d37327514b96de034b9fb4cbb6ccdaf2a1a32564db027996ba795dadc72051252769dda7269767
7
+ data.tar.gz: 68835b676f67cbb9fefeaa0be2f7cc03e0920b01a9c6dbe12848fd6a02e75d05791fe2d862a8d662cd67e40d6e11f97c710d4fed5771dbbf401ecac38e5a38ad
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- shopify_cli (1.0.2)
4
+ shopify_cli (1.0.3)
5
5
  activemodel (>= 4.2.2)
6
6
  activesupport (>= 4.2.2)
7
7
  pry (>= 0.9.12.6)
data/README.md CHANGED
@@ -1,60 +1,15 @@
1
- #shopify_cli
1
+ # This gem has been renamed
2
2
 
3
- [![Build Status](https://travis-ci.org/Shopify/shopify_cli.svg?branch=master)](https://travis-ci.org/Shopify/shopify_cli)
3
+ * Name: shopify_cli --> shopify_api_console
4
+ * GitHub: https://github.com/Shopify/shopify_cli --> https://github.com/Shopify/shopify_api_console_ruby
5
+ * RubyGems: https://rubygems.org/gems/shopify_cli --> https://rubygems.org/gems/shopify_api_console_ruby
4
6
 
5
- This package also includes the ``shopify-cli`` executable to make it easy to open up an interactive console to use the API with a shop.
7
+ shopify_cli 1.x will not be supported going forward. v1.0.3 will produce a deprecation warning.
6
8
 
7
- 1. Obtain a private API key and password to use with your shop (step 2 in "Getting Started")
9
+ Starting with v2.0, the gem has been renamed to `shopify_api_console`. We recommend switching to shopify_api_console v2.0+ as soon as possible.
8
10
 
9
- 2. Use the ``shopify-cli`` script to save the credentials for the shop to quickly log in.
11
+ 1.x versions will continue to exist on [RubyGems](https://rubygems.org/gems/shopify_cli) and in the [GitHub releases](https://github.com/Shopify/shopify_cli/releases). If you _must_ use one of these releases, make sure to specify a version:
10
12
 
11
- ```bash
12
- shopify-cli add yourshopname
13
- ```
14
-
15
- Follow the prompts for the shop domain, API key and password.
16
-
17
- 3. Start the console for the connection.
18
-
19
- ```bash
20
- shopify-cli console
21
- ```
22
-
23
- 4. To see the full list of commands, type:
24
-
25
- ```bash
26
- shopify-cli help
27
- ```
28
-
29
- ## Installation:
30
-
31
- `gem install shopify_cli`
32
-
33
- ## Contributing
34
-
35
- After checking out the source, run:
36
-
37
- `$ bundle install && bundle exec rake test`
38
-
39
- ## License:
40
-
41
- Copyright (c) 2015 Shopify
42
-
43
- Permission is hereby granted, free of charge, to any person obtaining
44
- a copy of this software and associated documentation files (the
45
- 'Software'), to deal in the Software without restriction, including
46
- without limitation the rights to use, copy, modify, merge, publish,
47
- distribute, sublicense, and/or sell copies of the Software, and to
48
- permit persons to whom the Software is furnished to do so, subject to
49
- the following conditions:
50
-
51
- The above copyright notice and this permission notice shall be
52
- included in all copies or substantial portions of the Software.
53
-
54
- THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
55
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
56
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
57
- IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
58
- CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
59
- TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
60
- SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
13
+ ```
14
+ gem install shopify_cli -v v1.0.3
15
+ ```
@@ -1,3 +1,4 @@
1
1
  module ShopifyCLI
2
- VERSION = "1.0.2"
2
+ VERSION = "1.0.3"
3
+ warn "[DEPRECATION] This gem has been renamed to shopify_api_console. Please switch to shopify_api_console v2+ as soon as possible."
3
4
  end
@@ -8,8 +8,7 @@ Gem::Specification.new do |s|
8
8
 
9
9
  s.summary = %q{The Shopify CLI gem is a tool for accessing the Shopify admin REST web services from the console}
10
10
  s.description = %q{}
11
- s.email = %q{developers@shopify.com}
12
- s.homepage = %q{http://www.shopify.com/partners/apps}
11
+ s.homepage = %q{https://github.com/Shopify/shopify_api_console_ruby}
13
12
 
14
13
  s.extra_rdoc_files = [
15
14
  "LICENSE",
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: shopify_cli
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.2
4
+ version: 1.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Shopify
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-06-07 00:00:00.000000000 Z
11
+ date: 2019-06-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: shopify_api
@@ -137,7 +137,7 @@ dependencies:
137
137
  - !ruby/object:Gem::Version
138
138
  version: '0'
139
139
  description: ''
140
- email: developers@shopify.com
140
+ email:
141
141
  executables:
142
142
  - shopify-cli
143
143
  extensions: []
@@ -159,7 +159,7 @@ files:
159
159
  - shopify_cli.gemspec
160
160
  - test/cli_test.rb
161
161
  - test/test_helper.rb
162
- homepage: http://www.shopify.com/partners/apps
162
+ homepage: https://github.com/Shopify/shopify_api_console_ruby
163
163
  licenses:
164
164
  - MIT
165
165
  metadata: {}