workarea-swatches 1.0.5 → 1.0.6
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 +15 -0
- data/Gemfile +2 -2
- data/Rakefile +4 -5
- data/app/views/workarea/storefront/products/templates/_swatches.html.haml +5 -5
- data/config/routes.rb +11 -7
- data/lib/workarea/swatches/version.rb +1 -1
- data/package.json +9 -0
- data/workarea-swatches.gemspec +5 -3
- data/yarn.lock +3270 -0
- metadata +34 -7
metadata
CHANGED
@@ -1,27 +1,52 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: workarea-swatches
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ben Crouse
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
12
|
-
dependencies:
|
13
|
-
|
11
|
+
date: 2020-06-17 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: workarea
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: 3.x
|
20
|
+
- - ">="
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: 3.5.x
|
23
|
+
type: :runtime
|
24
|
+
prerelease: false
|
25
|
+
version_requirements: !ruby/object:Gem::Requirement
|
26
|
+
requirements:
|
27
|
+
- - "~>"
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: 3.x
|
30
|
+
- - ">="
|
31
|
+
- !ruby/object:Gem::Version
|
32
|
+
version: 3.5.x
|
33
|
+
description: Provides global and custom swatches for products on the Workarea Commerce
|
34
|
+
Platform
|
14
35
|
email:
|
15
|
-
- bcrouse@
|
36
|
+
- bcrouse@workarea.com
|
16
37
|
executables: []
|
17
38
|
extensions: []
|
18
39
|
extra_rdoc_files: []
|
19
40
|
files:
|
20
41
|
- ".editorconfig"
|
42
|
+
- ".eslintrc.json"
|
21
43
|
- ".github/ISSUE_TEMPLATE/bug_report.md"
|
22
44
|
- ".github/ISSUE_TEMPLATE/documentation-request.md"
|
23
45
|
- ".github/ISSUE_TEMPLATE/feature_request.md"
|
46
|
+
- ".github/workflows/ci.yml"
|
24
47
|
- ".gitignore"
|
48
|
+
- ".rubocop.yml"
|
49
|
+
- ".stylelintrc.json"
|
25
50
|
- CHANGELOG.md
|
26
51
|
- CODE_OF_CONDUCT.md
|
27
52
|
- CONTRIBUTING.md
|
@@ -69,6 +94,7 @@ files:
|
|
69
94
|
- lib/workarea/swatches.rb
|
70
95
|
- lib/workarea/swatches/engine.rb
|
71
96
|
- lib/workarea/swatches/version.rb
|
97
|
+
- package.json
|
72
98
|
- test/dummy/Rakefile
|
73
99
|
- test/dummy/app/assets/config/manifest.js
|
74
100
|
- test/dummy/app/assets/javascripts/application.js
|
@@ -121,6 +147,7 @@ files:
|
|
121
147
|
- test/test_helper.rb
|
122
148
|
- test/view_models/workarea/storefront/product_templates/swatches_view_model_test.rb
|
123
149
|
- workarea-swatches.gemspec
|
150
|
+
- yarn.lock
|
124
151
|
homepage: https://github.com/workarea-commerce/workarea-swatches
|
125
152
|
licenses:
|
126
153
|
- Business Software License
|
@@ -140,8 +167,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
140
167
|
- !ruby/object:Gem::Version
|
141
168
|
version: '0'
|
142
169
|
requirements: []
|
143
|
-
rubygems_version: 3.0.
|
170
|
+
rubygems_version: 3.0.3
|
144
171
|
signing_key:
|
145
172
|
specification_version: 4
|
146
|
-
summary: Adds swatching to the Workarea
|
173
|
+
summary: Adds swatching to the Workarea Commerce Platform
|
147
174
|
test_files: []
|