workarea-yotpo 1.0.0 → 1.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +13 -0
- data/Gemfile +1 -1
- data/Rakefile +1 -2
- data/app/services/{yotpo → workarea/yotpo}/order.rb +0 -0
- data/lib/workarea/yotpo/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 92af3e4061c53d419493f95c1d51851fdb7052253bd19018c89f68c887c280ca
|
4
|
+
data.tar.gz: fc8aaea41e33ede35619a310d786a6770dbc632942e0632da097ae7bac0988b2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 256af66b3f1f2cf4fc07c8370c5d9df530855681434d96ed7063c877a517107da25a28a92f1f389fa9c48a061ab0b884708fa7a295a0f7659428d4e97e06d441
|
7
|
+
data.tar.gz: c34afe50f32aefde43cfed9b0997b9e01debd98ee7e70c8cf89f11bd51d2347c5225e77446a8a095ec74b06c9bfeaa3acb1f917f022ec33a8cb64083be36acc3
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,16 @@
|
|
1
|
+
Workarea Yotpo 1.0.1 (2020-08-14)
|
2
|
+
--------------------------------------------------------------------------------
|
3
|
+
|
4
|
+
* Make order service path match namespace
|
5
|
+
|
6
|
+
Rails constant autoloading requires that the file path match the module
|
7
|
+
namespace. This happened to work for normal usage because we're eager
|
8
|
+
loading the file, but breaks with decoration since that runs earlier.
|
9
|
+
|
10
|
+
Jonathan Mast
|
11
|
+
|
12
|
+
|
13
|
+
|
1
14
|
Workarea Yotpo 1.0.0 (2019-11-26)
|
2
15
|
--------------------------------------------------------------------------------
|
3
16
|
|
data/Gemfile
CHANGED
data/Rakefile
CHANGED
@@ -37,10 +37,9 @@ task :release do
|
|
37
37
|
Rake::Task['workarea:changelog'].execute
|
38
38
|
system 'git add CHANGELOG.md'
|
39
39
|
system 'git commit -m "Update CHANGELOG"'
|
40
|
-
system 'git push origin HEAD'
|
41
40
|
|
42
41
|
system "git tag -a v#{Workarea::Yotpo::VERSION} -m 'Tagging #{Workarea::Yotpo::VERSION}'"
|
43
|
-
system 'git push --tags'
|
42
|
+
system 'git push origin HEAD --follow-tags'
|
44
43
|
|
45
44
|
system "gem build workarea-yotpo.gemspec"
|
46
45
|
system "gem push workarea-yotpo-#{Workarea::Yotpo::VERSION}.gem"
|
File without changes
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: workarea-yotpo
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jeff Yucis
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2020-08-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: workarea
|
@@ -67,7 +67,7 @@ files:
|
|
67
67
|
- app/helpers/.keep
|
68
68
|
- app/mailers/.keep
|
69
69
|
- app/models/.keep
|
70
|
-
- app/services/yotpo/order.rb
|
70
|
+
- app/services/workarea/yotpo/order.rb
|
71
71
|
- app/views/workarea/storefront/_yotpo_tracking.html.haml
|
72
72
|
- app/views/workarea/storefront/checkouts/_yotpo_order_tracking.html.haml
|
73
73
|
- app/views/workarea/storefront/products/_yotpo_product_summary.html.haml
|
@@ -156,7 +156,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
156
156
|
- !ruby/object:Gem::Version
|
157
157
|
version: '0'
|
158
158
|
requirements: []
|
159
|
-
rubygems_version: 3.0.
|
159
|
+
rubygems_version: 3.0.3
|
160
160
|
signing_key:
|
161
161
|
specification_version: 4
|
162
162
|
summary: Yotpo User Generated Content for Workarea Ecommerce.
|