workarea 3.4.19 → 3.4.20

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.
Files changed (5) hide show
  1. checksums.yaml +4 -4
  2. data/.rubocop.yml +1 -1
  3. data/CHANGELOG.md +67 -0
  4. data/README.md +3 -6
  5. metadata +10 -10
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 19666f05ee388e6e6dbdaa3971cf7a099798079381d476920bdffe1d879ea84c
4
- data.tar.gz: 22d6ebb67d0535452e9453a5d2c2d3794cd78962b57305e9f7127fbe651c10cc
3
+ metadata.gz: 3b3a22934c6b4104e0fa96531d0d9d33e68ba8f3573be2857a60d8f580567876
4
+ data.tar.gz: 162840ce71b8e8ccac30f4fd3149ea5332087cd40c1ff6daf38e9a07f275f9db
5
5
  SHA512:
6
- metadata.gz: ecf083ce0c79a1908dbf61629764e94841a831c13dbc326726f57f34e4bdc2e87613dd7fa09bc79108739eb65076cf9539b3d53b1c8b05ea15e3b4600b600957
7
- data.tar.gz: 6358d253df9ac4ed6dcbad11b4059d7570df86464aa3a68bf60ce244b572eae2908c2570fdc85985ecf56ce3a3ebfba8f4c24cfb2dca25677ccfd899bc99ed01
6
+ metadata.gz: d0c43725db5705034c54059003a1ca2373b1f7c3f362543be3150bc7ae626649490a9214cce1a413ad1a96e6fd8c57146123d8d90932b86b964cfb1414d1c5a6
7
+ data.tar.gz: 8501f9ca1d87ee2013b47f53de150a2d15f7f443be8f31266b20854cf4919a19fc44893af7f0ef6e0b550207ab5e5cc7681bcda5497c50208e1c5e2eb5c16e4e
data/.rubocop.yml CHANGED
@@ -212,7 +212,7 @@ Layout/TrailingWhitespace:
212
212
  Enabled: true
213
213
 
214
214
  # Use quotes for string literals when they are enough.
215
- Style/UnneededPercentQ:
215
+ Style/RedundantPercentQ:
216
216
  Enabled: true
217
217
 
218
218
  # Use my_method(my_arg) not my_method( my_arg ) or my_method my_arg.
data/CHANGELOG.md CHANGED
@@ -1,3 +1,70 @@
1
+ Workarea 3.4.20 (2019-10-30)
2
+ --------------------------------------------------------------------------------
3
+
4
+ * Fix logout from pages without authenticity tokens
5
+
6
+ On pages without authenticity tokens (like HTTP cached pages), clicking
7
+ log out won't work because Rails is checking for that. This disables
8
+ that check for logout to fix.
9
+
10
+ WORKAREA-66
11
+ Ben Crouse
12
+
13
+ * [DOCS] Fix/improve various docs based on community feedback
14
+
15
+ Navigating the Code
16
+
17
+ * Fix typos and difficult wording
18
+ * More clearly define the term "meta-gem"
19
+
20
+ Seeds:
21
+
22
+ * Remove vestiges of previous build system
23
+ * Make some code blocks easier to copy and paste
24
+ * Update plugin examples to use only plugins that
25
+ are published to RubyGems.org
26
+
27
+ Create a New App:
28
+
29
+ * Update introduction and outline to latest style
30
+ * Fix incorrect command for seeding
31
+ * Make code blocks easier to copy and paste
32
+ * Explain how to get help if experiencing issues
33
+
34
+ WORKAREA-62
35
+ Chris Cressman
36
+
37
+ * Bump Loofah dependency to fix bundler-audit error
38
+
39
+ Ben Crouse
40
+
41
+ * Mount api engine in routes during workarea:install if api is installed
42
+
43
+ Matt Duffy
44
+
45
+ * Update Docker image build workflow
46
+
47
+ Matt Duffy
48
+
49
+ * Update demo Dockerfile to use plugins
50
+
51
+ WORKAREA-7
52
+ Matt Duffy
53
+
54
+ * Update README with docker memory messaging
55
+
56
+ WORKAREA-8
57
+ Matt Duffy
58
+
59
+ * Modify SystemTest to help increase reliability of #within_frame
60
+
61
+ * Move #wait_for_iframe to SystemTest class
62
+ * Add #within_frame to methods that wait for xhr requests
63
+ * Use #wait_for_iframe on spotty ImpersonationSystem Test
64
+ Matt Duffy
65
+
66
+
67
+
1
68
  Workarea 3.4.19 (2019-10-16)
