workarea-emarsys 1.0.3 → 1.0.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/ci.yml +8 -7
- data/CHANGELOG.md +16 -0
- data/Gemfile +3 -1
- data/app/controllers/workarea/admin/{configurations_controller.rb → emarsys/configurations_controller.rb} +0 -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
- data/workarea-emarsys.gemspec +1 -1
- metadata +18 -12
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a9869878b31972e6d9b7b55576055fab4c5d0988bb0c51d10126835d5cdee59b
|
4
|
+
data.tar.gz: 61ac2858b906871dc5f530f8020b6bfce5741bc651c63f42a8800bf3d599f0c1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 36fd3a01e9f16ec08f88a989e6f15b7f4c41204eb30a01c4a804d357dbb0628a5d31a3af1e729c630824154a3418a178edeb0650f96714a7740ed5fd6f938c18
|
7
|
+
data.tar.gz: d91e5080adb8563885e8601533acbfecd95acbf003e400e92269259690a32522565523d8ecb0dbfffce8dbc26d02883c2c2b07c15bf3c2baaa9405cdff843f95
|
data/.github/workflows/ci.yml
CHANGED
@@ -1,13 +1,14 @@
|
|
1
1
|
name: CI
|
2
2
|
on: [push]
|
3
|
-
|
3
|
+
env:
|
4
|
+
BUNDLE_GEMS__WEBLINC__COM: ${{ secrets.BUNDLE_GEMS__WEBLINC__COM }}
|
4
5
|
jobs:
|
5
6
|
static_analysis:
|
6
7
|
runs-on: ubuntu-latest
|
7
8
|
steps:
|
8
9
|
- uses: actions/checkout@v1
|
9
|
-
- uses: workarea-commerce/ci/bundler-audit@
|
10
|
-
- uses: workarea-commerce/ci/rubocop@
|
10
|
+
- uses: workarea-commerce/ci/bundler-audit@ruby-2.4
|
11
|
+
- uses: workarea-commerce/ci/rubocop@ruby-2.4
|
11
12
|
- uses: workarea-commerce/ci/eslint@v1
|
12
13
|
with:
|
13
14
|
args: '**/*.js'
|
@@ -18,7 +19,7 @@ jobs:
|
|
18
19
|
- uses: actions/checkout@v1
|
19
20
|
- uses: actions/setup-ruby@v1
|
20
21
|
with:
|
21
|
-
ruby-version: 2.
|
22
|
+
ruby-version: 2.4.x
|
22
23
|
- uses: workarea-commerce/ci/test@v1
|
23
24
|
with:
|
24
25
|
command: bin/rails app:workarea:test:admin
|
@@ -29,7 +30,7 @@ jobs:
|
|
29
30
|
- uses: actions/checkout@v1
|
30
31
|
- uses: actions/setup-ruby@v1
|
31
32
|
with:
|
32
|
-
ruby-version: 2.
|
33
|
+
ruby-version: 2.4.x
|
33
34
|
- uses: workarea-commerce/ci/test@v1
|
34
35
|
with:
|
35
36
|
command: bin/rails app:workarea:test:core
|
@@ -40,7 +41,7 @@ jobs:
|
|
40
41
|
- uses: actions/checkout@v1
|
41
42
|
- uses: actions/setup-ruby@v1
|
42
43
|
with:
|
43
|
-
ruby-version: 2.
|
44
|
+
ruby-version: 2.4.x
|
44
45
|
- uses: workarea-commerce/ci/test@v1
|
45
46
|
with:
|
46
47
|
command: bin/rails app:workarea:test:storefront
|
@@ -51,7 +52,7 @@ jobs:
|
|
51
52
|
- uses: actions/checkout@v1
|
52
53
|
- uses: actions/setup-ruby@v1
|
53
54
|
with:
|
54
|
-
ruby-version: 2.
|
55
|
+
ruby-version: 2.4.x
|
55
56
|
- uses: workarea-commerce/ci/test@v1
|
56
57
|
with:
|
57
58
|
command: bin/rails app:workarea:test:plugins
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,19 @@
|
|
1
|
+
Workarea Emarsys 1.0.4 (2020-02-04)
|
2
|
+
--------------------------------------------------------------------------------
|
3
|
+
|
4
|
+
* Fix Class Paths
|
5
|
+
|
6
|
+
Some paths in `app/` did not match their constant names, resulting in
|
7
|
+
issues when trying to decorate these classes. Move the offending files
|
8
|
+
to their correct location so as to enable decorating them.
|
9
|
+
|
10
|
+
Fixes #10
|
11
|
+
|
12
|
+
EMARSYS-3
|
13
|
+
Tom Scott
|
14
|
+
|
15
|
+
|
16
|
+
|
1
17
|
Workarea Emarsys 1.0.3 (2019-10-03)
|
2
18
|
--------------------------------------------------------------------------------
|
3
19
|
|
data/Gemfile
CHANGED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
data/workarea-emarsys.gemspec
CHANGED
@@ -17,7 +17,7 @@ Gem::Specification.new do |s|
|
|
17
17
|
|
18
18
|
s.license = 'Business Software License'
|
19
19
|
|
20
|
-
s.add_dependency 'workarea', '
|
20
|
+
s.add_dependency 'workarea', '>= 3.3.0', '< 3.5'
|
21
21
|
s.add_dependency 'workarea-google_product_feed', '~> 3.x'
|
22
22
|
s.add_dependency "escher"
|
23
23
|
s.add_dependency "faraday", "~> 0.10"
|
metadata
CHANGED
@@ -1,29 +1,35 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: workarea-emarsys
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.4
|
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-02-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: workarea
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- - "
|
17
|
+
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 3.
|
19
|
+
version: 3.3.0
|
20
|
+
- - "<"
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: '3.5'
|
20
23
|
type: :runtime
|
21
24
|
prerelease: false
|
22
25
|
version_requirements: !ruby/object:Gem::Requirement
|
23
26
|
requirements:
|
24
|
-
- - "
|
27
|
+
- - ">="
|
25
28
|
- !ruby/object:Gem::Version
|
26
|
-
version: 3.
|
29
|
+
version: 3.3.0
|
30
|
+
- - "<"
|
31
|
+
- !ruby/object:Gem::Version
|
32
|
+
version: '3.5'
|
27
33
|
- !ruby/object:Gem::Dependency
|
28
34
|
name: workarea-google_product_feed
|
29
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -94,7 +100,7 @@ files:
|
|
94
100
|
- app/assets/javascripts/workarea/storefront/emarsys/modules/web_extend_adapter.js
|
95
101
|
- app/assets/stylesheets/emarsys/.keep
|
96
102
|
- app/controllers/.keep
|
97
|
-
- app/controllers/workarea/admin/configurations_controller.rb
|
103
|
+
- app/controllers/workarea/admin/emarsys/configurations_controller.rb
|
98
104
|
- app/controllers/workarea/storefront/email_signups_controller.decorator
|
99
105
|
- app/controllers/workarea/storefront/users/addresses_controller.decorator
|
100
106
|
- app/helpers/.keep
|
@@ -109,16 +115,16 @@ files:
|
|
109
115
|
- app/models/workarea/email/signup.decorator
|
110
116
|
- app/models/workarea/order.decorator
|
111
117
|
- app/models/workarea/user.decorator
|
112
|
-
- app/services/emarsys/contact.rb
|
113
|
-
- app/services/emarsys/contact/order.rb
|
114
|
-
- app/services/emarsys/contact/user.rb
|
118
|
+
- app/services/workarea/emarsys/contact.rb
|
119
|
+
- app/services/workarea/emarsys/contact/order.rb
|
120
|
+
- app/services/workarea/emarsys/contact/user.rb
|
115
121
|
- app/view_models/workarea/admin/emarsys_configuration_view_model.rb
|
116
122
|
- app/views/workarea/admin/emarsys/configurations/edit.html.haml
|
117
123
|
- app/views/workarea/admin/shared/_emarsys_configuration_link.html.haml
|
118
124
|
- app/views/workarea/storefront/_emarsys_tracking.html.haml
|
119
125
|
- app/views/workarea/storefront/emarsys/_current_user_emarsys_cart.json.jbuilder
|
120
126
|
- app/workers/workarea/emarsys/save_email_signup.rb
|
121
|
-
- app/workers/workarea/emarsys/
|
127
|
+
- app/workers/workarea/emarsys/save_order_contact.rb
|
122
128
|
- app/workers/workarea/emarsys/save_user.rb
|
123
129
|
- app/workers/workarea/emarsys/sync_orders.rb
|
124
130
|
- bin/rails
|
@@ -177,7 +183,7 @@ files:
|
|
177
183
|
- test/dummy/log/.keep
|
178
184
|
- test/integration/workarea/admin/emarsys_configuration_integration_test.rb
|
179
185
|
- test/lib/workarea/emarsys/gateway_test.rb
|
180
|
-
- test/services/emarsys/contact_test.rb
|
186
|
+
- test/services/workarea/emarsys/contact_test.rb
|
181
187
|
- test/support/workarea/emarsys_api_config.rb
|
182
188
|
- test/system/workarea/storefront/emarsys_tracking_system_test.rb
|
183
189
|
- test/teaspoon_env.rb
|