workarea-emarsys 2.0.0 → 2.0.1
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 +4 -4
- data/CHANGELOG.md +20 -0
- data/app/services/{emarsys → workarea/emarsys}/contact.rb +0 -0
- data/app/services/{emarsys → workarea/emarsys}/contact/order.rb +0 -0
- data/app/services/{emarsys → workarea/emarsys}/contact/user.rb +0 -0
- data/app/workers/workarea/emarsys/{save_order.rb → save_order_contact.rb} +0 -0
- data/lib/workarea/emarsys/version.rb +1 -1
- data/test/services/{emarsys → workarea/emarsys}/contact_test.rb +0 -0
- metadata +8 -8
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 748a18980ab4c98a5f3f8506a2f5780730c4109829b9d29a022e18664063f6f8
|
|
4
|
+
data.tar.gz: 3be7832fb4ada97acbbbec901092d2d94810f4ae65ec6d6bd60c5557c06fedb7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d151d1cbc1ca15ad754600852022a6793e4ad8d439da4b16d01f22dca72b6bbbb955f3e7b22b46010bc74bdbac3b7e90458506b59ab437d603438b3ccad23019
|
|
7
|
+
data.tar.gz: 26febede97363da30e690e26e1cb90f351951cfbfa03a032ab598af45408eb8baf913ebb889c8b2c4c683c79379d57e87f784fe242d0050d3dac1cbb81be2e72
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,23 @@
|
|
|
1
|
+
Workarea Emarsys 2.0.1 (2020-01-29)
|
|
2
|
+
--------------------------------------------------------------------------------
|
|
3
|
+
|
|
4
|
+
* Bump version for release
|
|
5
|
+
|
|
6
|
+
Ben Crouse
|
|
7
|
+
|
|
8
|
+
* Fix Class Paths
|
|
9
|
+
|
|
10
|
+
Some paths in `app/` did not match their constant names, resulting in
|
|
11
|
+
issues when trying to decorate these classes. Move the offending files
|
|
12
|
+
to their correct location so as to enable decorating them.
|
|
13
|
+
|
|
14
|
+
Fixes #10
|
|
15
|
+
|
|
16
|
+
EMARSYS-3
|
|
17
|
+
Tom Scott
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
1
21
|
Workarea Emarsys 2.0.0 (2020-01-21)
|
|
2
22
|
--------------------------------------------------------------------------------
|
|
3
23
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: workarea-emarsys
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.0.
|
|
4
|
+
version: 2.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: 2020-01-
|
|
11
|
+
date: 2020-01-29 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: workarea
|
|
@@ -93,13 +93,13 @@ files:
|
|
|
93
93
|
- app/models/workarea/email/signup.decorator
|
|
94
94
|
- app/models/workarea/order.decorator
|
|
95
95
|
- app/models/workarea/user.decorator
|
|
96
|
-
- app/services/emarsys/contact.rb
|
|
97
|
-
- app/services/emarsys/contact/order.rb
|
|
98
|
-
- app/services/emarsys/contact/user.rb
|
|
96
|
+
- app/services/workarea/emarsys/contact.rb
|
|
97
|
+
- app/services/workarea/emarsys/contact/order.rb
|
|
98
|
+
- app/services/workarea/emarsys/contact/user.rb
|
|
99
99
|
- app/views/workarea/storefront/_emarsys_tracking.html.haml
|
|
100
100
|
- app/views/workarea/storefront/emarsys/_current_user_emarsys_cart.json.jbuilder
|
|
101
101
|
- app/workers/workarea/emarsys/save_email_signup.rb
|
|
102
|
-
- app/workers/workarea/emarsys/
|
|
102
|
+
- app/workers/workarea/emarsys/save_order_contact.rb
|
|
103
103
|
- app/workers/workarea/emarsys/save_user.rb
|
|
104
104
|
- app/workers/workarea/emarsys/sync_orders.rb
|
|
105
105
|
- bin/rails
|
|
@@ -158,7 +158,7 @@ files:
|
|
|
158
158
|
- test/dummy/lib/assets/.keep
|
|
159
159
|
- test/dummy/log/.keep
|
|
160
160
|
- test/lib/workarea/emarsys/gateway_test.rb
|
|
161
|
-
- test/services/emarsys/contact_test.rb
|
|
161
|
+
- test/services/workarea/emarsys/contact_test.rb
|
|
162
162
|
- test/support/workarea/emarsys_api_config.rb
|
|
163
163
|
- test/system/workarea/storefront/emarsys_tracking_system_test.rb
|
|
164
164
|
- test/teaspoon_env.rb
|
|
@@ -187,7 +187,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
187
187
|
- !ruby/object:Gem::Version
|
|
188
188
|
version: '0'
|
|
189
189
|
requirements: []
|
|
190
|
-
rubygems_version: 3.
|
|
190
|
+
rubygems_version: 3.0.6
|
|
191
191
|
signing_key:
|
|
192
192
|
specification_version: 4
|
|
193
193
|
summary: Emarsys email service provider
|