shopify_theme 0.0.11 → 0.0.12
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.
- data/CHANGELOG.md +8 -0
- data/README.md +16 -0
- data/lib/shopify_theme/cli.rb +3 -1
- data/lib/shopify_theme/version.rb +1 -1
- metadata +5 -4
data/CHANGELOG.md
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
# v0.0.12
|
|
2
|
+
|
|
3
|
+
* Fixes issue where app tried uploading directories
|
|
4
|
+
|
|
5
|
+
# v0.0.11
|
|
6
|
+
|
|
7
|
+
* Locks JSON api version which fixed an issue with downloading large binary files -- Tyler Ball
|
|
8
|
+
* Respect API limits when downloading theme assets from Shopify API -- Chris Saunders
|
data/README.md
CHANGED
|
@@ -66,3 +66,19 @@ Open the store in the default browser
|
|
|
66
66
|
````
|
|
67
67
|
theme open
|
|
68
68
|
````
|
|
69
|
+
|
|
70
|
+
# Common Problems
|
|
71
|
+
|
|
72
|
+
### During the installation of the gem or when trying to use the gem I am encountering the following error
|
|
73
|
+
|
|
74
|
+
`Unable to activate httparty-0.12.0, because json-1.5.4 conflicts with json (~> 1.8) (Gem::LoadError)
|
|
75
|
+
from /Users/Luke/.rvm/rubies/ruby-1.9.3-p374/lib/ruby/site_ruby/1.9.1/rubygems/specification.rb:747:in `activate'`
|
|
76
|
+
|
|
77
|
+
Your globally installed JSON gem is a newer version than what is required for `shopify_theme`. You can get around this
|
|
78
|
+
problem by creating a Gemfile in your theme folder as follows:
|
|
79
|
+
|
|
80
|
+
```ruby
|
|
81
|
+
source 'https://rubygems.org'
|
|
82
|
+
|
|
83
|
+
gem 'shopify_theme'
|
|
84
|
+
```
|
data/lib/shopify_theme/cli.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: shopify_theme
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.12
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2013-11-
|
|
12
|
+
date: 2013-11-07 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: thor
|
|
@@ -135,6 +135,7 @@ extra_rdoc_files: []
|
|
|
135
135
|
files:
|
|
136
136
|
- .gitignore
|
|
137
137
|
- .travis.yml
|
|
138
|
+
- CHANGELOG.md
|
|
138
139
|
- Gemfile
|
|
139
140
|
- MIT-LICENSE
|
|
140
141
|
- README.md
|
|
@@ -160,7 +161,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
160
161
|
version: '0'
|
|
161
162
|
segments:
|
|
162
163
|
- 0
|
|
163
|
-
hash:
|
|
164
|
+
hash: -2229823443211554641
|
|
164
165
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
165
166
|
none: false
|
|
166
167
|
requirements:
|
|
@@ -169,7 +170,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
169
170
|
version: '0'
|
|
170
171
|
segments:
|
|
171
172
|
- 0
|
|
172
|
-
hash:
|
|
173
|
+
hash: -2229823443211554641
|
|
173
174
|
requirements: []
|
|
174
175
|
rubyforge_project: shopify_theme
|
|
175
176
|
rubygems_version: 1.8.23
|