workarea-share 1.2.4 → 1.3.0
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/Gemfile +1 -1
- data/README.md +1 -1
- data/app/models/workarea/email/share.rb +5 -1
- data/config/initializers/configuration.rb +0 -5
- data/config/initializers/fields.rb +11 -0
- data/lib/workarea/share/version.rb +1 -1
- data/package.json +9 -0
- data/workarea-share.gemspec +1 -1
- data/yarn.lock +3265 -0
- metadata +16 -3
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: workarea-share
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.3.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Matt Duffy
|
|
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
|
|
@@ -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
|
- !ruby/object:Gem::Dependency
|
|
28
34
|
name: recaptcha
|
|
29
35
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -47,10 +53,14 @@ extensions: []
|
|
|
47
53
|
extra_rdoc_files: []
|
|
48
54
|
files:
|
|
49
55
|
- ".editorconfig"
|
|
56
|
+
- ".eslintrc.json"
|
|
50
57
|
- ".github/ISSUE_TEMPLATE/bug_report.md"
|
|
51
58
|
- ".github/ISSUE_TEMPLATE/documentation-request.md"
|
|
52
59
|
- ".github/ISSUE_TEMPLATE/feature_request.md"
|
|
60
|
+
- ".github/workflows/ci.yml"
|
|
53
61
|
- ".gitignore"
|
|
62
|
+
- ".rubocop.yml"
|
|
63
|
+
- ".stylelintrc.json"
|
|
54
64
|
- CHANGELOG.md
|
|
55
65
|
- CODE_OF_CONDUCT.md
|
|
56
66
|
- CONTRIBUTING.md
|
|
@@ -75,6 +85,7 @@ files:
|
|
|
75
85
|
- bin/rails
|
|
76
86
|
- config/initializers/appends.rb
|
|
77
87
|
- config/initializers/configuration.rb
|
|
88
|
+
- config/initializers/fields.rb
|
|
78
89
|
- config/initializers/rack_attack.rb
|
|
79
90
|
- config/initializers/recaptcha.rb
|
|
80
91
|
- config/locales/en.yml
|
|
@@ -84,6 +95,7 @@ files:
|
|
|
84
95
|
- lib/workarea/share.rb
|
|
85
96
|
- lib/workarea/share/engine.rb
|
|
86
97
|
- lib/workarea/share/version.rb
|
|
98
|
+
- package.json
|
|
87
99
|
- test/dummy/Rakefile
|
|
88
100
|
- test/dummy/app/assets/config/manifest.js
|
|
89
101
|
- test/dummy/app/assets/images/.keep
|
|
@@ -142,6 +154,7 @@ files:
|
|
|
142
154
|
- test/test_helper.rb
|
|
143
155
|
- test/view_models/workarea/storefront/share_view_model_test.rb
|
|
144
156
|
- workarea-share.gemspec
|
|
157
|
+
- yarn.lock
|
|
145
158
|
homepage: https://github.com/workarea-commerce/workarea-share
|
|
146
159
|
licenses:
|
|
147
160
|
- Business Software License
|
|
@@ -161,7 +174,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
161
174
|
- !ruby/object:Gem::Version
|
|
162
175
|
version: '0'
|
|
163
176
|
requirements: []
|
|
164
|
-
rubygems_version: 3.0.
|
|
177
|
+
rubygems_version: 3.0.6
|
|
165
178
|
signing_key:
|
|
166
179
|
specification_version: 4
|
|
167
180
|
summary: Page share plugin for Workarea Commerce Platform.
|