shopifly 0.1.0 → 0.2.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 42436242fd27ab99de6ffcb49dc1364abf83f3c88fd3352de053da1bf60f5a73
4
- data.tar.gz: 1f9dde3e060b8ebb56ac4337a03e0b7d093b18527446f96043627fa5a1fb37be
3
+ metadata.gz: 8db13f5f050e5aad0de97eca0c650bef7409e0e1e7e9797a30f0de940d640d1f
4
+ data.tar.gz: 830e26109cc1b5d105bfcd19a2fdb946b14e4f20a99a36389ac9def97e9d4e45
5
5
  SHA512:
6
- metadata.gz: bc1339ec10e27719947afb65bc277c38fe3a488240bbe93d0444ecb61a2d21755149e55831987a7d31385abb45ff99b0c434e722e21e13dd57195cb8e29bed88
7
- data.tar.gz: eb9eae068e9cc406d63f9459e5637d1cac1c1d1fffa80f3e6e91fb64d3d8fb4e058780dfc7bc3bf64ed2ee6c4a18247b4323cf1d23d1158937fe99ccb7ab32de
6
+ metadata.gz: 7c5c755de2f883b5d3bde96d37760a7222ec8bd5389e9106dd659caf9345d1a1768acc48099e207b7a00c617fca6e242d79021ec3a4262cd0699ec22a63e5363
7
+ data.tar.gz: 7a6ddf16f3e7f84d2ded2f6ec5e0cdc6171054f2bb0966aa7ce89c3a302de1171b75bfa2ddb74459074a363361cf71107e74c2420144560b30899faabc884b4a
data/Gemfile.lock CHANGED
@@ -1,17 +1,17 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- shopifly (0.1.0)
5
- json
6
- rainbow
7
- shopify_api
4
+ shopifly (0.2.0)
5
+ json (~> 2.3.0)
6
+ rainbow (~> 3.0.0)
7
+ shopify_api (~> 8.1.0)
8
8
  thor (~> 0.20)
9
9
 
10
10
  GEM
11
11
  remote: https://rubygems.org/
12
12
  specs:
13
- activemodel (6.0.2.1)
14
- activesupport (= 6.0.2.1)
13
+ activemodel (6.0.2.2)
14
+ activesupport (= 6.0.2.2)
15
15
  activemodel-serializers-xml (1.0.2)
16
16
  activemodel (> 5.x)
17
17
  activesupport (> 5.x)
@@ -20,16 +20,16 @@ GEM
20
20
  activemodel (>= 5.0, < 7)
21
21
  activemodel-serializers-xml (~> 1.0)
22
22
  activesupport (>= 5.0, < 7)
23
- activesupport (6.0.2.1)
23
+ activesupport (6.0.2.2)
24
24
  concurrent-ruby (~> 1.0, >= 1.0.2)
25
25
  i18n (>= 0.7, < 2)
26
26
  minitest (~> 5.1)
27
27
  tzinfo (~> 1.1)
28
28
  zeitwerk (~> 2.2)
29
29
  builder (3.2.4)
30
- concurrent-ruby (1.1.5)
30
+ concurrent-ruby (1.1.6)
31
31
  diff-lcs (1.3)
32
- graphql (1.10.0)
32
+ graphql (1.10.5)
33
33
  graphql-client (0.16.0)
34
34
  activesupport (>= 3.0)
35
35
  graphql (~> 1.8)
@@ -37,7 +37,7 @@ GEM
37
37
  concurrent-ruby (~> 1.0)
38
38
  json (2.3.0)
39
39
  minitest (5.14.0)
40
- rack (2.1.1)
40
+ rack (2.2.2)
41
41
  rainbow (3.0.0)
42
42
  rake (10.5.0)
43
43
  rspec (3.9.0)
@@ -61,7 +61,7 @@ GEM
61
61
  thread_safe (0.3.6)
62
62
  tzinfo (1.2.6)
63
63
  thread_safe (~> 0.1)
64
- zeitwerk (2.2.2)
64
+ zeitwerk (2.3.0)
65
65
 
66
66
  PLATFORMS
67
67
  ruby
data/README.md CHANGED
@@ -1,9 +1,6 @@
1
1
  # Shopifly
2
2
 
3
- Shopifly is a command-line utility that simplifies git flows with Shopify's
4
- themekit.
5
-
6
- Shopifly exists to enforce branch-theme parity.
3
+ Shopifly is a command-line utility that helps to enforce branch-theme parity.
7
4
 
8
5
  At this time it is compatible only with `config.yml` based Shopify Themekit
9
6
  setups.
@@ -62,7 +59,6 @@ stores:
62
59
  live
63
60
  password: xxx
64
61
  store: my-shop.myshopify.com
