webpacker 5.4.1 → 6.0.0.rc.5
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.js +1 -1
- data/.github/workflows/jest.yml +5 -2
- data/.github/workflows/js-lint.yml +5 -2
- data/.github/workflows/rubocop.yml +1 -1
- data/.github/workflows/ruby.yml +19 -4
- data/.gitignore +2 -0
- data/.node-version +1 -1
- data/.rubocop.yml +4 -3
- data/CHANGELOG.md +24 -6
- data/CONTRIBUTING.md +1 -1
- data/Gemfile.lock +82 -82
- data/README.md +377 -172
- data/config/README.md +3 -0
- data/config/webpacker.yml +1 -0
- data/docs/deployment.md +9 -11
- data/docs/developing_webpacker.md +29 -0
- data/docs/troubleshooting.md +57 -25
- data/docs/v6_upgrade.md +75 -0
- data/gemfiles/Gemfile-rails.6.1.x +12 -0
- data/lib/install/bin/yarn +18 -0
- data/lib/install/config/webpack/base.js +3 -0
- data/lib/install/config/webpack/development.js +2 -2
- data/lib/install/config/webpack/production.js +2 -2
- data/lib/install/config/webpack/test.js +2 -2
- data/lib/install/config/webpacker.yml +20 -50
- data/lib/install/package.json +17 -0
- data/lib/install/{javascript/packs → packs/entrypoints}/application.js +4 -3
- data/lib/install/template.rb +54 -28
- data/lib/tasks/webpacker/binstubs.rake +6 -4
- data/lib/tasks/webpacker/check_binstubs.rake +4 -4
- data/lib/tasks/webpacker/check_node.rake +3 -0
- data/lib/tasks/webpacker/check_yarn.rake +3 -0
- data/lib/tasks/webpacker/clobber.rake +1 -1
- data/lib/tasks/webpacker/compile.rake +4 -2
- data/lib/tasks/webpacker/info.rake +12 -10
- data/lib/tasks/webpacker/install.rake +6 -4
- data/lib/tasks/webpacker/verify_config.rake +14 -0
- data/lib/tasks/webpacker/verify_install.rake +1 -10
- data/lib/tasks/webpacker/yarn_install.rake +9 -7
- data/lib/tasks/webpacker.rake +2 -11
- data/lib/tasks/yarn.rake +36 -0
- data/lib/webpacker/commands.rb +21 -16
- data/lib/webpacker/compiler.rb +16 -9
- data/lib/webpacker/configuration.rb +8 -32
- data/lib/webpacker/dev_server.rb +6 -0
- data/lib/webpacker/dev_server_runner.rb +28 -4
- data/lib/webpacker/helper.rb +47 -81
- data/lib/webpacker/instance.rb +4 -0
- data/lib/webpacker/manifest.rb +2 -3
- data/lib/webpacker/railtie.rb +1 -2
- data/lib/webpacker/runner.rb +1 -1
- data/lib/webpacker/version.rb +1 -1
- data/lib/webpacker/webpack_runner.rb +6 -0
- data/lib/webpacker.rb +1 -1
- data/package/__tests__/config.js +5 -37
- data/package/__tests__/development.js +14 -15
- data/package/__tests__/env.js +16 -4
- data/package/__tests__/index.js +9 -0
- data/package/__tests__/production.js +6 -6
- data/package/__tests__/staging.js +7 -6
- data/package/__tests__/test.js +4 -5
- data/package/babel/preset.js +54 -0
- data/package/config.js +6 -14
- data/package/env.js +13 -4
- data/package/environments/__tests__/base.js +20 -52
- data/package/environments/base.js +68 -128
- data/package/environments/development.js +50 -44
- data/package/environments/production.js +66 -64
- data/package/environments/test.js +2 -2
- data/package/index.js +15 -8
- data/package/inliningCss.js +7 -0
- data/package/rules/babel.js +10 -8
- data/package/rules/coffee.js +6 -0
- data/package/rules/erb.js +15 -0
- data/package/rules/file.js +21 -19
- data/package/rules/index.js +16 -18
- data/package/rules/less.js +22 -0
- data/package/rules/raw.js +5 -0
- data/package/rules/sass.js +9 -10
- data/package/rules/stylus.js +26 -0
- data/package/utils/get_style_rule.js +28 -36
- data/package/utils/helpers.js +28 -35
- data/package.json +12 -32
- data/test/command_test.rb +76 -0
- data/test/compiler_test.rb +0 -12
- data/test/configuration_test.rb +4 -35
- data/test/dev_server_runner_test.rb +36 -6
- data/test/engine_rake_tasks_test.rb +39 -0
- data/test/helper_test.rb +79 -77
- data/test/manifest_test.rb +16 -0
- data/test/mounted_app/Rakefile +4 -0
- data/test/mounted_app/test/dummy/Rakefile +3 -0
- data/test/mounted_app/test/dummy/bin/rails +3 -0
- data/test/mounted_app/test/dummy/bin/rake +3 -0
- data/test/mounted_app/test/dummy/config/application.rb +10 -0
- data/test/mounted_app/test/dummy/config/environment.rb +3 -0
- data/test/mounted_app/test/dummy/config/webpacker.yml +75 -0
- data/test/mounted_app/test/dummy/config.ru +5 -0
- data/test/mounted_app/test/dummy/package.json +7 -0
- data/test/rake_tasks_test.rb +1 -10
- data/test/test_app/app/{javascript/packs → packs/entrypoints}/application.js +1 -1
- data/test/test_app/app/{javascript/packs → packs/entrypoints}/multi_entry.css +0 -0
- data/test/test_app/app/{javascript/packs → packs/entrypoints}/multi_entry.js +0 -0
- data/test/test_app/config/webpacker.yml +5 -31
- data/test/test_app/config/webpacker_other_location.yml +79 -0
- data/test/test_app/config/webpacker_public_root.yml +0 -1
- data/test/test_app/public/packs/manifest.json +36 -18
- data/test/test_app/some.config.js +0 -0
- data/test/webpack_runner_test.rb +9 -3
- data/test/webpacker_test.rb +17 -0
- data/webpacker.gemspec +1 -1
- data/yarn.lock +1050 -3966
- metadata +59 -91
- data/.travis.yml +0 -43
- data/docs/assets.md +0 -119
- data/docs/cloud9.md +0 -310
- data/docs/css.md +0 -308
- data/docs/docker.md +0 -68
- data/docs/engines.md +0 -213
- data/docs/env.md +0 -63
- data/docs/es6.md +0 -72
- data/docs/folder-structure.md +0 -66
- data/docs/integrations.md +0 -220
- data/docs/misc.md +0 -23
- data/docs/props.md +0 -223
- data/docs/target.md +0 -22
- data/docs/testing.md +0 -136
- data/docs/typescript.md +0 -190
- data/docs/v4-upgrade.md +0 -142
- data/docs/webpack-dev-server.md +0 -92
- data/docs/webpack.md +0 -364
- data/docs/yarn.md +0 -23
- data/lib/install/angular.rb +0 -23
- data/lib/install/coffee.rb +0 -25
- data/lib/install/config/.browserslistrc +0 -1
- data/lib/install/config/babel.config.js +0 -76
- data/lib/install/config/postcss.config.js +0 -12
- data/lib/install/config/webpack/environment.js +0 -3
- data/lib/install/elm.rb +0 -39
- data/lib/install/erb.rb +0 -25
- data/lib/install/examples/angular/hello_angular/app/app.component.ts +0 -9
- data/lib/install/examples/angular/hello_angular/app/app.module.ts +0 -16
- data/lib/install/examples/angular/hello_angular/index.ts +0 -8
- data/lib/install/examples/angular/hello_angular/polyfills.ts +0 -73
- data/lib/install/examples/angular/hello_angular.js +0 -7
- data/lib/install/examples/coffee/hello_coffee.coffee +0 -4
- data/lib/install/examples/elm/Main.elm +0 -55
- data/lib/install/examples/elm/hello_elm.js +0 -16
- data/lib/install/examples/erb/hello_erb.js.erb +0 -6
- data/lib/install/examples/react/babel.config.js +0 -93
- data/lib/install/examples/react/hello_react.jsx +0 -26
- data/lib/install/examples/react/tsconfig.json +0 -21
- data/lib/install/examples/stimulus/application.js +0 -1
- data/lib/install/examples/stimulus/controllers/hello_controller.js +0 -18
- data/lib/install/examples/stimulus/controllers/index.js +0 -9
- data/lib/install/examples/svelte/app.svelte +0 -11
- data/lib/install/examples/svelte/hello_svelte.js +0 -20
- data/lib/install/examples/typescript/hello_typescript.ts +0 -4
- data/lib/install/examples/typescript/tsconfig.json +0 -24
- data/lib/install/examples/vue/app.vue +0 -22
- data/lib/install/examples/vue/hello_vue.js +0 -72
- data/lib/install/loaders/coffee.js +0 -6
- data/lib/install/loaders/elm.js +0 -25
- data/lib/install/loaders/erb.js +0 -11
- data/lib/install/loaders/svelte.js +0 -9
- data/lib/install/loaders/vue.js +0 -6
- data/lib/install/react.rb +0 -18
- data/lib/install/stimulus.rb +0 -12
- data/lib/install/svelte.rb +0 -29
- data/lib/install/typescript.rb +0 -39
- data/lib/install/vue.rb +0 -49
- data/lib/tasks/installers.rake +0 -42
- data/package/config_types/__tests__/config_list.js +0 -118
- data/package/config_types/__tests__/config_object.js +0 -43
- data/package/config_types/config_list.js +0 -75
- data/package/config_types/config_object.js +0 -55
- data/package/config_types/index.js +0 -7
- data/package/rules/module.css.js +0 -3
- data/package/rules/module.sass.js +0 -8
- data/package/rules/node_modules.js +0 -22
- data/package/utils/__tests__/deep_assign.js +0 -32
- data/package/utils/__tests__/deep_merge.js +0 -10
- data/package/utils/__tests__/get_style_rule.js +0 -65
- data/package/utils/__tests__/objectify.js +0 -9
- data/package/utils/deep_assign.js +0 -22
- data/package/utils/deep_merge.js +0 -22
- data/package/utils/objectify.js +0 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 308f1dcfbba68cb509f38d0990c5fc0bbab2f0d1291869057f4c11eb797cdc61
|
|
4
|
+
data.tar.gz: 816f1050b3df6a970119fa967e4ff9db2562dd240674d46eba91c0d6ae5aefa7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4e3051f31353cd4f6ec9c0c7642ce00ab5b90f8093cfbfbb566a17468705e4a2c1ee691e0fb9b45dc55edd49b0cf62c60a8a4428b2843914dabb95ff2eb92f10
|
|
7
|
+
data.tar.gz: a00f04d5951f343a0e0c39bc942aec73863547630807ccd944e0d2a3a459ee52170ce77f4a3fd10c2019c5fed49f570ea174531679d61cf4e5051dea1e4036ac
|
data/.eslintrc.js
CHANGED
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,17 +3,20 @@ 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:
|
|
10
10
|
matrix:
|
|
11
11
|
os: [ubuntu-latest]
|
|
12
|
-
node: [
|
|
12
|
+
node: [14.x]
|
|
13
13
|
|
|
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 }}
|
|
@@ -18,21 +18,33 @@ jobs:
|
|
|
18
18
|
2.4,
|
|
19
19
|
2.5,
|
|
20
20
|
2.6,
|
|
21
|
-
2.7
|
|
21
|
+
2.7,
|
|
22
|
+
3.0
|
|
22
23
|
]
|
|
23
24
|
gemfile: [
|
|
24
25
|
"gemfiles/Gemfile-rails.5.2.x",
|
|
25
|
-
"gemfiles/Gemfile-rails.6.0.x"
|
|
26
|
+
"gemfiles/Gemfile-rails.6.0.x",
|
|
27
|
+
"gemfiles/Gemfile-rails.6.1.x"
|
|
26
28
|
]
|
|
27
29
|
exclude:
|
|
28
|
-
- ruby:
|
|
30
|
+
- ruby: 2.4
|
|
29
31
|
gemfile: gemfiles/Gemfile-rails.6.0.x
|
|
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
|
|
37
|
+
gemfile: gemfiles/Gemfile-rails.5.2.x
|
|
30
38
|
experimental: [false]
|
|
31
39
|
include:
|
|
32
40
|
- ruby: 2.7
|
|
33
41
|
os: ubuntu-latest
|
|
34
42
|
gemfile: gemfiles/Gemfile-rails-edge
|
|
35
43
|
experimental: true
|
|
44
|
+
- ruby: 3.0
|
|
45
|
+
os: ubuntu-latest
|
|
46
|
+
gemfile: gemfiles/Gemfile-rails-edge
|
|
47
|
+
experimental: true
|
|
36
48
|
|
|
37
49
|
steps:
|
|
38
50
|
- uses: actions/checkout@v2
|
|
@@ -43,6 +55,9 @@ jobs:
|
|
|
43
55
|
restore-keys: |
|
|
44
56
|
bundle-use-ruby-${{ matrix.ruby }}-${{ matrix.gemfile }}-gems-
|
|
45
57
|
|
|
58
|
+
- name: Install yarn maybe
|
|
59
|
+
run: which yarn || sudo npm install -g yarn
|
|
60
|
+
|
|
46
61
|
- uses: ruby/setup-ruby@v1
|
|
47
62
|
with:
|
|
48
63
|
ruby-version: ${{ matrix.ruby }}
|
data/.gitignore
CHANGED
data/.node-version
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
16.
|
|
1
|
+
16.7.0
|
data/.rubocop.yml
CHANGED
|
@@ -5,9 +5,10 @@ AllCops:
|
|
|
5
5
|
# to ignore them, so only the ones explicitly set in this file are enabled.
|
|
6
6
|
DisabledByDefault: true
|
|
7
7
|
Exclude:
|
|
8
|
-
-
|
|
9
|
-
-
|
|
10
|
-
-
|
|
8
|
+
- "lib/install/templates/**"
|
|
9
|
+
- "vendor/**/*"
|
|
10
|
+
- "node_modules/**/*"
|
|
11
|
+
- "_actions/**/*"
|
|
11
12
|
|
|
12
13
|
# Prefer &&/|| over and/or.
|
|
13
14
|
Style/AndOr:
|
data/CHANGELOG.md
CHANGED
|
@@ -2,11 +2,29 @@
|
|
|
2
2
|
|
|
3
3
|
**Please note that Webpacker 4.1.0 has an installer bug. Please use 4.2.0 or above**
|
|
4
4
|
|
|
5
|
-
## [[
|
|
5
|
+
## [[6.0.0]](https://github.com/rails/webpacker/compare/v5.1.1...master) - 2021-TBD
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
Please see [UPGRADE GUIDE](./docs/v6_upgrade.md) for more information.
|
|
8
8
|
|
|
9
|
-
-
|
|
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:
|
|
10
|
+
|
|
11
|
+
```js
|
|
12
|
+
const nodeModules = require('@rails/webpacker/rules/node_modules.js')
|
|
13
|
+
environment.loaders.append('nodeModules', nodeModules)
|
|
14
|
+
```
|
|
15
|
+
|
|
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`).
|
|
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.
|
|
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).
|
|
19
|
+
- Changes `@babel/preset-env` modules option to `'auto'` per recommendation in the Babel docs [#2709](https://github.com/rails/webpacker/pull/2709)
|
|
20
|
+
- Adds experimental Yarn 2 support. Note you must manually set `nodeLinker: node-modules` in your `.yarnrc.yml`.
|
|
21
|
+
- Fixes dev server issues [#2898](https://github.com/rails/webpacker/pull/2898)
|
|
22
|
+
- Update static files path to from `media/` to `static/`.
|
|
23
|
+
|
|
24
|
+
### Breaking changes
|
|
25
|
+
- Removed integration installers
|
|
26
|
+
- Splitchunks enabled by default
|
|
27
|
+
- CSS extraction enabled by default, except when devServer is configured and running
|
|
10
28
|
|
|
11
29
|
## [[5.4.0]](https://github.com/rails/webpacker/compare/v5.3.0...v5.4.0) - 2021-05-18
|
|
12
30
|
|
|
@@ -405,7 +423,7 @@ See changes: https://github.com/rails/webpacker/compare/e8b197e36c77181ca2e4765c
|
|
|
405
423
|
|
|
406
424
|
### Added
|
|
407
425
|
|
|
408
|
-
- 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)
|
|
409
427
|
|
|
410
428
|
## [3.5.3] - 2018-05-03
|
|
411
429
|
|
|
@@ -799,11 +817,11 @@ yarn add coffeescript
|
|
|
799
817
|
|
|
800
818
|
### Added
|
|
801
819
|
|
|
802
|
-
- `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
|
|
803
821
|
|
|
804
822
|
```yml
|
|
805
823
|
# config/webpacker.yml
|
|
806
|
-
# Additional paths webpack should
|
|
824
|
+
# Additional paths webpack should look up modules
|
|
807
825
|
resolved_paths: [] # empty by default
|
|
808
826
|
```
|
|
809
827
|
|
data/CONTRIBUTING.md
CHANGED
|
@@ -9,7 +9,7 @@ yarn
|
|
|
9
9
|
```
|
|
10
10
|
|
|
11
11
|
## Making sure your changes pass all tests
|
|
12
|
-
There are a number of automated checks which run on
|
|
12
|
+
There are a number of automated checks which run on GitHub Actions when a pull request is created.
|
|
13
13
|
You can run those checks on your own locally to make sure that your changes would not break the CI build.
|
|
14
14
|
|
|
15
15
|
### 1. Check the code for JavaScript style violations
|
data/Gemfile.lock
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
webpacker (
|
|
4
|
+
webpacker (6.0.0.rc.5)
|
|
5
5
|
activesupport (>= 5.2)
|
|
6
6
|
rack-proxy (>= 0.6.1)
|
|
7
7
|
railties (>= 5.2)
|
|
@@ -10,60 +10,60 @@ PATH
|
|
|
10
10
|
GEM
|
|
11
11
|
remote: https://rubygems.org/
|
|
12
12
|
specs:
|
|
13
|
-
actioncable (6.1.
|
|
14
|
-
actionpack (= 6.1.
|
|
15
|
-
activesupport (= 6.1.
|
|
13
|
+
actioncable (6.1.4.1)
|
|
14
|
+
actionpack (= 6.1.4.1)
|
|
15
|
+
activesupport (= 6.1.4.1)
|
|
16
16
|
nio4r (~> 2.0)
|
|
17
17
|
websocket-driver (>= 0.6.1)
|
|
18
|
-
actionmailbox (6.1.
|
|
19
|
-
actionpack (= 6.1.
|
|
20
|
-
activejob (= 6.1.
|
|
21
|
-
activerecord (= 6.1.
|
|
22
|
-
activestorage (= 6.1.
|
|
23
|
-
activesupport (= 6.1.
|
|
18
|
+
actionmailbox (6.1.4.1)
|
|
19
|
+
actionpack (= 6.1.4.1)
|
|
20
|
+
activejob (= 6.1.4.1)
|
|
21
|
+
activerecord (= 6.1.4.1)
|
|
22
|
+
activestorage (= 6.1.4.1)
|
|
23
|
+
activesupport (= 6.1.4.1)
|
|
24
24
|
mail (>= 2.7.1)
|
|
25
|
-
actionmailer (6.1.
|
|
26
|
-
actionpack (= 6.1.
|
|
27
|
-
actionview (= 6.1.
|
|
28
|
-
activejob (= 6.1.
|
|
29
|
-
activesupport (= 6.1.
|
|
25
|
+
actionmailer (6.1.4.1)
|
|
26
|
+
actionpack (= 6.1.4.1)
|
|
27
|
+
actionview (= 6.1.4.1)
|
|
28
|
+
activejob (= 6.1.4.1)
|
|
29
|
+
activesupport (= 6.1.4.1)
|
|
30
30
|
mail (~> 2.5, >= 2.5.4)
|
|
31
31
|
rails-dom-testing (~> 2.0)
|
|
32
|
-
actionpack (6.1.
|
|
33
|
-
actionview (= 6.1.
|
|
34
|
-
activesupport (= 6.1.
|
|
32
|
+
actionpack (6.1.4.1)
|
|
33
|
+
actionview (= 6.1.4.1)
|
|
34
|
+
activesupport (= 6.1.4.1)
|
|
35
35
|
rack (~> 2.0, >= 2.0.9)
|
|
36
36
|
rack-test (>= 0.6.3)
|
|
37
37
|
rails-dom-testing (~> 2.0)
|
|
38
38
|
rails-html-sanitizer (~> 1.0, >= 1.2.0)
|
|
39
|
-
actiontext (6.1.
|
|
40
|
-
actionpack (= 6.1.
|
|
41
|
-
activerecord (= 6.1.
|
|
42
|
-
activestorage (= 6.1.
|
|
43
|
-
activesupport (= 6.1.
|
|
39
|
+
actiontext (6.1.4.1)
|
|
40
|
+
actionpack (= 6.1.4.1)
|
|
41
|
+
activerecord (= 6.1.4.1)
|
|
42
|
+
activestorage (= 6.1.4.1)
|
|
43
|
+
activesupport (= 6.1.4.1)
|
|
44
44
|
nokogiri (>= 1.8.5)
|
|
45
|
-
actionview (6.1.
|
|
46
|
-
activesupport (= 6.1.
|
|
45
|
+
actionview (6.1.4.1)
|
|
46
|
+
activesupport (= 6.1.4.1)
|
|
47
47
|
builder (~> 3.1)
|
|
48
48
|
erubi (~> 1.4)
|
|
49
49
|
rails-dom-testing (~> 2.0)
|
|
50
50
|
rails-html-sanitizer (~> 1.1, >= 1.2.0)
|
|
51
|
-
activejob (6.1.
|
|
52
|
-
activesupport (= 6.1.
|
|
51
|
+
activejob (6.1.4.1)
|
|
52
|
+
activesupport (= 6.1.4.1)
|
|
53
53
|
globalid (>= 0.3.6)
|
|
54
|
-
activemodel (6.1.
|
|
55
|
-
activesupport (= 6.1.
|
|
56
|
-
activerecord (6.1.
|
|
57
|
-
activemodel (= 6.1.
|
|
58
|
-
activesupport (= 6.1.
|
|
59
|
-
activestorage (6.1.
|
|
60
|
-
actionpack (= 6.1.
|
|
61
|
-
activejob (= 6.1.
|
|
62
|
-
activerecord (= 6.1.
|
|
63
|
-
activesupport (= 6.1.
|
|
54
|
+
activemodel (6.1.4.1)
|
|
55
|
+
activesupport (= 6.1.4.1)
|
|
56
|
+
activerecord (6.1.4.1)
|
|
57
|
+
activemodel (= 6.1.4.1)
|
|
58
|
+
activesupport (= 6.1.4.1)
|
|
59
|
+
activestorage (6.1.4.1)
|
|
60
|
+
actionpack (= 6.1.4.1)
|
|
61
|
+
activejob (= 6.1.4.1)
|
|
62
|
+
activerecord (= 6.1.4.1)
|
|
63
|
+
activesupport (= 6.1.4.1)
|
|
64
64
|
marcel (~> 1.0.0)
|
|
65
|
-
mini_mime (
|
|
66
|
-
activesupport (6.1.
|
|
65
|
+
mini_mime (>= 1.1.0)
|
|
66
|
+
activesupport (6.1.4.1)
|
|
67
67
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
|
68
68
|
i18n (>= 1.6, < 2)
|
|
69
69
|
minitest (>= 5.1)
|
|
@@ -72,79 +72,79 @@ GEM
|
|
|
72
72
|
ast (2.4.2)
|
|
73
73
|
builder (3.2.4)
|
|
74
74
|
byebug (11.1.3)
|
|
75
|
-
concurrent-ruby (1.1.
|
|
75
|
+
concurrent-ruby (1.1.9)
|
|
76
76
|
crass (1.0.6)
|
|
77
77
|
erubi (1.10.0)
|
|
78
|
-
globalid (0.
|
|
79
|
-
activesupport (>=
|
|
78
|
+
globalid (0.5.2)
|
|
79
|
+
activesupport (>= 5.0)
|
|
80
80
|
i18n (1.8.10)
|
|
81
81
|
concurrent-ruby (~> 1.0)
|
|
82
|
-
loofah (2.
|
|
82
|
+
loofah (2.12.0)
|
|
83
83
|
crass (~> 1.0.2)
|
|
84
84
|
nokogiri (>= 1.5.9)
|
|
85
85
|
mail (2.7.1)
|
|
86
86
|
mini_mime (>= 0.1.1)
|
|
87
87
|
marcel (1.0.1)
|
|
88
88
|
method_source (1.0.0)
|
|
89
|
-
mini_mime (1.
|
|
90
|
-
mini_portile2 (2.
|
|
89
|
+
mini_mime (1.1.1)
|
|
90
|
+
mini_portile2 (2.6.1)
|
|
91
91
|
minitest (5.14.4)
|
|
92
|
-
nio4r (2.5.
|
|
93
|
-
nokogiri (1.
|
|
94
|
-
mini_portile2 (~> 2.
|
|
92
|
+
nio4r (2.5.8)
|
|
93
|
+
nokogiri (1.12.3)
|
|
94
|
+
mini_portile2 (~> 2.6.1)
|
|
95
95
|
racc (~> 1.4)
|
|
96
|
-
parallel (1.
|
|
97
|
-
parser (3.0.
|
|
96
|
+
parallel (1.19.1)
|
|
97
|
+
parser (3.0.2.0)
|
|
98
98
|
ast (~> 2.4.1)
|
|
99
99
|
racc (1.5.2)
|
|
100
100
|
rack (2.2.3)
|
|
101
|
-
rack-proxy (0.
|
|
101
|
+
rack-proxy (0.7.0)
|
|
102
102
|
rack
|
|
103
103
|
rack-test (1.1.0)
|
|
104
104
|
rack (>= 1.0, < 3)
|
|
105
|
-
rails (6.1.
|
|
106
|
-
actioncable (= 6.1.
|
|
107
|
-
actionmailbox (= 6.1.
|
|
108
|
-
actionmailer (= 6.1.
|
|
109
|
-
actionpack (= 6.1.
|
|
110
|
-
actiontext (= 6.1.
|
|
111
|
-
actionview (= 6.1.
|
|
112
|
-
activejob (= 6.1.
|
|
113
|
-
activemodel (= 6.1.
|
|
114
|
-
activerecord (= 6.1.
|
|
115
|
-
activestorage (= 6.1.
|
|
116
|
-
activesupport (= 6.1.
|
|
105
|
+
rails (6.1.4.1)
|
|
106
|
+
actioncable (= 6.1.4.1)
|
|
107
|
+
actionmailbox (= 6.1.4.1)
|
|
108
|
+
actionmailer (= 6.1.4.1)
|
|
109
|
+
actionpack (= 6.1.4.1)
|
|
110
|
+
actiontext (= 6.1.4.1)
|
|
111
|
+
actionview (= 6.1.4.1)
|
|
112
|
+
activejob (= 6.1.4.1)
|
|
113
|
+
activemodel (= 6.1.4.1)
|
|
114
|
+
activerecord (= 6.1.4.1)
|
|
115
|
+
activestorage (= 6.1.4.1)
|
|
116
|
+
activesupport (= 6.1.4.1)
|
|
117
117
|
bundler (>= 1.15.0)
|
|
118
|
-
railties (= 6.1.
|
|
118
|
+
railties (= 6.1.4.1)
|
|
119
119
|
sprockets-rails (>= 2.0.0)
|
|
120
120
|
rails-dom-testing (2.0.3)
|
|
121
121
|
activesupport (>= 4.2.0)
|
|
122
122
|
nokogiri (>= 1.6)
|
|
123
|
-
rails-html-sanitizer (1.
|
|
123
|
+
rails-html-sanitizer (1.4.2)
|
|
124
124
|
loofah (~> 2.3)
|
|
125
|
-
railties (6.1.
|
|
126
|
-
actionpack (= 6.1.
|
|
127
|
-
activesupport (= 6.1.
|
|
125
|
+
railties (6.1.4.1)
|
|
126
|
+
actionpack (= 6.1.4.1)
|
|
127
|
+
activesupport (= 6.1.4.1)
|
|
128
128
|
method_source
|
|
129
|
-
rake (>= 0.
|
|
129
|
+
rake (>= 0.13)
|
|
130
130
|
thor (~> 1.0)
|
|
131
131
|
rainbow (3.0.0)
|
|
132
|
-
rake (13.0.
|
|
132
|
+
rake (13.0.6)
|
|
133
133
|
regexp_parser (2.1.1)
|
|
134
134
|
rexml (3.2.5)
|
|
135
|
-
rubocop (
|
|
135
|
+
rubocop (1.19.1)
|
|
136
136
|
parallel (~> 1.10)
|
|
137
|
-
parser (>=
|
|
137
|
+
parser (>= 3.0.0.0)
|
|
138
138
|
rainbow (>= 2.2.2, < 4.0)
|
|
139
|
-
regexp_parser (>= 1.8)
|
|
139
|
+
regexp_parser (>= 1.8, < 3.0)
|
|
140
140
|
rexml
|
|
141
|
-
rubocop-ast (>=
|
|
141
|
+
rubocop-ast (>= 1.9.1, < 2.0)
|
|
142
142
|
ruby-progressbar (~> 1.7)
|
|
143
|
-
unicode-display_width (>= 1.4.0, <
|
|
144
|
-
rubocop-ast (1.
|
|
143
|
+
unicode-display_width (>= 1.4.0, < 3.0)
|
|
144
|
+
rubocop-ast (1.11.0)
|
|
145
145
|
parser (>= 3.0.1.1)
|
|
146
|
-
rubocop-performance (1.
|
|
147
|
-
rubocop (>=
|
|
146
|
+
rubocop-performance (1.11.5)
|
|
147
|
+
rubocop (>= 1.7.0, < 2.0)
|
|
148
148
|
rubocop-ast (>= 0.4.0)
|
|
149
149
|
ruby-progressbar (1.11.0)
|
|
150
150
|
semantic_range (3.0.0)
|
|
@@ -158,8 +158,8 @@ GEM
|
|
|
158
158
|
thor (1.1.0)
|
|
159
159
|
tzinfo (2.0.4)
|
|
160
160
|
concurrent-ruby (~> 1.0)
|
|
161
|
-
unicode-display_width (
|
|
162
|
-
websocket-driver (0.7.
|
|
161
|
+
unicode-display_width (2.0.0)
|
|
162
|
+
websocket-driver (0.7.5)
|
|
163
163
|
websocket-extensions (>= 0.1.0)
|
|
164
164
|
websocket-extensions (0.1.5)
|
|
165
165
|
zeitwerk (2.4.2)
|
|
@@ -174,10 +174,10 @@ DEPENDENCIES
|
|
|
174
174
|
rack-proxy
|
|
175
175
|
rails
|
|
176
176
|
rake (>= 11.1)
|
|
177
|
-
rubocop
|
|
177
|
+
rubocop
|
|
178
178
|
rubocop-performance
|
|
179
179
|
semantic_range
|
|
180
180
|
webpacker!
|
|
181
181
|
|
|
182
182
|
BUNDLED WITH
|
|
183
|
-
2.2.
|
|
183
|
+
2.2.25
|