workarea-variant_list 1.0.2 → 1.0.3
Sign up to get free protection for your applications and to get access to all the features.
- 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 +21 -0
- data/Gemfile +2 -3
- data/Rakefile +4 -5
- data/app/controllers/workarea/storefront/cart_bulk_items_controller.rb +1 -1
- data/app/views/workarea/storefront/cart_bulk_items/create.html.haml +2 -0
- data/app/views/workarea/storefront/products/templates/_variant_list.html.haml +6 -6
- data/lib/workarea/variant_list/version.rb +1 -1
- data/package.json +9 -0
- data/test/system/workarea/storefront/product_variant_list_system_test.rb +1 -0
- data/yarn.lock +3270 -0
- metadata +9 -3
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: workarea-variant_list
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Matt Duffy
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2020-09-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: workarea
|
@@ -39,10 +39,14 @@ extensions: []
|
|
39
39
|
extra_rdoc_files: []
|
40
40
|
files:
|
41
41
|
- ".editorconfig"
|
42
|
+
- ".eslintrc.json"
|
42
43
|
- ".github/ISSUE_TEMPLATE/bug_report.md"
|
43
44
|
- ".github/ISSUE_TEMPLATE/documentation-request.md"
|
44
45
|
- ".github/ISSUE_TEMPLATE/feature_request.md"
|
46
|
+
- ".github/workflows/ci.yml"
|
45
47
|
- ".gitignore"
|
48
|
+
- ".rubocop.yml"
|
49
|
+
- ".stylelintrc.json"
|
46
50
|
- CHANGELOG.md
|
47
51
|
- CODE_OF_CONDUCT.md
|
48
52
|
- CONTRIBUTING.md
|
@@ -65,6 +69,7 @@ files:
|
|
65
69
|
- lib/workarea/variant_list.rb
|
66
70
|
- lib/workarea/variant_list/engine.rb
|
67
71
|
- lib/workarea/variant_list/version.rb
|
72
|
+
- package.json
|
68
73
|
- test/dummy/Rakefile
|
69
74
|
- test/dummy/app/assets/config/manifest.js
|
70
75
|
- test/dummy/app/assets/images/.keep
|
@@ -115,6 +120,7 @@ files:
|
|
115
120
|
- test/teaspoon_env.rb
|
116
121
|
- test/test_helper.rb
|
117
122
|
- workarea-variant_list.gemspec
|
123
|
+
- yarn.lock
|
118
124
|
homepage: https://github.com/workarea-commerce/workarea-variant-list
|
119
125
|
licenses:
|
120
126
|
- Business Software License
|
@@ -134,7 +140,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
134
140
|
- !ruby/object:Gem::Version
|
135
141
|
version: '0'
|
136
142
|
requirements: []
|
137
|
-
rubygems_version: 3.0.
|
143
|
+
rubygems_version: 3.0.3
|
138
144
|
signing_key:
|
139
145
|
specification_version: 4
|
140
146
|
summary: Workarea Commerce Platform plugin that provides a variant list template for
|