65
-
66
62
  ```
67
63
 
68
64
  ### .current_store
@@ -156,10 +152,9 @@ gem install --local ~/dev/lunchtime/shopifly/pkg/shopifly-X.X.X.gem
156
152
  To install this gem onto your local machine and ruby version (found in
157
153
  `.ruby-version`), run `bundle exec rake install`.
158
154
 
159
- To
160
- release a new version, update the version number in `version.rb`, and then run
161
- `bundle exec rake release`, which will create a git tag for the version, push
162
- git commits and tags, and push the `.gem` file to
155
+ To release a new version, update the version number in `version.rb`, and then
156
+ run `bundle exec rake release`, which will create a git tag for the version,
157
+ push git commits and tags, and push the `.gem` file to
163
158
  [rubygems.org](https://rubygems.org).
164
159
 
165
160
  ## License
@@ -1,3 +1,3 @@
1
1
  module Shopifly
2
- VERSION = "0.1.0".freeze
2
+ VERSION = "0.2.0".freeze
3
3
  end
data/shopifly.gemspec CHANGED
@@ -8,10 +8,10 @@ Gem::Specification.new do |spec|
8
8
  spec.authors = ["Lee Pender", "Mateo Lugo"]
9
9
  spec.email = ["lee@lunchtimelabs.io", "lugomateo@gmail.com"]
10
10
 
11
- spec.summary = ""
12
- spec.description = ""
13
- spec.homepage = "https://github.com/lugomateo/shopifly"
14
- spec.license = "MIT"
11
+ spec.summary = "Shopifly is a command-line utility that helps to enforce branch-theme parity."
12
+ spec.description = " Shopifly is a command-line utility that helps to enforce branch-theme parity. At this time it is compatible only with `config.yml` based Shopify Themekit setups."
13
+ spec.homepage = "https://hackmd.io/-qFRvujHQ1enPbHUOylo-Q"
14
+ spec.license = "GPL3"
15
15
 
16
16
  spec.files = Dir.chdir(File.expand_path(__dir__)) do
17
17
  `git ls-files -z`.split("\x0")
@@ -25,8 +25,8 @@ Gem::Specification.new do |spec|
25
25
  spec.add_development_dependency "bundler", "~> 2.0"
26
26
  spec.add_development_dependency "rake", "~> 10.0"
27
27
  spec.add_development_dependency "rspec", "~> 3.0"
28
- spec.add_dependency "json"
29
- spec.add_dependency "rainbow"
30
- spec.add_dependency "shopify_api"
28
+ spec.add_dependency "json", "~> 2.3.0"
29
+ spec.add_dependency "rainbow", "~> 3.0.0"
30
+ spec.add_dependency "shopify_api", "~> 8.1.0"
31
31
  spec.add_dependency "thor", "~> 0.20"
32
32
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: shopifly
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Lee Pender
@@ -57,44 +57,44 @@ dependencies:
57
57
  name: json
58
58
  requirement: !ruby/object:Gem::Requirement
59
59
  requirements:
60
- - - ">="
60
+ - - "~>"
61
61
  - !ruby/object:Gem::Version
62
- version: '0'
62
+ version: 2.3.0
63
63
  type: :runtime
64
64
  prerelease: false
65
65
  version_requirements: !ruby/object:Gem::Requirement
66
66
  requirements:
67
- - - ">="
67
+ - - "~>"
68
68
  - !ruby/object:Gem::Version
69
- version: '0'
69
+ version: 2.3.0
70
70
  - !ruby/object:Gem::Dependency
71
71
  name: rainbow
72
72
  requirement: !ruby/object:Gem::Requirement
73
73
  requirements:
74
- - - ">="
74
+ - - "~>"
75
75
  - !ruby/object:Gem::Version
76
- version: '0'
76
+ version: 3.0.0
77
77
  type: :runtime
78
78
  prerelease: false
79
79
  version_requirements: !ruby/object:Gem::Requirement
80
80
  requirements:
81
- - - ">="
81
+ - - "~>"
82
82
  - !ruby/object:Gem::Version
83
- version: '0'
83
+ version: 3.0.0
84
84
  - !ruby/object:Gem::Dependency
85
85
  name: shopify_api
86
86
  requirement: !ruby/object:Gem::Requirement
87
87
  requirements:
88
- - - ">="
88
+ - - "~>"
89
89
  - !ruby/object:Gem::Version
90
- version: '0'
90
+ version: 8.1.0
91
91
  type: :runtime
92
92
  prerelease: false
93
93
  version_requirements: !ruby/object:Gem::Requirement
94
94
  requirements:
95
- - - ">="
95
+ - - "~>"
96
96
  - !ruby/object:Gem::Version
97
- version: '0'
97
+ version: 8.1.0
98
98
  - !ruby/object:Gem::Dependency
99
99
  name: thor
100
100
  requirement: !ruby/object:Gem::Requirement
@@ -109,7 +109,9 @@ dependencies:
109
109
  - - "~>"
110
110
  - !ruby/object:Gem::Version
111
111
  version: '0.20'
112
- description: ''
112
+ description: " Shopifly is a command-line utility that helps to enforce branch-theme
113
+ parity. At this time it is compatible only with `config.yml` based Shopify Themekit
114
+ setups."
113
115
  email:
114
116
  - lee@lunchtimelabs.io
115
117
  - lugomateo@gmail.com
@@ -139,9 +141,9 @@ files:
139
141
  - lib/shopifly/version.rb
140
142
  - shopifly.gemspec
141
143
  - shopifly_functionality.txt
142
- homepage: https://github.com/lugomateo/shopifly
144
+ homepage: https://hackmd.io/-qFRvujHQ1enPbHUOylo-Q
143
145
  licenses:
144
- - MIT
146
+ - GPL3
145
147
  metadata: {}
146
148
  post_install_message:
147
149
  rdoc_options: []
@@ -161,5 +163,5 @@ requirements: []
161
163
  rubygems_version: 3.0.3
162
164
  signing_key:
163
165
  specification_version: 4
164
- summary: ''
166
+ summary: Shopifly is a command-line utility that helps to enforce branch-theme parity.
165
167
  test_files: []