workarea-product_videos 1.2.3 → 1.3.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/{.eslintrc → .eslintrc.json} +12 -2
- data/.github/workflows/ci.yml +60 -0
- data/.gitignore +2 -0
- data/.rubocop.yml +2 -6
- data/.stylelintrc.json +8 -0
- data/CHANGELOG.md +9 -0
- data/Gemfile +3 -13
- data/README.md +22 -41
- data/Rakefile +4 -4
- data/lib/workarea/product_videos/version.rb +1 -1
- data/package.json +9 -0
- data/test/dummy/config/application.rb +0 -1
- data/workarea-product_videos.gemspec +2 -2
- data/yarn.lock +3265 -0
- metadata +10 -8
- data/LICENSE.md +0 -3
- data/test/dummy/config/initializers/session_store.rb +0 -3
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: workarea-product_videos
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.3.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
|
-
-
|
7
|
+
- Jeff Yucis
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-
|
11
|
+
date: 2019-11-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: workarea
|
@@ -26,26 +26,27 @@ dependencies:
|
|
26
26
|
version: 3.x
|
27
27
|
description: Adds youtube and vimeo video embedding to products.
|
28
28
|
email:
|
29
|
-
-
|
29
|
+
- jyucis@workarea.com
|
30
30
|
executables: []
|
31
31
|
extensions: []
|
32
32
|
extra_rdoc_files: []
|
33
33
|
files:
|
34
34
|
- ".editorconfig"
|
35
|
-
- ".eslintrc"
|
35
|
+
- ".eslintrc.json"
|
36
36
|
- ".github/ISSUE_TEMPLATE/bug_report.md"
|
37
37
|
- ".github/ISSUE_TEMPLATE/documentation-request.md"
|
38
38
|
- ".github/ISSUE_TEMPLATE/feature_request.md"
|
39
|
+
- ".github/workflows/ci.yml"
|
39
40
|
- ".gitignore"
|
40
41
|
- ".rails-rubocop.yml"
|
41
42
|
- ".rubocop.yml"
|
42
43
|
- ".scss-lint.yml"
|
44
|
+
- ".stylelintrc.json"
|
43
45
|
- CHANGELOG.md
|
44
46
|
- CODE_OF_CONDUCT.md
|
45
47
|
- CONTRIBUTING.md
|
46
48
|
- Gemfile
|
47
49
|
- LICENSE
|
48
|
-
- LICENSE.md
|
49
50
|
- README.md
|
50
51
|
- Rakefile
|
51
52
|
- app/assets/images/workarea/admin/icons/video.svg
|
@@ -76,6 +77,7 @@ files:
|
|
76
77
|
- lib/workarea/product_videos.rb
|
77
78
|
- lib/workarea/product_videos/engine.rb
|
78
79
|
- lib/workarea/product_videos/version.rb
|
80
|
+
- package.json
|
79
81
|
- test/dummy/Rakefile
|
80
82
|
- test/dummy/app/assets/config/manifest.js
|
81
83
|
- test/dummy/app/assets/images/.keep
|
@@ -112,7 +114,6 @@ files:
|
|
112
114
|
- test/dummy/config/initializers/inflections.rb
|
113
115
|
- test/dummy/config/initializers/mime_types.rb
|
114
116
|
- test/dummy/config/initializers/new_framework_defaults.rb
|
115
|
-
- test/dummy/config/initializers/session_store.rb
|
116
117
|
- test/dummy/config/initializers/workarea.rb
|
117
118
|
- test/dummy/config/initializers/wrap_parameters.rb
|
118
119
|
- test/dummy/config/locales/en.yml
|
@@ -134,6 +135,7 @@ files:
|
|
134
135
|
- test/test_helper.rb
|
135
136
|
- test/view_models/workarea/storefront/product_video_view_model_test.rb
|
136
137
|
- workarea-product_videos.gemspec
|
138
|
+
- yarn.lock
|
137
139
|
homepage: https://github.com/workarea-commerce/workarea-product_videos
|
138
140
|
licenses:
|
139
141
|
- Business Software License
|
@@ -153,7 +155,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
153
155
|
- !ruby/object:Gem::Version
|
154
156
|
version: '0'
|
155
157
|
requirements: []
|
156
|
-
rubygems_version: 3.0.
|
158
|
+
rubygems_version: 3.0.6
|
157
159
|
signing_key:
|
158
160
|
specification_version: 4
|
159
161
|
summary: Product Videos for the Workarea Ecommerce platform
|
data/LICENSE.md
DELETED