workarea-inventory_notifications 2.1.3 → 2.1.4
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 -1
- data/.github/workflows/ci.yml +57 -0
- data/.gitignore +2 -0
- data/.rubocop.yml +3 -2
- data/.stylelintrc.json +8 -0
- data/CHANGELOG.md +10 -0
- data/Gemfile +2 -2
- data/README.md +17 -44
- data/Rakefile +4 -5
- data/lib/workarea/inventory_notifications/version.rb +1 -1
- data/package.json +9 -0
- data/yarn.lock +3312 -0
- metadata +8 -6
- 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-inventory_notifications
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.1.
|
4
|
+
version: 2.1.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Eric Pigeon
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2020-06-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: workarea
|
@@ -39,19 +39,20 @@ extensions: []
|
|
39
39
|
extra_rdoc_files: []
|
40
40
|
files:
|
41
41
|
- ".editorconfig"
|
42
|
-
- ".eslintrc"
|
42
|
+
- ".eslintrc.json"
|
43
43
|
- ".github/ISSUE_TEMPLATE/bug_report.md"
|
44
44
|
- ".github/ISSUE_TEMPLATE/documentation-request.md"
|
45
45
|
- ".github/ISSUE_TEMPLATE/feature_request.md"
|
46
|
+
- ".github/workflows/ci.yml"
|
46
47
|
- ".gitignore"
|
47
48
|
- ".jshintrc"
|
48
49
|
- ".rubocop.yml"
|
50
|
+
- ".stylelintrc.json"
|
49
51
|
- CHANGELOG.md
|
50
52
|
- CODE_OF_CONDUCT.md
|
51
53
|
- CONTRIBUTING.md
|
52
54
|
- Gemfile
|
53
55
|
- LICENSE
|
54
|
-
- LICENSE.md
|
55
56
|
- README.md
|
56
57
|
- Rakefile
|
57
58
|
- app/assets/stylesheets/workarea/storefront/inventory_notifications/components/_inventory_notifications.scss
|
@@ -74,6 +75,7 @@ files:
|
|
74
75
|
- lib/workarea/inventory_notifications/engine.rb
|
75
76
|
- lib/workarea/inventory_notifications/version.rb
|
76
77
|
- lib/workarea/mailer_previews/inventory_update_mailer_preview.rb
|
78
|
+
- package.json
|
77
79
|
- test/dummy/Rakefile
|
78
80
|
- test/dummy/app/assets/config/manifest.js
|
79
81
|
- test/dummy/app/assets/images/.keep
|
@@ -108,7 +110,6 @@ files:
|
|
108
110
|
- test/dummy/config/initializers/filter_parameter_logging.rb
|
109
111
|
- test/dummy/config/initializers/inflections.rb
|
110
112
|
- test/dummy/config/initializers/mime_types.rb
|
111
|
-
- test/dummy/config/initializers/session_store.rb
|
112
113
|
- test/dummy/config/initializers/workarea.rb
|
113
114
|
- test/dummy/config/initializers/wrap_parameters.rb
|
114
115
|
- test/dummy/config/locales/en.yml
|
@@ -130,6 +131,7 @@ files:
|
|
130
131
|
- test/view_models/workarea/storefront/product_view_model_test.decorator
|
131
132
|
- test/workers/workarea/restock_notifier_test.rb
|
132
133
|
- workarea-inventory_notifications.gemspec
|
134
|
+
- yarn.lock
|
133
135
|
homepage: https://github.com/workarea-commerce/workarea-inventory_notifications
|
134
136
|
licenses:
|
135
137
|
- Business Software License
|
@@ -149,7 +151,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
149
151
|
- !ruby/object:Gem::Version
|
150
152
|
version: '0'
|
151
153
|
requirements: []
|
152
|
-
rubygems_version: 3.0.
|
154
|
+
rubygems_version: 3.0.3
|
153
155
|
signing_key:
|
154
156
|
specification_version: 4
|
155
157
|
summary: Inventory Notifications plugin for the Workarea ecommerce platform
|
data/LICENSE.md
DELETED