workarea-product_quickview 2.0.2 → 2.0.3
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/.eslintrc.json +35 -0
- data/.github/workflows/ci.yml +60 -0
- data/.gitignore +1 -2
- data/.rubocop.yml +3 -0
- data/.stylelintrc.json +8 -0
- data/CHANGELOG.md +14 -0
- data/Gemfile +2 -2
- data/Rakefile +4 -5
- data/app/views/workarea/storefront/products/quickview.html.haml +3 -1
- data/lib/workarea/product_quickview/version.rb +1 -1
- data/package.json +9 -0
- data/test/dummy/config/initializers/session_store.rb +3 -1
- data/test/system/workarea/storefront/products_quickview_system_test.rb +1 -1
- data/workarea-product_quickview.gemspec +1 -2
- data/yarn.lock +3265 -0
- metadata +14 -2
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: workarea-product_quickview
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.0.
|
|
4
|
+
version: 2.0.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jordan Stewart
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2020-03-25 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: workarea
|
|
@@ -17,6 +17,9 @@ dependencies:
|
|
|
17
17
|
- - "~>"
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
19
|
version: 3.x
|
|
20
|
+
- - ">="
|
|
21
|
+
- !ruby/object:Gem::Version
|
|
22
|
+
version: 3.5.x
|
|
20
23
|
type: :runtime
|
|
21
24
|
prerelease: false
|
|
22
25
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -24,6 +27,9 @@ dependencies:
|
|
|
24
27
|
- - "~>"
|
|
25
28
|
- !ruby/object:Gem::Version
|
|
26
29
|
version: 3.x
|
|
30
|
+
- - ">="
|
|
31
|
+
- !ruby/object:Gem::Version
|
|
32
|
+
version: 3.5.x
|
|
27
33
|
description: Adds product quickview button to product summaries
|
|
28
34
|
email:
|
|
29
35
|
- jstewart@weblinc.com
|
|
@@ -33,11 +39,15 @@ extra_rdoc_files: []
|
|
|
33
39
|
files:
|
|
34
40
|
- ".editorconfig"
|
|
35
41
|
- ".eslintrc"
|
|
42
|
+
- ".eslintrc.json"
|
|
36
43
|
- ".github/ISSUE_TEMPLATE/bug_report.md"
|
|
37
44
|
- ".github/ISSUE_TEMPLATE/documentation-request.md"
|
|
38
45
|
- ".github/ISSUE_TEMPLATE/feature_request.md"
|
|
46
|
+
- ".github/workflows/ci.yml"
|
|
39
47
|
- ".gitignore"
|
|
48
|
+
- ".rubocop.yml"
|
|
40
49
|
- ".scss-lint.yml"
|
|
50
|
+
- ".stylelintrc.json"
|
|
41
51
|
- CHANGELOG.md
|
|
42
52
|
- CODE_OF_CONDUCT.md
|
|
43
53
|
- CONTRIBUTING.md
|
|
@@ -61,6 +71,7 @@ files:
|
|
|
61
71
|
- lib/workarea/product_quickview.rb
|
|
62
72
|
- lib/workarea/product_quickview/engine.rb
|
|
63
73
|
- lib/workarea/product_quickview/version.rb
|
|
74
|
+
- package.json
|
|
64
75
|
- test/dummy/Rakefile
|
|
65
76
|
- test/dummy/app/assets/config/manifest.js
|
|
66
77
|
- test/dummy/app/assets/images/.keep
|
|
@@ -110,6 +121,7 @@ files:
|
|
|
110
121
|
- test/system/workarea/storefront/products_quickview_system_test.rb
|
|
111
122
|
- test/test_helper.rb
|
|
112
123
|
- workarea-product_quickview.gemspec
|
|
124
|
+
- yarn.lock
|
|
113
125
|
homepage: https://github.com/workarea-commerce/workarea-product-quickview
|
|
114
126
|
licenses:
|
|
115
127
|
- Business Software License
|