webpacker 4.2.2 → 5.2.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.js +8 -8
- data/.github/workflows/jest.yml +38 -0
- data/.github/workflows/js-lint.yml +39 -0
- data/.github/workflows/rubocop.yml +39 -0
- data/.github/workflows/ruby.yml +70 -0
- data/.node-version +1 -1
- data/.travis.yml +7 -20
- data/CHANGELOG.md +40 -2
- data/Gemfile +1 -0
- data/Gemfile.lock +81 -78
- data/README.md +59 -295
- data/docs/css.md +61 -7
- data/docs/deployment.md +2 -2
- data/docs/docker.md +17 -17
- data/docs/engines.md +13 -0
- data/docs/env.md +0 -2
- data/docs/integrations.md +220 -0
- data/docs/target.md +22 -0
- data/docs/testing.md +2 -3
- data/docs/troubleshooting.md +3 -1
- data/docs/typescript.md +92 -28
- data/docs/webpack-dev-server.md +1 -1
- data/lib/install/config/babel.config.js +1 -3
- data/lib/install/config/webpacker.yml +1 -5
- data/lib/install/examples/react/tsconfig.json +2 -1
- data/lib/install/examples/typescript/tsconfig.json +2 -1
- data/lib/install/loaders/svelte.js +2 -2
- data/lib/install/template.rb +1 -1
- data/lib/install/typescript.rb +5 -12
- data/lib/tasks/webpacker/check_node.rake +15 -8
- data/lib/tasks/webpacker/check_yarn.rake +17 -10
- data/lib/tasks/webpacker/clean.rake +12 -6
- data/lib/tasks/webpacker/clobber.rake +8 -4
- data/lib/tasks/webpacker/yarn_install.rake +5 -16
- data/lib/webpacker/commands.rb +33 -9
- data/lib/webpacker/compiler.rb +9 -5
- data/lib/webpacker/configuration.rb +13 -9
- data/lib/webpacker/dev_server_proxy.rb +3 -1
- data/lib/webpacker/dev_server_runner.rb +6 -6
- data/lib/webpacker/helper.rb +37 -18
- data/lib/webpacker/manifest.rb +4 -4
- data/lib/webpacker/railtie.rb +2 -45
- data/lib/webpacker/runner.rb +1 -0
- data/lib/webpacker/version.rb +1 -1
- data/lib/webpacker/webpack_runner.rb +2 -2
- data/package.json +39 -39
- data/package/__tests__/config.js +12 -1
- data/package/__tests__/dev_server.js +2 -0
- data/package/__tests__/development.js +14 -1
- data/package/config.js +4 -1
- data/package/configPath.js +3 -0
- data/package/dev_server.js +1 -1
- data/package/env.js +1 -2
- data/package/environments/__tests__/base.js +30 -3
- data/package/environments/base.js +17 -7
- data/package/environments/development.js +39 -37
- data/package/environments/production.js +1 -3
- data/package/rules/babel.js +12 -5
- data/package/rules/file.js +1 -0
- data/package/rules/node_modules.js +1 -3
- data/package/rules/sass.js +7 -1
- data/package/utils/helpers.js +1 -1
- data/test/compiler_test.rb +8 -3
- data/test/configuration_test.rb +8 -7
- data/test/dev_server_runner_test.rb +1 -1
- data/test/helper_test.rb +3 -0
- data/test/manifest_test.rb +37 -6
- data/test/rake_tasks_test.rb +11 -0
- data/test/test_app/app/javascript/packs/multi_entry.css +4 -0
- data/test/test_app/app/javascript/packs/multi_entry.js +4 -0
- data/test/test_app/config/application.rb +0 -1
- data/test/test_app/config/webpacker.yml +7 -1
- data/test/test_app/public/packs/manifest.json +1 -0
- data/test/webpack_runner_test.rb +1 -1
- data/webpacker.gemspec +4 -3
- data/yarn.lock +3413 -2843
- metadata +34 -13
- data/gemfiles/Gemfile-rails.4.2.x +0 -9
- data/gemfiles/Gemfile-rails.5.0.x +0 -9
- data/gemfiles/Gemfile-rails.5.1.x +0 -9
- data/lib/install/loaders/typescript.js +0 -11
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6ca1d1bd58719c72f514bf91eda1ce7e3098ec6965de55d880bcbea2caeca5dc
|
4
|
+
data.tar.gz: 478cb03b14fc32f64b46c4c2ff6adbcae5778fb4ff70a88aaeee22c8c9debec6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7c91f086879b0d7fcbbf15fccdc2eaf65f9fd1419c8946eab708ac83db68ee2a29f12ed8db79380f4333ee193fd025a9496b81ce460b7f2388e74420b2484c48
|
7
|
+
data.tar.gz: 5266e49c79810132fe885992d0fca258d793f47a004550b66dce0cf7aebd75456fdaf2e42a153e74a07a2890e5d3f298f7f5789af345bd8f3db2ae22dee54900
|
data/.eslintrc.js
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
module.exports = {
|
2
|
-
|
3
|
-
|
2
|
+
extends: 'airbnb',
|
3
|
+
rules: {
|
4
4
|
'comma-dangle': ['error', 'never'],
|
5
5
|
'import/no-unresolved': 'off',
|
6
6
|
'import/no-extraneous-dependencies': 'off',
|
7
7
|
'import/extensions': 'off',
|
8
|
-
semi: ['error', 'never']
|
8
|
+
semi: ['error', 'never']
|
9
9
|
},
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
}
|
14
|
-
}
|
10
|
+
env: {
|
11
|
+
browser: true,
|
12
|
+
node: true
|
13
|
+
}
|
14
|
+
}
|
@@ -0,0 +1,38 @@
|
|
1
|
+
name: Jest specs
|
2
|
+
|
3
|
+
on: [push, pull_request]
|
4
|
+
|
5
|
+
jobs:
|
6
|
+
build:
|
7
|
+
name: Jest specs
|
8
|
+
strategy:
|
9
|
+
matrix:
|
10
|
+
os: [ubuntu-latest]
|
11
|
+
node: [10.x, 12.x, 14.x]
|
12
|
+
|
13
|
+
runs-on: ${{ matrix.os }}
|
14
|
+
|
15
|
+
steps:
|
16
|
+
- uses: actions/checkout@v2
|
17
|
+
- name: Get yarn cache directory path
|
18
|
+
id: yarn-cache-dir-path
|
19
|
+
run: echo "::set-output name=dir::$(yarn cache dir)"
|
20
|
+
|
21
|
+
- uses: actions/cache@v2
|
22
|
+
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
|
23
|
+
with:
|
24
|
+
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
|
25
|
+
key: ${{ runner.os }}-${{ matrix.node }}-yarn-${{ hashFiles('**/yarn.lock') }}
|
26
|
+
restore-keys: |
|
27
|
+
${{ runner.os }}-${{ matrix.node }}-yarn-
|
28
|
+
|
29
|
+
- name: Use Node.js ${{ matrix.node }}
|
30
|
+
uses: actions/setup-node@v1
|
31
|
+
with:
|
32
|
+
node-version: ${{ matrix.node }}
|
33
|
+
|
34
|
+
- name: Install dependencies
|
35
|
+
run: yarn --frozen-lockfile
|
36
|
+
|
37
|
+
- name: Jest Specs
|
38
|
+
run: yarn test
|
@@ -0,0 +1,39 @@
|
|
1
|
+
name: JS lint
|
2
|
+
|
3
|
+
on: [push, pull_request]
|
4
|
+
|
5
|
+
jobs:
|
6
|
+
build:
|
7
|
+
name: JS Lint
|
8
|
+
|
9
|
+
strategy:
|
10
|
+
matrix:
|
11
|
+
os: [ubuntu-latest]
|
12
|
+
node: [12.x]
|
13
|
+
|
14
|
+
runs-on: ${{ matrix.os }}
|
15
|
+
|
16
|
+
steps:
|
17
|
+
- uses: actions/checkout@v2
|
18
|
+
- name: Get yarn cache directory path
|
19
|
+
id: yarn-cache-dir-path
|
20
|
+
run: echo "::set-output name=dir::$(yarn cache dir)"
|
21
|
+
|
22
|
+
- uses: actions/cache@v2
|
23
|
+
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
|
24
|
+
with:
|
25
|
+
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
|
26
|
+
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
|
27
|
+
restore-keys: |
|
28
|
+
${{ runner.os }}-yarn-
|
29
|
+
|
30
|
+
- name: Use Node.js ${{ matrix.node }}
|
31
|
+
uses: actions/setup-node@v1
|
32
|
+
with:
|
33
|
+
node-version: ${{ matrix.node }}
|
34
|
+
|
35
|
+
- name: Install dependencies
|
36
|
+
run: yarn --frozen-lockfile
|
37
|
+
|
38
|
+
- name: Lint
|
39
|
+
run: yarn lint
|
@@ -0,0 +1,39 @@
|
|
1
|
+
name: Rubocop
|
2
|
+
|
3
|
+
on: [push, pull_request]
|
4
|
+
|
5
|
+
jobs:
|
6
|
+
build:
|
7
|
+
name: Rubocop
|
8
|
+
runs-on: ${{ matrix.os }}
|
9
|
+
env:
|
10
|
+
BUNDLE_JOBS: 4
|
11
|
+
BUNDLE_RETRY: 3
|
12
|
+
strategy:
|
13
|
+
matrix:
|
14
|
+
os: [ubuntu-latest]
|
15
|
+
ruby: [
|
16
|
+
2.7
|
17
|
+
]
|
18
|
+
|
19
|
+
steps:
|
20
|
+
- uses: actions/checkout@v2
|
21
|
+
- uses: actions/cache@v2
|
22
|
+
with:
|
23
|
+
path: /home/runner/bundle
|
24
|
+
key: bundle-use-ruby-gems-${{ hashFiles('**/Gemfile.lock') }}
|
25
|
+
restore-keys: |
|
26
|
+
bundle-use-ruby-gems-
|
27
|
+
|
28
|
+
- uses: ruby/setup-ruby@v1
|
29
|
+
with:
|
30
|
+
ruby-version: ${{ matrix.ruby }}
|
31
|
+
|
32
|
+
- name: Bundle install
|
33
|
+
run: |
|
34
|
+
gem install bundler -v 2.1.4
|
35
|
+
bundle config path /home/runner/bundle
|
36
|
+
bundle install
|
37
|
+
|
38
|
+
- name: Ruby linter
|
39
|
+
run: bundle exec rubocop
|
@@ -0,0 +1,70 @@
|
|
1
|
+
name: Ruby specs
|
2
|
+
|
3
|
+
on: [push, pull_request]
|
4
|
+
|
5
|
+
jobs:
|
6
|
+
build:
|
7
|
+
name: Ruby specs
|
8
|
+
runs-on: ${{ matrix.os }}
|
9
|
+
continue-on-error: ${{ endsWith(matrix.ruby, 'head') || matrix.ruby == 'debug' || matrix.experimental }}
|
10
|
+
env:
|
11
|
+
BUNDLE_JOBS: 4
|
12
|
+
BUNDLE_RETRY: 3
|
13
|
+
strategy:
|
14
|
+
fail-fast: false
|
15
|
+
matrix:
|
16
|
+
os: [ubuntu-latest]
|
17
|
+
ruby: [
|
18
|
+
2.4,
|
19
|
+
2.5,
|
20
|
+
2.6,
|
21
|
+
2.7
|
22
|
+
]
|
23
|
+
gemfile: [
|
24
|
+
"gemfiles/Gemfile-rails.5.2.x",
|
25
|
+
"gemfiles/Gemfile-rails.6.0.x"
|
26
|
+
]
|
27
|
+
exclude:
|
28
|
+
- ruby: "2.4"
|
29
|
+
gemfile: gemfiles/Gemfile-rails.6.0.x
|
30
|
+
experimental: [false]
|
31
|
+
include:
|
32
|
+
- ruby: head
|
33
|
+
os: ubuntu-latest
|
34
|
+
gemfile: gemfiles/Gemfile-rails.6.0.x
|
35
|
+
experimental: true
|
36
|
+
- ruby: head
|
37
|
+
os: ubuntu-latest
|
38
|
+
gemfile: gemfiles/Gemfile-rails-edge
|
39
|
+
experimental: true
|
40
|
+
- ruby: 2.6
|
41
|
+
os: ubuntu-latest
|
42
|
+
gemfile: gemfiles/Gemfile-rails-edge
|
43
|
+
experimental: true
|
44
|
+
- ruby: 2.7
|
45
|
+
os: ubuntu-latest
|
46
|
+
gemfile: gemfiles/Gemfile-rails-edge
|
47
|
+
experimental: true
|
48
|
+
|
49
|
+
steps:
|
50
|
+
- uses: actions/checkout@v2
|
51
|
+
- uses: actions/cache@v2
|
52
|
+
with:
|
53
|
+
path: /home/runner/bundle
|
54
|
+
key: bundle-use-ruby-${{ matrix.ruby }}-${{ matrix.gemfile }}-gems-${{ hashFiles(matrix.gemfile) }}-${{ hashFiles('**/*.gemspec') }}
|
55
|
+
restore-keys: |
|
56
|
+
bundle-use-ruby-${{ matrix.ruby }}-${{ matrix.gemfile }}-gems-
|
57
|
+
|
58
|
+
- uses: ruby/setup-ruby@v1
|
59
|
+
with:
|
60
|
+
ruby-version: ${{ matrix.ruby }}
|
61
|
+
|
62
|
+
- name: Bundle install
|
63
|
+
run: |
|
64
|
+
gem install bundler -v 2.1.4
|
65
|
+
bundle config path /home/runner/bundle
|
66
|
+
bundle config --global gemfile ${{ matrix.gemfile }}
|
67
|
+
bundle install --jobs 4 --retry 3
|
68
|
+
|
69
|
+
- name: Ruby specs
|
70
|
+
run: bundle exec rake test
|
data/.node-version
CHANGED
@@ -1 +1 @@
|
|
1
|
-
|
1
|
+
10.17.0
|
data/.travis.yml
CHANGED
@@ -2,21 +2,14 @@ language: ruby
|
|
2
2
|
dist: xenial
|
3
3
|
before_install:
|
4
4
|
- gem install rubygems-update && update_rubygems
|
5
|
-
|
6
|
-
# v1.17.3. This is just for Ruby 2.5 which ships with bundler 2.x on Travis
|
7
|
-
# CI while Ruby 2.6 does not.
|
8
|
-
# https://github.com/travis-ci/travis-rubies/issues/57#issuecomment-458981237
|
9
|
-
- yes | rvm @global do gem install bundler -v 1.17.3 || true
|
5
|
+
- yes | rvm @global do gem install bundler -v 2.1.4 || true
|
10
6
|
rvm:
|
11
|
-
- 2.
|
12
|
-
- 2.4.6
|
7
|
+
- 2.4.9
|
13
8
|
- 2.5.5
|
14
|
-
- 2.6.
|
9
|
+
- 2.6.5
|
10
|
+
- 2.7.0
|
15
11
|
- ruby-head
|
16
12
|
gemfile:
|
17
|
-
- gemfiles/Gemfile-rails.4.2.x
|
18
|
-
- gemfiles/Gemfile-rails.5.0.x
|
19
|
-
- gemfiles/Gemfile-rails.5.1.x
|
20
13
|
- gemfiles/Gemfile-rails.5.2.x
|
21
14
|
- gemfiles/Gemfile-rails.6.0.x
|
22
15
|
- gemfiles/Gemfile-rails-edge
|
@@ -28,7 +21,7 @@ cache:
|
|
28
21
|
|
29
22
|
install:
|
30
23
|
- bundle install --jobs 3 --retry 3
|
31
|
-
- nvm install
|
24
|
+
- nvm install 12
|
32
25
|
- node -v
|
33
26
|
- npm i -g yarn
|
34
27
|
- yarn
|
@@ -42,15 +35,9 @@ matrix:
|
|
42
35
|
- gemfile: gemfiles/Gemfile-rails-edge
|
43
36
|
- rvm: ruby-head
|
44
37
|
exclude:
|
45
|
-
- rvm: 2.
|
46
|
-
gemfile: gemfiles/Gemfile-rails-edge
|
47
|
-
- rvm: 2.4.6
|
38
|
+
- rvm: 2.4.9
|
48
39
|
gemfile: gemfiles/Gemfile-rails-edge
|
49
40
|
- rvm: 2.5.5
|
50
41
|
gemfile: gemfiles/Gemfile-rails-edge
|
51
|
-
- rvm:
|
52
|
-
gemfile: gemfiles/Gemfile-rails.4.2.x
|
53
|
-
- rvm: 2.3.8
|
54
|
-
gemfile: gemfiles/Gemfile-rails.6.0.x
|
55
|
-
- rvm: 2.4.6
|
42
|
+
- rvm: 2.4.9
|
56
43
|
gemfile: gemfiles/Gemfile-rails.6.0.x
|
data/CHANGELOG.md
CHANGED
@@ -2,6 +2,42 @@
|
|
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.2.0]](https://github.com/rails/webpacker/compare/v5.1.1...5.2.0) - 2020-08-16
|
6
|
+
|
7
|
+
- Bump dependencies and fixes. See [diff](https://github.com/rails/webpacker/compare/v5.1.1...5-x-stable) for changes.
|
8
|
+
|
9
|
+
## [[5.1.1]](https://github.com/rails/webpacker/compare/v5.1.0...v5.1.1) - 2020-04-20
|
10
|
+
|
11
|
+
- Update [TypeScript documentation](https://github.com/rails/webpacker/blob/master/docs/typescript.md) and installer to use babel-loader for typescript.[(#2541](https://github.com/rails/webpacker/pull/2541)
|
12
|
+
|
13
|
+
## [[5.1.0]](https://github.com/rails/webpacker/compare/v5.0.1...v5.1.0) - 2020-04-19
|
14
|
+
|
15
|
+
- Remove yarn integrity check [#2518](https://github.com/rails/webpacker/pull/2518)
|
16
|
+
- Switch from ts-loader to babel-loader [#2449](https://github.com/rails/webpacker/pull/2449)
|
17
|
+
Please see the [TypeScript documentation](https://github.com/rails/webpacker/blob/master/docs/typescript.md) to upgrade existing projects to use typescript with 5.1
|
18
|
+
- Resolve multi-word snakecase WEBPACKER_DEV_SERVER env values [#2528](https://github.com/rails/webpacker/pull/2528)
|
19
|
+
|
20
|
+
## [[5.0.1]](https://github.com/rails/webpacker/compare/v5.0.0...v5.0.1) - 2020-03-22
|
21
|
+
|
22
|
+
- Upgrade deps and fix sass loader config options bug [#2508](https://github.com/rails/webpacker/pull/2508)
|
23
|
+
|
24
|
+
## [[5.0.0]](https://github.com/rails/webpacker/compare/v4.2.2...v5.0.0) - 2020-03-22
|
25
|
+
|
26
|
+
- Bump minimum node version [#2428](https://github.com/rails/webpacker/pull/2428)
|
27
|
+
- Bump minimum ruby/rails version [#2415](https://github.com/rails/webpacker/pull/2415)
|
28
|
+
- Add support for multiple files per entry [#2476](https://github.com/rails/webpacker/pull/2476)
|
29
|
+
|
30
|
+
```js
|
31
|
+
entry: {
|
32
|
+
home: ['./home.js', './home.scss'],
|
33
|
+
account: ['./account.js', './account.scss']
|
34
|
+
}
|
35
|
+
```
|
36
|
+
|
37
|
+
You can now have two entry files with same names inside packs folder, `home.scss` and `home.js`
|
38
|
+
|
39
|
+
And, other minor fixes, please see a list of changes [here](https://github.com/rails/webpacker/compare/v4.2.2...v5.0.0)
|
40
|
+
|
5
41
|
## [[4.2.2]](https://github.com/rails/webpacker/compare/v4.2.1...v4.2.2) - 2019-12-09
|
6
42
|
|
7
43
|
- Fixed issue with webpack clean task for nested assets [#2391](https://github.com/rails/webpacker/pull/2391)
|
@@ -293,7 +329,7 @@ const { environment } = require('@rails/webpacker')
|
|
293
329
|
// Enable with default config
|
294
330
|
environment.splitChunks()
|
295
331
|
// Configure via a callback
|
296
|
-
environment.splitChunks(config =>
|
332
|
+
environment.splitChunks((config) =>
|
297
333
|
Object.assign({}, config, { optimization: { splitChunks: false } })
|
298
334
|
)
|
299
335
|
```
|
@@ -617,7 +653,9 @@ environment.resolvedModules.append('vendor', 'vendor')
|
|
617
653
|
```js
|
618
654
|
// Enable css modules with sass loader
|
619
655
|
const sassLoader = environment.loaders.get('sass')
|
620
|
-
const cssLoader = sassLoader.use.find(
|
656
|
+
const cssLoader = sassLoader.use.find(
|
657
|
+
(loader) => loader.loader === 'css-loader'
|
658
|
+
)
|
621
659
|
|
622
660
|
cssLoader.options = Object.assign({}, cssLoader.options, {
|
623
661
|
modules: true,
|
data/Gemfile
CHANGED
data/Gemfile.lock
CHANGED
@@ -1,131 +1,132 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
webpacker (
|
5
|
-
activesupport (>=
|
4
|
+
webpacker (5.2.0)
|
5
|
+
activesupport (>= 5.2)
|
6
6
|
rack-proxy (>= 0.6.1)
|
7
|
-
railties (>=
|
7
|
+
railties (>= 5.2)
|
8
|
+
semantic_range (>= 2.3.0)
|
8
9
|
|
9
10
|
GEM
|
10
11
|
remote: https://rubygems.org/
|
11
12
|
specs:
|
12
|
-
actioncable (6.0.
|
13
|
-
actionpack (= 6.0.
|
13
|
+
actioncable (6.0.3.2)
|
14
|
+
actionpack (= 6.0.3.2)
|
14
15
|
nio4r (~> 2.0)
|
15
16
|
websocket-driver (>= 0.6.1)
|
16
|
-
actionmailbox (6.0.
|
17
|
-
actionpack (= 6.0.
|
18
|
-
activejob (= 6.0.
|
19
|
-
activerecord (= 6.0.
|
20
|
-
activestorage (= 6.0.
|
21
|
-
activesupport (= 6.0.
|
17
|
+
actionmailbox (6.0.3.2)
|
18
|
+
actionpack (= 6.0.3.2)
|
19
|
+
activejob (= 6.0.3.2)
|
20
|
+
activerecord (= 6.0.3.2)
|
21
|
+
activestorage (= 6.0.3.2)
|
22
|
+
activesupport (= 6.0.3.2)
|
22
23
|
mail (>= 2.7.1)
|
23
|
-
actionmailer (6.0.
|
24
|
-
actionpack (= 6.0.
|
25
|
-
actionview (= 6.0.
|
26
|
-
activejob (= 6.0.
|
24
|
+
actionmailer (6.0.3.2)
|
25
|
+
actionpack (= 6.0.3.2)
|
26
|
+
actionview (= 6.0.3.2)
|
27
|
+
activejob (= 6.0.3.2)
|
27
28
|
mail (~> 2.5, >= 2.5.4)
|
28
29
|
rails-dom-testing (~> 2.0)
|
29
|
-
actionpack (6.0.
|
30
|
-
actionview (= 6.0.
|
31
|
-
activesupport (= 6.0.
|
32
|
-
rack (~> 2.0)
|
30
|
+
actionpack (6.0.3.2)
|
31
|
+
actionview (= 6.0.3.2)
|
32
|
+
activesupport (= 6.0.3.2)
|
33
|
+
rack (~> 2.0, >= 2.0.8)
|
33
34
|
rack-test (>= 0.6.3)
|
34
35
|
rails-dom-testing (~> 2.0)
|
35
36
|
rails-html-sanitizer (~> 1.0, >= 1.2.0)
|
36
|
-
actiontext (6.0.
|
37
|
-
actionpack (= 6.0.
|
38
|
-
activerecord (= 6.0.
|
39
|
-
activestorage (= 6.0.
|
40
|
-
activesupport (= 6.0.
|
37
|
+
actiontext (6.0.3.2)
|
38
|
+
actionpack (= 6.0.3.2)
|
39
|
+
activerecord (= 6.0.3.2)
|
40
|
+
activestorage (= 6.0.3.2)
|
41
|
+
activesupport (= 6.0.3.2)
|
41
42
|
nokogiri (>= 1.8.5)
|
42
|
-
actionview (6.0.
|
43
|
-
activesupport (= 6.0.
|
43
|
+
actionview (6.0.3.2)
|
44
|
+
activesupport (= 6.0.3.2)
|
44
45
|
builder (~> 3.1)
|
45
46
|
erubi (~> 1.4)
|
46
47
|
rails-dom-testing (~> 2.0)
|
47
48
|
rails-html-sanitizer (~> 1.1, >= 1.2.0)
|
48
|
-
activejob (6.0.
|
49
|
-
activesupport (= 6.0.
|
49
|
+
activejob (6.0.3.2)
|
50
|
+
activesupport (= 6.0.3.2)
|
50
51
|
globalid (>= 0.3.6)
|
51
|
-
activemodel (6.0.
|
52
|
-
activesupport (= 6.0.
|
53
|
-
activerecord (6.0.
|
54
|
-
activemodel (= 6.0.
|
55
|
-
activesupport (= 6.0.
|
56
|
-
activestorage (6.0.
|
57
|
-
actionpack (= 6.0.
|
58
|
-
activejob (= 6.0.
|
59
|
-
activerecord (= 6.0.
|
52
|
+
activemodel (6.0.3.2)
|
53
|
+
activesupport (= 6.0.3.2)
|
54
|
+
activerecord (6.0.3.2)
|
55
|
+
activemodel (= 6.0.3.2)
|
56
|
+
activesupport (= 6.0.3.2)
|
57
|
+
activestorage (6.0.3.2)
|
58
|
+
actionpack (= 6.0.3.2)
|
59
|
+
activejob (= 6.0.3.2)
|
60
|
+
activerecord (= 6.0.3.2)
|
60
61
|
marcel (~> 0.3.1)
|
61
|
-
activesupport (6.0.
|
62
|
+
activesupport (6.0.3.2)
|
62
63
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
63
64
|
i18n (>= 0.7, < 2)
|
64
65
|
minitest (~> 5.1)
|
65
66
|
tzinfo (~> 1.1)
|
66
|
-
zeitwerk (~> 2.2)
|
67
|
-
ast (2.4.
|
68
|
-
builder (3.2.
|
69
|
-
byebug (11.
|
70
|
-
concurrent-ruby (1.1.
|
71
|
-
crass (1.0.
|
67
|
+
zeitwerk (~> 2.2, >= 2.2.2)
|
68
|
+
ast (2.4.1)
|
69
|
+
builder (3.2.4)
|
70
|
+
byebug (11.1.3)
|
71
|
+
concurrent-ruby (1.1.6)
|
72
|
+
crass (1.0.6)
|
72
73
|
erubi (1.9.0)
|
73
74
|
globalid (0.4.2)
|
74
75
|
activesupport (>= 4.2.0)
|
75
|
-
i18n (1.
|
76
|
+
i18n (1.8.5)
|
76
77
|
concurrent-ruby (~> 1.0)
|
77
78
|
jaro_winkler (1.5.4)
|
78
|
-
loofah (2.
|
79
|
+
loofah (2.6.0)
|
79
80
|
crass (~> 1.0.2)
|
80
81
|
nokogiri (>= 1.5.9)
|
81
82
|
mail (2.7.1)
|
82
83
|
mini_mime (>= 0.1.1)
|
83
84
|
marcel (0.3.3)
|
84
85
|
mimemagic (~> 0.3.2)
|
85
|
-
method_source (0.
|
86
|
-
mimemagic (0.3.
|
86
|
+
method_source (1.0.0)
|
87
|
+
mimemagic (0.3.5)
|
87
88
|
mini_mime (1.0.2)
|
88
89
|
mini_portile2 (2.4.0)
|
89
|
-
minitest (5.
|
90
|
+
minitest (5.14.1)
|
90
91
|
nio4r (2.5.2)
|
91
|
-
nokogiri (1.10.
|
92
|
+
nokogiri (1.10.10)
|
92
93
|
mini_portile2 (~> 2.4.0)
|
93
|
-
parallel (1.
|
94
|
-
parser (2.
|
95
|
-
ast (~> 2.4.
|
96
|
-
rack (2.
|
94
|
+
parallel (1.19.2)
|
95
|
+
parser (2.7.1.4)
|
96
|
+
ast (~> 2.4.1)
|
97
|
+
rack (2.2.3)
|
97
98
|
rack-proxy (0.6.5)
|
98
99
|
rack
|
99
100
|
rack-test (1.1.0)
|
100
101
|
rack (>= 1.0, < 3)
|
101
|
-
rails (6.0.
|
102
|
-
actioncable (= 6.0.
|
103
|
-
actionmailbox (= 6.0.
|
104
|
-
actionmailer (= 6.0.
|
105
|
-
actionpack (= 6.0.
|
106
|
-
actiontext (= 6.0.
|
107
|
-
actionview (= 6.0.
|
108
|
-
activejob (= 6.0.
|
109
|
-
activemodel (= 6.0.
|
110
|
-
activerecord (= 6.0.
|
111
|
-
activestorage (= 6.0.
|
112
|
-
activesupport (= 6.0.
|
102
|
+
rails (6.0.3.2)
|
103
|
+
actioncable (= 6.0.3.2)
|
104
|
+
actionmailbox (= 6.0.3.2)
|
105
|
+
actionmailer (= 6.0.3.2)
|
106
|
+
actionpack (= 6.0.3.2)
|
107
|
+
actiontext (= 6.0.3.2)
|
108
|
+
actionview (= 6.0.3.2)
|
109
|
+
activejob (= 6.0.3.2)
|
110
|
+
activemodel (= 6.0.3.2)
|
111
|
+
activerecord (= 6.0.3.2)
|
112
|
+
activestorage (= 6.0.3.2)
|
113
|
+
activesupport (= 6.0.3.2)
|
113
114
|
bundler (>= 1.3.0)
|
114
|
-
railties (= 6.0.
|
115
|
+
railties (= 6.0.3.2)
|
115
116
|
sprockets-rails (>= 2.0.0)
|
116
117
|
rails-dom-testing (2.0.3)
|
117
118
|
activesupport (>= 4.2.0)
|
118
119
|
nokogiri (>= 1.6)
|
119
120
|
rails-html-sanitizer (1.3.0)
|
120
121
|
loofah (~> 2.3)
|
121
|
-
railties (6.0.
|
122
|
-
actionpack (= 6.0.
|
123
|
-
activesupport (= 6.0.
|
122
|
+
railties (6.0.3.2)
|
123
|
+
actionpack (= 6.0.3.2)
|
124
|
+
activesupport (= 6.0.3.2)
|
124
125
|
method_source
|
125
126
|
rake (>= 0.8.7)
|
126
127
|
thor (>= 0.20.3, < 2.0)
|
127
128
|
rainbow (3.0.0)
|
128
|
-
rake (13.0.
|
129
|
+
rake (13.0.1)
|
129
130
|
rubocop (0.68.1)
|
130
131
|
jaro_winkler (~> 1.5.1)
|
131
132
|
parallel (~> 1.10)
|
@@ -136,22 +137,23 @@ GEM
|
|
136
137
|
rubocop-performance (1.3.0)
|
137
138
|
rubocop (>= 0.68.0)
|
138
139
|
ruby-progressbar (1.10.1)
|
139
|
-
|
140
|
+
semantic_range (2.3.0)
|
141
|
+
sprockets (4.0.2)
|
140
142
|
concurrent-ruby (~> 1.0)
|
141
143
|
rack (> 1, < 3)
|
142
144
|
sprockets-rails (3.2.1)
|
143
145
|
actionpack (>= 4.0)
|
144
146
|
activesupport (>= 4.0)
|
145
147
|
sprockets (>= 3.0.0)
|
146
|
-
thor (0.
|
148
|
+
thor (1.0.1)
|
147
149
|
thread_safe (0.3.6)
|
148
|
-
tzinfo (1.2.
|
150
|
+
tzinfo (1.2.7)
|
149
151
|
thread_safe (~> 0.1)
|
150
152
|
unicode-display_width (1.5.0)
|
151
|
-
websocket-driver (0.7.
|
153
|
+
websocket-driver (0.7.3)
|
152
154
|
websocket-extensions (>= 0.1.0)
|
153
|
-
websocket-extensions (0.1.
|
154
|
-
zeitwerk (2.
|
155
|
+
websocket-extensions (0.1.5)
|
156
|
+
zeitwerk (2.4.0)
|
155
157
|
|
156
158
|
PLATFORMS
|
157
159
|
ruby
|
@@ -165,7 +167,8 @@ DEPENDENCIES
|
|
165
167
|
rake (>= 11.1)
|
166
168
|
rubocop (< 0.69)
|
167
169
|
rubocop-performance
|
170
|
+
semantic_range
|
168
171
|
webpacker!
|
169
172
|
|
170
173
|
BUNDLED WITH
|
171
|
-
1.
|
174
|
+
2.1.4
|