webpacker 6.0.0.beta.6 → 6.0.0.rc.1
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/.github/workflows/jest.yml +5 -2
- data/.github/workflows/js-lint.yml +4 -1
- data/.github/workflows/rubocop.yml +1 -1
- data/.github/workflows/ruby.yml +12 -12
- data/.node-version +1 -1
- data/.rubocop.yml +106 -0
- data/CHANGELOG.md +23 -12
- data/Gemfile.lock +89 -88
- data/README.md +81 -22
- data/config/webpacker.yml +1 -1
- data/docs/deployment.md +128 -0
- data/docs/developing_webpacker.md +29 -0
- data/docs/troubleshooting.md +53 -23
- data/docs/v6_upgrade.md +75 -0
- data/gemfiles/Gemfile-rails-edge +1 -1
- data/gemfiles/Gemfile-rails.6.1.x +12 -0
- data/lib/install/config/webpacker.yml +3 -7
- data/lib/install/packs/entrypoints/application.js +3 -4
- data/lib/install/template.rb +14 -7
- data/lib/tasks/webpacker/binstubs.rake +2 -2
- data/lib/tasks/webpacker/check_node.rake +3 -0
- data/lib/tasks/webpacker/check_yarn.rake +4 -1
- data/lib/tasks/webpacker/clobber.rake +1 -1
- data/lib/tasks/webpacker/install.rake +2 -2
- data/lib/tasks/webpacker/verify_config.rake +14 -0
- data/lib/tasks/webpacker/verify_install.rake +1 -11
- data/lib/webpacker.rb +1 -1
- data/lib/webpacker/configuration.rb +19 -8
- data/lib/webpacker/dev_server.rb +6 -0
- data/lib/webpacker/dev_server_runner.rb +5 -2
- data/lib/webpacker/env.rb +5 -1
- data/lib/webpacker/helper.rb +13 -7
- data/lib/webpacker/instance.rb +4 -0
- data/lib/webpacker/manifest.rb +1 -2
- data/lib/webpacker/railtie.rb +1 -2
- data/lib/webpacker/runner.rb +1 -1
- data/lib/webpacker/version.rb +1 -1
- data/package.json +25 -29
- data/package/__tests__/development.js +2 -2
- data/package/__tests__/env.js +8 -4
- data/package/babel/preset.js +0 -1
- data/package/env.js +7 -1
- data/package/environments/__tests__/base.js +3 -3
- data/package/environments/base.js +12 -12
- data/package/environments/development.js +7 -9
- data/package/environments/production.js +1 -1
- data/package/index.js +2 -0
- data/package/inliningCss.js +7 -0
- data/package/rules/file.js +1 -1
- data/package/rules/sass.js +1 -2
- data/package/utils/get_style_rule.js +4 -2
- data/test/configuration_test.rb +1 -1
- data/test/dev_server_runner_test.rb +4 -1
- data/test/helper_test.rb +35 -30
- data/test/manifest_test.rb +10 -2
- data/test/mounted_app/test/dummy/config/webpacker.yml +2 -2
- data/test/test_app/config/webpacker.yml +2 -4
- data/test/test_app/config/webpacker_other_location.yml +79 -0
- data/test/test_app/public/packs/manifest.json +12 -5
- data/test/webpacker_test.rb +17 -0
- data/yarn.lock +1567 -1039
- metadata +13 -6
- data/6_0_upgrade.md +0 -62
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: '0286ff65b615aa4824d81ece818746d0263dc0de83e1e736d5686119cb7e82a5'
|
|
4
|
+
data.tar.gz: '0010459c42442c8648202d4f06f5a90108c2e662be4b2e3687a84dbeac1d1274'
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 647a63b6653cd892f7f125b36d1916599e44c2ce9fdcfb0afeb0145ca8f26937d3774294158ae4967c2a90b1403ef7a98880deaa3a57ffc9dbc5b9971d1dad60
|
|
7
|
+
data.tar.gz: 79d4d41bc7c1fe12f009b19da3a4603a2f87e8e483e1c2496d9561ae22a5bbd57d536c7fbab80f2b0dfc9af6d5599d531b3f13055824309900d8b2bbd76e518f
|
data/.github/workflows/jest.yml
CHANGED
|
@@ -3,16 +3,19 @@ name: Jest specs
|
|
|
3
3
|
on: [push, pull_request]
|
|
4
4
|
|
|
5
5
|
jobs:
|
|
6
|
-
|
|
6
|
+
jest:
|
|
7
7
|
name: Jest specs
|
|
8
8
|
strategy:
|
|
9
9
|
matrix:
|
|
10
10
|
os: [ubuntu-latest]
|
|
11
|
-
node: [
|
|
11
|
+
node: [12.x, 14.x, 15.x]
|
|
12
12
|
|
|
13
13
|
runs-on: ${{ matrix.os }}
|
|
14
14
|
|
|
15
15
|
steps:
|
|
16
|
+
- name: Install yarn maybe
|
|
17
|
+
run: which yarn || sudo npm install -g yarn
|
|
18
|
+
|
|
16
19
|
- uses: actions/checkout@v2
|
|
17
20
|
- name: Get yarn cache directory path
|
|
18
21
|
id: yarn-cache-dir-path
|
|
@@ -3,7 +3,7 @@ name: JS lint
|
|
|
3
3
|
on: [push, pull_request]
|
|
4
4
|
|
|
5
5
|
jobs:
|
|
6
|
-
|
|
6
|
+
js-lint:
|
|
7
7
|
name: JS Lint
|
|
8
8
|
|
|
9
9
|
strategy:
|
|
@@ -14,6 +14,9 @@ jobs:
|
|
|
14
14
|
runs-on: ${{ matrix.os }}
|
|
15
15
|
|
|
16
16
|
steps:
|
|
17
|
+
- name: Install yarn maybe
|
|
18
|
+
run: which yarn || sudo npm install -g yarn
|
|
19
|
+
|
|
17
20
|
- uses: actions/checkout@v2
|
|
18
21
|
- name: Get yarn cache directory path
|
|
19
22
|
id: yarn-cache-dir-path
|
data/.github/workflows/ruby.yml
CHANGED
|
@@ -3,7 +3,7 @@ name: Ruby specs
|
|
|
3
3
|
on: [push, pull_request]
|
|
4
4
|
|
|
5
5
|
jobs:
|
|
6
|
-
|
|
6
|
+
test:
|
|
7
7
|
name: Ruby specs
|
|
8
8
|
runs-on: ${{ matrix.os }}
|
|
9
9
|
continue-on-error: ${{ endsWith(matrix.ruby, 'head') || matrix.ruby == 'debug' || matrix.experimental }}
|
|
@@ -23,23 +23,20 @@ jobs:
|
|
|
23
23
|
]
|
|
24
24
|
gemfile: [
|
|
25
25
|
"gemfiles/Gemfile-rails.5.2.x",
|
|
26
|
-
"gemfiles/Gemfile-rails.6.0.x"
|
|
26
|
+
"gemfiles/Gemfile-rails.6.0.x",
|
|
27
|
+
"gemfiles/Gemfile-rails.6.1.x"
|
|
27
28
|
]
|
|
28
29
|
exclude:
|
|
29
|
-
- ruby:
|
|
30
|
+
- ruby: 2.4
|
|
30
31
|
gemfile: gemfiles/Gemfile-rails.6.0.x
|
|
31
|
-
- ruby:
|
|
32
|
+
- ruby: 2.4
|
|
33
|
+
gemfile: gemfiles/Gemfile-rails.6.1.x
|
|
34
|
+
- ruby: 2.5
|
|
35
|
+
gemfile: gemfiles/Gemfile-rails.6.1.x
|
|
36
|
+
- ruby: 3.0
|
|
32
37
|
gemfile: gemfiles/Gemfile-rails.5.2.x
|
|
33
38
|
experimental: [false]
|
|
34
39
|
include:
|
|
35
|
-
- ruby: 2.5
|
|
36
|
-
os: ubuntu-latest
|
|
37
|
-
gemfile: gemfiles/Gemfile-rails-edge
|
|
38
|
-
experimental: true
|
|
39
|
-
- ruby: 2.6
|
|
40
|
-
os: ubuntu-latest
|
|
41
|
-
gemfile: gemfiles/Gemfile-rails-edge
|
|
42
|
-
experimental: true
|
|
43
40
|
- ruby: 2.7
|
|
44
41
|
os: ubuntu-latest
|
|
45
42
|
gemfile: gemfiles/Gemfile-rails-edge
|
|
@@ -58,6 +55,9 @@ jobs:
|
|
|
58
55
|
restore-keys: |
|
|
59
56
|
bundle-use-ruby-${{ matrix.ruby }}-${{ matrix.gemfile }}-gems-
|
|
60
57
|
|
|
58
|
+
- name: Install yarn maybe
|
|
59
|
+
run: which yarn || sudo npm install -g yarn
|
|
60
|
+
|
|
61
61
|
- uses: ruby/setup-ruby@v1
|
|
62
62
|
with:
|
|
63
63
|
ruby-version: ${{ matrix.ruby }}
|
data/.node-version
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
16.7.0
|
data/.rubocop.yml
CHANGED
|
@@ -8,6 +8,7 @@ AllCops:
|
|
|
8
8
|
- "lib/install/templates/**"
|
|
9
9
|
- "vendor/**/*"
|
|
10
10
|
- "node_modules/**/*"
|
|
11
|
+
- "_actions/**/*"
|
|
11
12
|
|
|
12
13
|
# Prefer &&/|| over and/or.
|
|
13
14
|
Style/AndOr:
|
|
@@ -118,3 +119,108 @@ Layout/EndAlignment:
|
|
|
118
119
|
# Use my_method(my_arg) not my_method( my_arg ) or my_method my_arg.
|
|
119
120
|
Lint/RequireParentheses:
|
|
120
121
|
Enabled: true
|
|
122
|
+
|
|
123
|
+
# Use `bind_call(obj, args, ...)` instead of `bind(obj).call(args, ...)`.
|
|
124
|
+
Performance/BindCall:
|
|
125
|
+
Enabled: true
|
|
126
|
+
|
|
127
|
+
# Use `caller(n..n)` instead of `caller`.
|
|
128
|
+
Performance/Caller:
|
|
129
|
+
Enabled: true
|
|
130
|
+
|
|
131
|
+
# Use `casecmp` for case comparison.
|
|
132
|
+
Performance/Casecmp:
|
|
133
|
+
Enabled: true
|
|
134
|
+
|
|
135
|
+
# Extract Array and Hash literals outside of loops into local variables or constants.
|
|
136
|
+
Performance/CollectionLiteralInLoop:
|
|
137
|
+
Enabled: true
|
|
138
|
+
|
|
139
|
+
# Prefer `sort_by(&:foo)` instead of `sort { |a, b| a.foo <=> b.foo }`.
|
|
140
|
+
Performance/CompareWithBlock:
|
|
141
|
+
Enabled: true
|
|
142
|
+
|
|
143
|
+
# Use `count` instead of `{select,find_all,filter,reject}...{size,count,length}`.
|
|
144
|
+
Performance/Count:
|
|
145
|
+
Enabled: true
|
|
146
|
+
|
|
147
|
+
# Use `delete_prefix` instead of `gsub`.
|
|
148
|
+
Performance/DeletePrefix:
|
|
149
|
+
Enabled: true
|
|
150
|
+
|
|
151
|
+
# Use `delete_suffix` instead of `gsub`.
|
|
152
|
+
Performance/DeleteSuffix:
|
|
153
|
+
Enabled: true
|
|
154
|
+
|
|
155
|
+
# Use `detect` instead of `select.first`, `find_all.first`, `filter.first`, `select.last`, `find_all.last`, and `filter.last`.
|
|
156
|
+
Performance/Detect:
|
|
157
|
+
Enabled: true
|
|
158
|
+
|
|
159
|
+
# Use `str.{start,end}_with?(x, ..., y, ...)` instead of `str.{start,end}_with?(x, ...) || str.{start,end}_with?(y, ...)`.
|
|
160
|
+
Performance/DoubleStartEndWith:
|
|
161
|
+
Enabled: true
|
|
162
|
+
|
|
163
|
+
# Use `end_with?` instead of a regex match anchored to the end of a string.
|
|
164
|
+
Performance/EndWith:
|
|
165
|
+
Enabled: true
|
|
166
|
+
|
|
167
|
+
# Do not compute the size of statically sized objects except in constants.
|
|
168
|
+
Performance/FixedSize:
|
|
169
|
+
Enabled: true
|
|
170
|
+
|
|
171
|
+
# Use `Enumerable#flat_map` instead of `Enumerable#map...Array#flatten(1).
|
|
172
|
+
Performance/FlatMap:
|
|
173
|
+
Enabled: true
|
|
174
|
+
|
|
175
|
+
# Use `key?` or `value?` instead of `keys.include?` or `values.include?`.
|
|
176
|
+
Performance/InefficientHashSearch:
|
|
177
|
+
Enabled: true
|
|
178
|
+
|
|
179
|
+
# Use `Range#cover?` instead of `Range#include?` (or `Range#member?`).
|
|
180
|
+
Performance/RangeInclude:
|
|
181
|
+
Enabled: true
|
|
182
|
+
|
|
183
|
+
# Use `yield` instead of `block.call`.
|
|
184
|
+
Performance/RedundantBlockCall:
|
|
185
|
+
Enabled: true
|
|
186
|
+
|
|
187
|
+
# Use `=~` instead of `String#match` or `Regexp#match` in a context where the returned `MatchData` is not needed.
|
|
188
|
+
Performance/RedundantMatch:
|
|
189
|
+
Enabled: true
|
|
190
|
+
|
|
191
|
+
# Use Hash#[]=, rather than Hash#merge! with a single key-value pair.
|
|
192
|
+
Performance/RedundantMerge:
|
|
193
|
+
Enabled: true
|
|
194
|
+
|
|
195
|
+
# Use `match?` instead of `Regexp#match`, `String#match`, `Symbol#match`, `Regexp#===`, or `=~` when `MatchData` is not used.
|
|
196
|
+
Performance/RegexpMatch:
|
|
197
|
+
Enabled: true
|
|
198
|
+
|
|
199
|
+
# Use `reverse_each` instead of `reverse.each`.
|
|
200
|
+
Performance/ReverseEach:
|
|
201
|
+
Enabled: true
|
|
202
|
+
|
|
203
|
+
# Use `size` instead of `count` for counting the number of elements in `Array` and `Hash`.
|
|
204
|
+
Performance/Size:
|
|
205
|
+
Enabled: true
|
|
206
|
+
|
|
207
|
+
# Use `start_with?` instead of a regex match anchored to the beginning of a string.
|
|
208
|
+
Performance/StartWith:
|
|
209
|
+
Enabled: true
|
|
210
|
+
|
|
211
|
+
# Use `tr` instead of `gsub` when you are replacing the same number of characters.
|
|
212
|
+
# Use `delete` instead of `gsub` when you are deleting characters.
|
|
213
|
+
Performance/StringReplacement:
|
|
214
|
+
Enabled: true
|
|
215
|
+
|
|
216
|
+
# Checks for .times.map calls.
|
|
217
|
+
Performance/TimesMap:
|
|
218
|
+
Enabled: true
|
|
219
|
+
|
|
220
|
+
# Use unary plus to get an unfrozen string literal.
|
|
221
|
+
Performance/UnfreezeString:
|
|
222
|
+
Enabled: true
|
|
223
|
+
|
|
224
|
+
# Use `URI::DEFAULT_PARSER` instead of `URI::Parser.new`.
|
|
225
|
+
Performance/UriDefaultParser:
|
|
226
|
+
Enabled: true
|
data/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,8 @@
|
|
|
4
4
|
|
|
5
5
|
## [[6.0.0]](https://github.com/rails/webpacker/compare/v5.1.1...master) - 2021-TBD
|
|
6
6
|
|
|
7
|
+
Please see [UPGRADE GUIDE](./docs/v6_upgrade.md) for more information.
|
|
8
|
+
|
|
7
9
|
- `node_modules` will no longer be compiled by default. This primarily fixes [rails issue #35501](https://github.com/rails/rails/issues/35501) as well as [numerous other webpacker issues](https://github.com/rails/webpacker/issues/2131#issuecomment-581618497). The disabled loader can still be required explicitly via:
|
|
8
10
|
|
|
9
11
|
```js
|
|
@@ -12,28 +14,37 @@ environment.loaders.append('nodeModules', nodeModules)
|
|
|
12
14
|
```
|
|
13
15
|
|
|
14
16
|
- If you have added `environment.loaders.delete('nodeModules')` to your `environment.js`, this must be removed or you will receive an error (`Item nodeModules not found`).
|
|
15
|
-
-
|
|
17
|
+
- `extract_css` option was removed. Webpacker will generate a separate `application.css` file for the default `application` pack, as supported by multiple files per entry introduced in 5.0.0. [#2608](https://github.com/rails/webpacker/pull/2608). However, CSS will be inlined when the webpack-dev-server is used with `hmr: true`. JS package exports `inliningCss`. This is useful to enable HMR for React.
|
|
16
18
|
- Webpacker's wrapper to the `splitChunks()` API will now default `runtimeChunk: 'single'` which will help prevent potential issues when using multiple entry points per page [#2708](https://github.com/rails/webpacker/pull/2708).
|
|
17
19
|
- Changes `@babel/preset-env` modules option to `'auto'` per recommendation in the Babel docs [#2709](https://github.com/rails/webpacker/pull/2709)
|
|
18
20
|
- Adds experimental Yarn 2 support. Note you must manually set `nodeLinker: node-modules` in your `.yarnrc.yml`.
|
|
19
|
-
|
|
20
21
|
- Fixes dev server issues [#2898](https://github.com/rails/webpacker/pull/2898)
|
|
22
|
+
- Update static files path to from `media/` to `static/`.
|
|
21
23
|
|
|
22
24
|
### Breaking changes
|
|
23
|
-
|
|
24
|
-
- Simple webpack config
|
|
25
25
|
- Removed integration installers
|
|
26
26
|
- Splitchunks enabled by default
|
|
27
|
-
- CSS extraction enabled by default
|
|
28
|
-
|
|
27
|
+
- CSS extraction enabled by default, except when devServer is configured and running
|
|
28
|
+
|
|
29
|
+
## [[5.4.0]](https://github.com/rails/webpacker/compare/v5.3.0...v5.4.0) - 2021-05-18
|
|
30
|
+
|
|
31
|
+
- Fix compatibility with Psych 4
|
|
32
|
+
|
|
33
|
+
## [[5.3.0]](https://github.com/rails/webpacker/compare/v5.2.1...v5.3.0) - 2021-04-27
|
|
34
|
+
|
|
35
|
+
- Adds experimental Yarn 2 support. Note you must manually set `nodeLinker: node-modules` in your `.yarnrc.yml`.
|
|
36
|
+
|
|
37
|
+
- Keep backups, even when they're old [#2912](https://github.com/rails/webpacker/pull/2912)
|
|
38
|
+
|
|
39
|
+
## [[5.2.2]](https://github.com/rails/webpacker/compare/v5.2.1...v5.2.2) - 2021-04-27
|
|
29
40
|
|
|
30
|
-
|
|
41
|
+
- Bump deps and remove node-sass [#2997](https://github.com/rails/webpacker/pull/2997).
|
|
31
42
|
|
|
32
|
-
## [[5.2.1]](https://github.com/rails/webpacker/compare/v5.2.0...
|
|
43
|
+
## [[5.2.1]](https://github.com/rails/webpacker/compare/v5.2.0...v5.2.1) - 2020-08-17
|
|
33
44
|
|
|
34
45
|
- Revert [#1311](https://github.com/rails/webpacker/pull/1311).
|
|
35
46
|
|
|
36
|
-
## [[5.2.0]](https://github.com/rails/webpacker/compare/v5.1.1...
|
|
47
|
+
## [[5.2.0]](https://github.com/rails/webpacker/compare/v5.1.1...v5.2.0) - 2020-08-16
|
|
37
48
|
|
|
38
49
|
- Bump dependencies and fixes. See [diff](https://github.com/rails/webpacker/compare/v5.1.1...5-x-stable) for changes.
|
|
39
50
|
|
|
@@ -412,7 +423,7 @@ See changes: https://github.com/rails/webpacker/compare/e8b197e36c77181ca2e4765c
|
|
|
412
423
|
|
|
413
424
|
### Added
|
|
414
425
|
|
|
415
|
-
- On CI, sort files & check modified w/ digest
|
|
426
|
+
- On CI, sort files & check modified w/ digest instead of mtime[#1522](https://github.com/rails/webpacker/pull/1522)
|
|
416
427
|
|
|
417
428
|
## [3.5.3] - 2018-05-03
|
|
418
429
|
|
|
@@ -806,11 +817,11 @@ yarn add coffeescript
|
|
|
806
817
|
|
|
807
818
|
### Added
|
|
808
819
|
|
|
809
|
-
- `resolved_paths` option to allow adding additional paths webpack should
|
|
820
|
+
- `resolved_paths` option to allow adding additional paths webpack should look up when resolving modules
|
|
810
821
|
|
|
811
822
|
```yml
|
|
812
823
|
# config/webpacker.yml
|
|
813
|
-
# Additional paths webpack should
|
|
824
|
+
# Additional paths webpack should look up modules
|
|
814
825
|
resolved_paths: [] # empty by default
|
|
815
826
|
```
|
|
816
827
|
|
data/Gemfile.lock
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
webpacker (6.0.0.
|
|
4
|
+
webpacker (6.0.0.rc.1)
|
|
5
5
|
activesupport (>= 5.2)
|
|
6
6
|
rack-proxy (>= 0.6.1)
|
|
7
7
|
railties (>= 5.2)
|
|
@@ -10,89 +10,91 @@ PATH
|
|
|
10
10
|
GEM
|
|
11
11
|
remote: https://rubygems.org/
|
|
12
12
|
specs:
|
|
13
|
-
actioncable (6.
|
|
14
|
-
actionpack (= 6.
|
|
13
|
+
actioncable (6.1.3.1)
|
|
14
|
+
actionpack (= 6.1.3.1)
|
|
15
|
+
activesupport (= 6.1.3.1)
|
|
15
16
|
nio4r (~> 2.0)
|
|
16
17
|
websocket-driver (>= 0.6.1)
|
|
17
|
-
actionmailbox (6.
|
|
18
|
-
actionpack (= 6.
|
|
19
|
-
activejob (= 6.
|
|
20
|
-
activerecord (= 6.
|
|
21
|
-
activestorage (= 6.
|
|
22
|
-
activesupport (= 6.
|
|
18
|
+
actionmailbox (6.1.3.1)
|
|
19
|
+
actionpack (= 6.1.3.1)
|
|
20
|
+
activejob (= 6.1.3.1)
|
|
21
|
+
activerecord (= 6.1.3.1)
|
|
22
|
+
activestorage (= 6.1.3.1)
|
|
23
|
+
activesupport (= 6.1.3.1)
|
|
23
24
|
mail (>= 2.7.1)
|
|
24
|
-
actionmailer (6.
|
|
25
|
-
actionpack (= 6.
|
|
26
|
-
actionview (= 6.
|
|
27
|
-
activejob (= 6.
|
|
25
|
+
actionmailer (6.1.3.1)
|
|
26
|
+
actionpack (= 6.1.3.1)
|
|
27
|
+
actionview (= 6.1.3.1)
|
|
28
|
+
activejob (= 6.1.3.1)
|
|
29
|
+
activesupport (= 6.1.3.1)
|
|
28
30
|
mail (~> 2.5, >= 2.5.4)
|
|
29
31
|
rails-dom-testing (~> 2.0)
|
|
30
|
-
actionpack (6.
|
|
31
|
-
actionview (= 6.
|
|
32
|
-
activesupport (= 6.
|
|
33
|
-
rack (~> 2.0, >= 2.0.
|
|
32
|
+
actionpack (6.1.3.1)
|
|
33
|
+
actionview (= 6.1.3.1)
|
|
34
|
+
activesupport (= 6.1.3.1)
|
|
35
|
+
rack (~> 2.0, >= 2.0.9)
|
|
34
36
|
rack-test (>= 0.6.3)
|
|
35
37
|
rails-dom-testing (~> 2.0)
|
|
36
38
|
rails-html-sanitizer (~> 1.0, >= 1.2.0)
|
|
37
|
-
actiontext (6.
|
|
38
|
-
actionpack (= 6.
|
|
39
|
-
activerecord (= 6.
|
|
40
|
-
activestorage (= 6.
|
|
41
|
-
activesupport (= 6.
|
|
39
|
+
actiontext (6.1.3.1)
|
|
40
|
+
actionpack (= 6.1.3.1)
|
|
41
|
+
activerecord (= 6.1.3.1)
|
|
42
|
+
activestorage (= 6.1.3.1)
|
|
43
|
+
activesupport (= 6.1.3.1)
|
|
42
44
|
nokogiri (>= 1.8.5)
|
|
43
|
-
actionview (6.
|
|
44
|
-
activesupport (= 6.
|
|
45
|
+
actionview (6.1.3.1)
|
|
46
|
+
activesupport (= 6.1.3.1)
|
|
45
47
|
builder (~> 3.1)
|
|
46
48
|
erubi (~> 1.4)
|
|
47
49
|
rails-dom-testing (~> 2.0)
|
|
48
50
|
rails-html-sanitizer (~> 1.1, >= 1.2.0)
|
|
49
|
-
activejob (6.
|
|
50
|
-
activesupport (= 6.
|
|
51
|
+
activejob (6.1.3.1)
|
|
52
|
+
activesupport (= 6.1.3.1)
|
|
51
53
|
globalid (>= 0.3.6)
|
|
52
|
-
activemodel (6.
|
|
53
|
-
activesupport (= 6.
|
|
54
|
-
activerecord (6.
|
|
55
|
-
activemodel (= 6.
|
|
56
|
-
activesupport (= 6.
|
|
57
|
-
activestorage (6.
|
|
58
|
-
actionpack (= 6.
|
|
59
|
-
activejob (= 6.
|
|
60
|
-
activerecord (= 6.
|
|
61
|
-
|
|
62
|
-
|
|
54
|
+
activemodel (6.1.3.1)
|
|
55
|
+
activesupport (= 6.1.3.1)
|
|
56
|
+
activerecord (6.1.3.1)
|
|
57
|
+
activemodel (= 6.1.3.1)
|
|
58
|
+
activesupport (= 6.1.3.1)
|
|
59
|
+
activestorage (6.1.3.1)
|
|
60
|
+
actionpack (= 6.1.3.1)
|
|
61
|
+
activejob (= 6.1.3.1)
|
|
62
|
+
activerecord (= 6.1.3.1)
|
|
63
|
+
activesupport (= 6.1.3.1)
|
|
64
|
+
marcel (~> 1.0.0)
|
|
65
|
+
mini_mime (~> 1.0.2)
|
|
66
|
+
activesupport (6.1.3.1)
|
|
63
67
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
|
64
|
-
i18n (>=
|
|
65
|
-
minitest (
|
|
66
|
-
tzinfo (~>
|
|
67
|
-
zeitwerk (~> 2.
|
|
68
|
-
ast (2.4.
|
|
68
|
+
i18n (>= 1.6, < 2)
|
|
69
|
+
minitest (>= 5.1)
|
|
70
|
+
tzinfo (~> 2.0)
|
|
71
|
+
zeitwerk (~> 2.3)
|
|
72
|
+
ast (2.4.2)
|
|
69
73
|
builder (3.2.4)
|
|
70
74
|
byebug (11.1.3)
|
|
71
|
-
concurrent-ruby (1.1.
|
|
75
|
+
concurrent-ruby (1.1.8)
|
|
72
76
|
crass (1.0.6)
|
|
73
|
-
erubi (1.
|
|
77
|
+
erubi (1.10.0)
|
|
74
78
|
globalid (0.4.2)
|
|
75
79
|
activesupport (>= 4.2.0)
|
|
76
|
-
i18n (1.8.
|
|
80
|
+
i18n (1.8.10)
|
|
77
81
|
concurrent-ruby (~> 1.0)
|
|
78
|
-
loofah (2.
|
|
82
|
+
loofah (2.9.1)
|
|
79
83
|
crass (~> 1.0.2)
|
|
80
84
|
nokogiri (>= 1.5.9)
|
|
81
85
|
mail (2.7.1)
|
|
82
86
|
mini_mime (>= 0.1.1)
|
|
83
|
-
marcel (0.
|
|
84
|
-
mimemagic (~> 0.3.2)
|
|
87
|
+
marcel (1.0.1)
|
|
85
88
|
method_source (1.0.0)
|
|
86
|
-
|
|
87
|
-
mini_mime (1.0.2)
|
|
89
|
+
mini_mime (1.0.3)
|
|
88
90
|
mini_portile2 (2.5.0)
|
|
89
|
-
minitest (5.14.
|
|
90
|
-
nio4r (2.5.
|
|
91
|
-
nokogiri (1.11.
|
|
91
|
+
minitest (5.14.4)
|
|
92
|
+
nio4r (2.5.7)
|
|
93
|
+
nokogiri (1.11.3)
|
|
92
94
|
mini_portile2 (~> 2.5.0)
|
|
93
95
|
racc (~> 1.4)
|
|
94
|
-
parallel (1.
|
|
95
|
-
parser (
|
|
96
|
+
parallel (1.20.1)
|
|
97
|
+
parser (3.0.1.0)
|
|
96
98
|
ast (~> 2.4.1)
|
|
97
99
|
racc (1.5.2)
|
|
98
100
|
rack (2.2.3)
|
|
@@ -100,36 +102,36 @@ GEM
|
|
|
100
102
|
rack
|
|
101
103
|
rack-test (1.1.0)
|
|
102
104
|
rack (>= 1.0, < 3)
|
|
103
|
-
rails (6.
|
|
104
|
-
actioncable (= 6.
|
|
105
|
-
actionmailbox (= 6.
|
|
106
|
-
actionmailer (= 6.
|
|
107
|
-
actionpack (= 6.
|
|
108
|
-
actiontext (= 6.
|
|
109
|
-
actionview (= 6.
|
|
110
|
-
activejob (= 6.
|
|
111
|
-
activemodel (= 6.
|
|
112
|
-
activerecord (= 6.
|
|
113
|
-
activestorage (= 6.
|
|
114
|
-
activesupport (= 6.
|
|
115
|
-
bundler (>= 1.
|
|
116
|
-
railties (= 6.
|
|
105
|
+
rails (6.1.3.1)
|
|
106
|
+
actioncable (= 6.1.3.1)
|
|
107
|
+
actionmailbox (= 6.1.3.1)
|
|
108
|
+
actionmailer (= 6.1.3.1)
|
|
109
|
+
actionpack (= 6.1.3.1)
|
|
110
|
+
actiontext (= 6.1.3.1)
|
|
111
|
+
actionview (= 6.1.3.1)
|
|
112
|
+
activejob (= 6.1.3.1)
|
|
113
|
+
activemodel (= 6.1.3.1)
|
|
114
|
+
activerecord (= 6.1.3.1)
|
|
115
|
+
activestorage (= 6.1.3.1)
|
|
116
|
+
activesupport (= 6.1.3.1)
|
|
117
|
+
bundler (>= 1.15.0)
|
|
118
|
+
railties (= 6.1.3.1)
|
|
117
119
|
sprockets-rails (>= 2.0.0)
|
|
118
120
|
rails-dom-testing (2.0.3)
|
|
119
121
|
activesupport (>= 4.2.0)
|
|
120
122
|
nokogiri (>= 1.6)
|
|
121
123
|
rails-html-sanitizer (1.3.0)
|
|
122
124
|
loofah (~> 2.3)
|
|
123
|
-
railties (6.
|
|
124
|
-
actionpack (= 6.
|
|
125
|
-
activesupport (= 6.
|
|
125
|
+
railties (6.1.3.1)
|
|
126
|
+
actionpack (= 6.1.3.1)
|
|
127
|
+
activesupport (= 6.1.3.1)
|
|
126
128
|
method_source
|
|
127
129
|
rake (>= 0.8.7)
|
|
128
|
-
thor (
|
|
130
|
+
thor (~> 1.0)
|
|
129
131
|
rainbow (3.0.0)
|
|
130
|
-
rake (13.0.
|
|
131
|
-
regexp_parser (1.
|
|
132
|
-
rexml (3.2.
|
|
132
|
+
rake (13.0.3)
|
|
133
|
+
regexp_parser (2.1.1)
|
|
134
|
+
rexml (3.2.5)
|
|
133
135
|
rubocop (0.93.1)
|
|
134
136
|
parallel (~> 1.10)
|
|
135
137
|
parser (>= 2.7.1.5)
|
|
@@ -139,29 +141,28 @@ GEM
|
|
|
139
141
|
rubocop-ast (>= 0.6.0)
|
|
140
142
|
ruby-progressbar (~> 1.7)
|
|
141
143
|
unicode-display_width (>= 1.4.0, < 2.0)
|
|
142
|
-
rubocop-ast (
|
|
144
|
+
rubocop-ast (1.4.1)
|
|
143
145
|
parser (>= 2.7.1.5)
|
|
144
|
-
rubocop-performance (1.
|
|
145
|
-
rubocop (>= 0.
|
|
146
|
+
rubocop-performance (1.10.2)
|
|
147
|
+
rubocop (>= 0.90.0, < 2.0)
|
|
146
148
|
rubocop-ast (>= 0.4.0)
|
|
147
|
-
ruby-progressbar (1.
|
|
148
|
-
semantic_range (
|
|
149
|
+
ruby-progressbar (1.11.0)
|
|
150
|
+
semantic_range (3.0.0)
|
|
149
151
|
sprockets (4.0.2)
|
|
150
152
|
concurrent-ruby (~> 1.0)
|
|
151
153
|
rack (> 1, < 3)
|
|
152
|
-
sprockets-rails (3.2.
|
|
154
|
+
sprockets-rails (3.2.2)
|
|
153
155
|
actionpack (>= 4.0)
|
|
154
156
|
activesupport (>= 4.0)
|
|
155
157
|
sprockets (>= 3.0.0)
|
|
156
|
-
thor (1.0
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
thread_safe (~> 0.1)
|
|
158
|
+
thor (1.1.0)
|
|
159
|
+
tzinfo (2.0.4)
|
|
160
|
+
concurrent-ruby (~> 1.0)
|
|
160
161
|
unicode-display_width (1.7.0)
|
|
161
162
|
websocket-driver (0.7.3)
|
|
162
163
|
websocket-extensions (>= 0.1.0)
|
|
163
164
|
websocket-extensions (0.1.5)
|
|
164
|
-
zeitwerk (2.4.
|
|
165
|
+
zeitwerk (2.4.2)
|
|
165
166
|
|
|
166
167
|
PLATFORMS
|
|
167
168
|
ruby
|
|
@@ -179,4 +180,4 @@ DEPENDENCIES
|
|
|
179
180
|
webpacker!
|
|
180
181
|
|
|
181
182
|
BUNDLED WITH
|
|
182
|
-
2.
|
|
183
|
+
2.2.25
|