2
69
  --------------------------------------------------------------------------------
3
70
 
data/README.md CHANGED
@@ -64,21 +64,18 @@ Workarea combines commerce, content, search, and insights into a unified platfor
64
64
 
65
65
  Demo
66
66
  --------------------------------------------------------------------------------
67
-
68
- You can run a demo version of workarea by running the following command in your terminal:
67
+ You can run a demo version of Workarea via Docker by running the following command:
69
68
 
70
69
  ```bash
71
70
  curl -s https://raw.githubusercontent.com/workarea-commerce/workarea/master/demo/install | bash
72
71
  ```
73
72
 
74
- It requires you have Docker installed and running. Once complete, you can visit `http://localhost:3000` to view your app.
73
+ **If you are using MacOS or Windows, this will require you to increase Docker's memory allocation to at least 4GB**. Go to your Docker preferences, select the advanced tab, and adjust the memory slider.
75
74
 
76
- The seed data provides an admin user with an email/password of `user@workarea.com/w0rkArea!`.
75
+ Once complete, you can view the Workarea Storefront at <http://localhost:3000> and the Workarea Admin at <http://localhost:3000/admin>. The seed data provides an admin user with an email/password of `user@workarea.com/w0rkArea!`.
77
76
 
78
77
  See the [README](demo/README.md) in the `demo` directory for more information.
79
78
 
80
- For more information on usage and troubleshooting, see the [workarea-demo](https://github.com/workarea-commerce/workarea-demo) page.
81
-
82
79
  Getting Started
83
80
  --------------------------------------------------------------------------------
84
81
  We'll assume you have [Docker desktop](https://www.docker.com/products/docker-desktop) and [Ruby >= 2.4.0, < 2.7.0](https://github.com/rbenv/rbenv#installation) installed.
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: workarea
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.4.19
4
+ version: 3.4.20
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ben Crouse
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-10-16 00:00:00.000000000 Z
11
+ date: 2019-10-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: workarea-core
@@ -16,56 +16,56 @@ dependencies:
16
16
  requirements:
17
17
  - - '='
18
18
  - !ruby/object:Gem::Version
19
- version: 3.4.19
19
+ version: 3.4.20
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - '='
25
25
  - !ruby/object:Gem::Version
26
- version: 3.4.19
26
+ version: 3.4.20
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: workarea-storefront
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
31
  - - '='
32
32
  - !ruby/object:Gem::Version
33
- version: 3.4.19
33
+ version: 3.4.20
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
38
  - - '='
39
39
  - !ruby/object:Gem::Version
40
- version: 3.4.19
40
+ version: 3.4.20
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: workarea-admin
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
45
  - - '='
46
46
  - !ruby/object:Gem::Version
47
- version: 3.4.19
47
+ version: 3.4.20
48
48
  type: :runtime
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
52
  - - '='
53
53
  - !ruby/object:Gem::Version
54
- version: 3.4.19
54
+ version: 3.4.20
55
55
  - !ruby/object:Gem::Dependency
56
56
  name: workarea-testing
57
57
  requirement: !ruby/object:Gem::Requirement
58
58
  requirements:
59
59
  - - '='
60
60
  - !ruby/object:Gem::Version
61
- version: 3.4.19
61
+ version: 3.4.20
62
62
  type: :runtime
63
63
  prerelease: false
64
64
  version_requirements: !ruby/object:Gem::Requirement
65
65
  requirements:
66
66
  - - '='
67
67
  - !ruby/object:Gem::Version
68
- version: 3.4.19
68
+ version: 3.4.20
69
69
  description: Workarea is an enterprise-grade Ruby on Rails commerce platform.
70
70
  email:
71
71
  - bcrouse@workarea.com