webpacker 6.0.0.beta.7 → 6.0.0.pre.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/jest.yml +1 -1
- data/.github/workflows/js-lint.yml +1 -1
- data/.github/workflows/ruby.yml +6 -9
- data/.rubocop.yml +0 -105
- data/CHANGELOG.md +6 -22
- data/CONTRIBUTING.md +1 -1
- data/Gemfile.lock +90 -93
- data/README.md +110 -308
- data/docs/assets.md +135 -0
- data/docs/cloud9.md +310 -0
- data/docs/css.md +303 -0
- data/docs/deployment.md +29 -9
- data/docs/docker.md +68 -0
- data/docs/engines.md +213 -0
- data/docs/env.md +68 -0
- data/docs/es6.md +72 -0
- data/docs/folder-structure.md +66 -0
- data/docs/integrations.md +220 -0
- data/docs/misc.md +23 -0
- data/docs/props.md +187 -0
- data/docs/react.md +183 -0
- data/docs/target.md +22 -0
- data/docs/testing.md +147 -0
- data/docs/troubleshooting.md +3 -5
- data/docs/typescript.md +190 -0
- data/docs/v4-upgrade.md +142 -0
- data/docs/webpack-dev-server.md +94 -0
- data/docs/webpack.md +315 -0
- data/docs/yarn.md +23 -0
- data/lib/install/config/webpacker.yml +3 -5
- data/lib/install/examples/vue3/app.vue +27 -0
- data/lib/install/examples/vue3/hello_vue.js +15 -0
- data/lib/install/javascript/packs/application.css +9 -0
- data/lib/install/{packs/entrypoints → javascript/packs}/application.js +2 -4
- data/lib/install/template.rb +9 -16
- data/lib/tasks/webpacker/binstubs.rake +2 -2
- data/lib/tasks/webpacker/check_node.rake +0 -1
- data/lib/tasks/webpacker/check_yarn.rake +0 -1
- data/lib/tasks/webpacker/install.rake +2 -2
- data/lib/webpacker/commands.rb +1 -2
- data/lib/webpacker/compiler.rb +3 -9
- data/lib/webpacker/configuration.rb +4 -4
- data/lib/webpacker/dev_server_runner.rb +0 -2
- data/lib/webpacker/helper.rb +43 -13
- data/lib/webpacker/manifest.rb +1 -1
- data/lib/webpacker/version.rb +1 -1
- data/lib/webpacker/webpack_runner.rb +0 -1
- data/package.json +1 -1
- data/package/__tests__/development.js +1 -2
- data/package/babel/preset-react.js +62 -0
- data/package/babel/preset.js +13 -24
- data/package/environments/__tests__/base.js +5 -5
- data/package/environments/base.js +20 -15
- data/package/environments/development.js +0 -1
- data/package/environments/production.js +30 -28
- data/package/index.js +2 -7
- data/package/rules/babel.js +1 -1
- data/package/rules/coffee.js +5 -5
- data/package/rules/erb.js +3 -5
- data/package/rules/file.js +3 -5
- data/package/rules/index.js +17 -9
- data/package/rules/less.js +10 -14
- data/package/rules/sass.js +9 -13
- data/package/rules/svg.js +23 -0
- data/package/utils/get_style_rule.js +31 -27
- data/package/utils/helpers.js +0 -25
- data/test/configuration_test.rb +2 -2
- data/test/dev_server_runner_test.rb +2 -10
- data/test/helper_test.rb +39 -33
- data/test/manifest_test.rb +0 -8
- data/test/mounted_app/test/dummy/config/webpacker.yml +3 -3
- data/test/test_app/app/{packs/entrypoints → javascript/packs}/application.js +1 -1
- data/test/test_app/app/{packs/entrypoints → javascript/packs}/multi_entry.css +0 -0
- data/test/test_app/app/{packs/entrypoints → javascript/packs}/multi_entry.js +0 -0
- data/test/test_app/config/webpacker.yml +3 -3
- data/test/test_app/public/packs/manifest.json +0 -7
- metadata +36 -18
- data/config/README.md +0 -3
- data/config/webpacker.yml +0 -1
- data/docs/v6_upgrade.md +0 -86
- data/package/__tests__/index.js +0 -9
- data/package/rules/raw.js +0 -5
- data/package/rules/stylus.js +0 -26
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c5808c11756423a2f910b9aa3675b5d85c94c5cae43a2db1c5c726588bb70cc7
|
4
|
+
data.tar.gz: f1b92f83b8d9f06a136c2df4116144b5a70bf74c7ab5c426fc90900f18f8de6a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c8a10749bc365d1be38d214ab5cedc921ba5dc437193d2f0bf6da18a0e17650a7b35887fd340356de6f5476e388279f58324345685bfe848e2bcb26dfccbaf7a
|
7
|
+
data.tar.gz: 4106137abde49ccda533e7441d0e751f1540a4e175b8f392f486a9eea152083114fabd357db03dd57b9a2a2fe5774563a4cc6f7cf04b78c027b052190bd34d04
|
data/.github/workflows/jest.yml
CHANGED
data/.github/workflows/ruby.yml
CHANGED
@@ -18,8 +18,7 @@ jobs:
|
|
18
18
|
2.4,
|
19
19
|
2.5,
|
20
20
|
2.6,
|
21
|
-
2.7
|
22
|
-
3.0
|
21
|
+
2.7
|
23
22
|
]
|
24
23
|
gemfile: [
|
25
24
|
"gemfiles/Gemfile-rails.5.2.x",
|
@@ -28,23 +27,21 @@ jobs:
|
|
28
27
|
exclude:
|
29
28
|
- ruby: "2.4"
|
30
29
|
gemfile: gemfiles/Gemfile-rails.6.0.x
|
31
|
-
- ruby: "3.0"
|
32
|
-
gemfile: gemfiles/Gemfile-rails.5.2.x
|
33
30
|
experimental: [false]
|
34
31
|
include:
|
35
|
-
- ruby:
|
32
|
+
- ruby: head
|
36
33
|
os: ubuntu-latest
|
37
|
-
gemfile: gemfiles/Gemfile-rails
|
34
|
+
gemfile: gemfiles/Gemfile-rails.6.0.x
|
38
35
|
experimental: true
|
39
|
-
- ruby:
|
36
|
+
- ruby: head
|
40
37
|
os: ubuntu-latest
|
41
38
|
gemfile: gemfiles/Gemfile-rails-edge
|
42
39
|
experimental: true
|
43
|
-
- ruby: 2.
|
40
|
+
- ruby: 2.6
|
44
41
|
os: ubuntu-latest
|
45
42
|
gemfile: gemfiles/Gemfile-rails-edge
|
46
43
|
experimental: true
|
47
|
-
- ruby:
|
44
|
+
- ruby: 2.7
|
48
45
|
os: ubuntu-latest
|
49
46
|
gemfile: gemfiles/Gemfile-rails-edge
|
50
47
|
experimental: true
|
data/.rubocop.yml
CHANGED
@@ -118,108 +118,3 @@ Layout/EndAlignment:
|
|
118
118
|
# Use my_method(my_arg) not my_method( my_arg ) or my_method my_arg.
|
119
119
|
Lint/RequireParentheses:
|
120
120
|
Enabled: true
|
121
|
-
|
122
|
-
# Use `bind_call(obj, args, ...)` instead of `bind(obj).call(args, ...)`.
|
123
|
-
Performance/BindCall:
|
124
|
-
Enabled: true
|
125
|
-
|
126
|
-
# Use `caller(n..n)` instead of `caller`.
|
127
|
-
Performance/Caller:
|
128
|
-
Enabled: true
|
129
|
-
|
130
|
-
# Use `casecmp` for case comparison.
|
131
|
-
Performance/Casecmp:
|
132
|
-
Enabled: true
|
133
|
-
|
134
|
-
# Extract Array and Hash literals outside of loops into local variables or constants.
|
135
|
-
Performance/CollectionLiteralInLoop:
|
136
|
-
Enabled: true
|
137
|
-
|
138
|
-
# Prefer `sort_by(&:foo)` instead of `sort { |a, b| a.foo <=> b.foo }`.
|
139
|
-
Performance/CompareWithBlock:
|
140
|
-
Enabled: true
|
141
|
-
|
142
|
-
# Use `count` instead of `{select,find_all,filter,reject}...{size,count,length}`.
|
143
|
-
Performance/Count:
|
144
|
-
Enabled: true
|
145
|
-
|
146
|
-
# Use `delete_prefix` instead of `gsub`.
|
147
|
-
Performance/DeletePrefix:
|
148
|
-
Enabled: true
|
149
|
-
|
150
|
-
# Use `delete_suffix` instead of `gsub`.
|
151
|
-
Performance/DeleteSuffix:
|
152
|
-
Enabled: true
|
153
|
-
|
154
|
-
# Use `detect` instead of `select.first`, `find_all.first`, `filter.first`, `select.last`, `find_all.last`, and `filter.last`.
|
155
|
-
Performance/Detect:
|
156
|
-
Enabled: true
|
157
|
-
|
158
|
-
# Use `str.{start,end}_with?(x, ..., y, ...)` instead of `str.{start,end}_with?(x, ...) || str.{start,end}_with?(y, ...)`.
|
159
|
-
Performance/DoubleStartEndWith:
|
160
|
-
Enabled: true
|
161
|
-
|
162
|
-
# Use `end_with?` instead of a regex match anchored to the end of a string.
|
163
|
-
Performance/EndWith:
|
164
|
-
Enabled: true
|
165
|
-
|
166
|
-
# Do not compute the size of statically sized objects except in constants.
|
167
|
-
Performance/FixedSize:
|
168
|
-
Enabled: true
|
169
|
-
|
170
|
-
# Use `Enumerable#flat_map` instead of `Enumerable#map...Array#flatten(1).
|
171
|
-
Performance/FlatMap:
|
172
|
-
Enabled: true
|
173
|
-
|
174
|
-
# Use `key?` or `value?` instead of `keys.include?` or `values.include?`.
|
175
|
-
Performance/InefficientHashSearch:
|
176
|
-
Enabled: true
|
177
|
-
|
178
|
-
# Use `Range#cover?` instead of `Range#include?` (or `Range#member?`).
|
179
|
-
Performance/RangeInclude:
|
180
|
-
Enabled: true
|
181
|
-
|
182
|
-
# Use `yield` instead of `block.call`.
|
183
|
-
Performance/RedundantBlockCall:
|
184
|
-
Enabled: true
|
185
|
-
|
186
|
-
# Use `=~` instead of `String#match` or `Regexp#match` in a context where the returned `MatchData` is not needed.
|
187
|
-
Performance/RedundantMatch:
|
188
|
-
Enabled: true
|
189
|
-
|
190
|
-
# Use Hash#[]=, rather than Hash#merge! with a single key-value pair.
|
191
|
-
Performance/RedundantMerge:
|
192
|
-
Enabled: true
|
193
|
-
|
194
|
-
# Use `match?` instead of `Regexp#match`, `String#match`, `Symbol#match`, `Regexp#===`, or `=~` when `MatchData` is not used.
|
195
|
-
Performance/RegexpMatch:
|
196
|
-
Enabled: true
|
197
|
-
|
198
|
-
# Use `reverse_each` instead of `reverse.each`.
|
199
|
-
Performance/ReverseEach:
|
200
|
-
Enabled: true
|
201
|
-
|
202
|
-
# Use `size` instead of `count` for counting the number of elements in `Array` and `Hash`.
|
203
|
-
Performance/Size:
|
204
|
-
Enabled: true
|
205
|
-
|
206
|
-
# Use `start_with?` instead of a regex match anchored to the beginning of a string.
|
207
|
-
Performance/StartWith:
|
208
|
-
Enabled: true
|
209
|
-
|
210
|
-
# Use `tr` instead of `gsub` when you are replacing the same number of characters.
|
211
|
-
# Use `delete` instead of `gsub` when you are deleting characters.
|
212
|
-
Performance/StringReplacement:
|
213
|
-
Enabled: true
|
214
|
-
|
215
|
-
# Checks for .times.map calls.
|
216
|
-
Performance/TimesMap:
|
217
|
-
Enabled: true
|
218
|
-
|
219
|
-
# Use unary plus to get an unfrozen string literal.
|
220
|
-
Performance/UnfreezeString:
|
221
|
-
Enabled: true
|
222
|
-
|
223
|
-
# Use `URI::DEFAULT_PARSER` instead of `URI::Parser.new`.
|
224
|
-
Performance/UriDefaultParser:
|
225
|
-
Enabled: true
|
data/CHANGELOG.md
CHANGED
@@ -2,33 +2,19 @@
|
|
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
|
-
## [[6.0.0]](https://github.com/rails/webpacker/compare/v5.1.1...
|
6
|
-
|
7
|
-
Please see [UPGRADE GUIDE](./docs/v6_upgrade.md) for more informations.
|
5
|
+
## [[6.0.0]](https://github.com/rails/webpacker/compare/v5.1.1...v6.0.0) - 2020-TBD
|
8
6
|
|
9
7
|
- `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
8
|
```js
|
12
9
|
const nodeModules = require('@rails/webpacker/rules/node_modules.js')
|
13
10
|
environment.loaders.append('nodeModules', nodeModules)
|
14
11
|
```
|
15
|
-
|
16
12
|
- 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
|
-
- The install task will now set the `extract_css` default to `true` in all environments and generate a separate `application.css` file for the default `application` pack, as supported by multiple files per entry introduced in 5.0.0.
|
13
|
+
- The install task will now set the `extract_css` default to `true` in all environments and 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)
|
18
14
|
- 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
15
|
- Changes `@babel/preset-env` modules option to `'auto'` per recommendation in the Babel docs [#2709](https://github.com/rails/webpacker/pull/2709)
|
20
16
|
- Adds experimental Yarn 2 support. Note you must manually set `nodeLinker: node-modules` in your `.yarnrc.yml`.
|
21
17
|
|
22
|
-
- Fixes dev server issues [#2898](https://github.com/rails/webpacker/pull/2898)
|
23
|
-
|
24
|
-
### Breaking changes
|
25
|
-
|
26
|
-
- Simple webpack config
|
27
|
-
- Removed integration installers
|
28
|
-
- Splitchunks enabled by default
|
29
|
-
- CSS extraction enabled by default
|
30
|
-
- Optional CSS support
|
31
|
-
|
32
18
|
## [[5.2.1]](https://github.com/rails/webpacker/compare/v5.2.0...5.2.1) - 2020-08-17
|
33
19
|
|
34
20
|
- Revert [#1311](https://github.com/rails/webpacker/pull/1311).
|
@@ -360,7 +346,7 @@ const { environment } = require('@rails/webpacker')
|
|
360
346
|
// Enable with default config
|
361
347
|
environment.splitChunks()
|
362
348
|
// Configure via a callback
|
363
|
-
environment.splitChunks(
|
349
|
+
environment.splitChunks(config =>
|
364
350
|
Object.assign({}, config, { optimization: { splitChunks: false } })
|
365
351
|
)
|
366
352
|
```
|
@@ -684,9 +670,7 @@ environment.resolvedModules.append('vendor', 'vendor')
|
|
684
670
|
```js
|
685
671
|
// Enable css modules with sass loader
|
686
672
|
const sassLoader = environment.loaders.get('sass')
|
687
|
-
const cssLoader = sassLoader.use.find(
|
688
|
-
(loader) => loader.loader === 'css-loader'
|
689
|
-
)
|
673
|
+
const cssLoader = sassLoader.use.find(loader => loader.loader === 'css-loader')
|
690
674
|
|
691
675
|
cssLoader.options = Object.assign({}, cssLoader.options, {
|
692
676
|
modules: true,
|
@@ -806,11 +790,11 @@ yarn add coffeescript
|
|
806
790
|
|
807
791
|
### Added
|
808
792
|
|
809
|
-
- `resolved_paths` option to allow adding additional paths webpack should
|
793
|
+
- `resolved_paths` option to allow adding additional paths webpack should lookup when resolving modules
|
810
794
|
|
811
795
|
```yml
|
812
796
|
# config/webpacker.yml
|
813
|
-
# Additional paths webpack should
|
797
|
+
# Additional paths webpack should lookup modules
|
814
798
|
resolved_paths: [] # empty by default
|
815
799
|
```
|
816
800
|
|
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 (6.0.0.
|
4
|
+
webpacker (6.0.0.pre.1)
|
5
5
|
activesupport (>= 5.2)
|
6
6
|
rack-proxy (>= 0.6.1)
|
7
7
|
railties (>= 5.2)
|
@@ -10,128 +10,124 @@ PATH
|
|
10
10
|
GEM
|
11
11
|
remote: https://rubygems.org/
|
12
12
|
specs:
|
13
|
-
actioncable (6.
|
14
|
-
actionpack (= 6.
|
15
|
-
activesupport (= 6.1.3.1)
|
13
|
+
actioncable (6.0.3.2)
|
14
|
+
actionpack (= 6.0.3.2)
|
16
15
|
nio4r (~> 2.0)
|
17
16
|
websocket-driver (>= 0.6.1)
|
18
|
-
actionmailbox (6.
|
19
|
-
actionpack (= 6.
|
20
|
-
activejob (= 6.
|
21
|
-
activerecord (= 6.
|
22
|
-
activestorage (= 6.
|
23
|
-
activesupport (= 6.
|
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)
|
24
23
|
mail (>= 2.7.1)
|
25
|
-
actionmailer (6.
|
26
|
-
actionpack (= 6.
|
27
|
-
actionview (= 6.
|
28
|
-
activejob (= 6.
|
29
|
-
activesupport (= 6.1.3.1)
|
24
|
+
actionmailer (6.0.3.2)
|
25
|
+
actionpack (= 6.0.3.2)
|
26
|
+
actionview (= 6.0.3.2)
|
27
|
+
activejob (= 6.0.3.2)
|
30
28
|
mail (~> 2.5, >= 2.5.4)
|
31
29
|
rails-dom-testing (~> 2.0)
|
32
|
-
actionpack (6.
|
33
|
-
actionview (= 6.
|
34
|
-
activesupport (= 6.
|
35
|
-
rack (~> 2.0, >= 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)
|
36
34
|
rack-test (>= 0.6.3)
|
37
35
|
rails-dom-testing (~> 2.0)
|
38
36
|
rails-html-sanitizer (~> 1.0, >= 1.2.0)
|
39
|
-
actiontext (6.
|
40
|
-
actionpack (= 6.
|
41
|
-
activerecord (= 6.
|
42
|
-
activestorage (= 6.
|
43
|
-
activesupport (= 6.
|
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)
|
44
42
|
nokogiri (>= 1.8.5)
|
45
|
-
actionview (6.
|
46
|
-
activesupport (= 6.
|
43
|
+
actionview (6.0.3.2)
|
44
|
+
activesupport (= 6.0.3.2)
|
47
45
|
builder (~> 3.1)
|
48
46
|
erubi (~> 1.4)
|
49
47
|
rails-dom-testing (~> 2.0)
|
50
48
|
rails-html-sanitizer (~> 1.1, >= 1.2.0)
|
51
|
-
activejob (6.
|
52
|
-
activesupport (= 6.
|
49
|
+
activejob (6.0.3.2)
|
50
|
+
activesupport (= 6.0.3.2)
|
53
51
|
globalid (>= 0.3.6)
|
54
|
-
activemodel (6.
|
55
|
-
activesupport (= 6.
|
56
|
-
activerecord (6.
|
57
|
-
activemodel (= 6.
|
58
|
-
activesupport (= 6.
|
59
|
-
activestorage (6.
|
60
|
-
actionpack (= 6.
|
61
|
-
activejob (= 6.
|
62
|
-
activerecord (= 6.
|
63
|
-
|
64
|
-
|
65
|
-
mini_mime (~> 1.0.2)
|
66
|
-
activesupport (6.1.3.1)
|
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)
|
61
|
+
marcel (~> 0.3.1)
|
62
|
+
activesupport (6.0.3.2)
|
67
63
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
68
|
-
i18n (>=
|
69
|
-
minitest (
|
70
|
-
tzinfo (~>
|
71
|
-
zeitwerk (~> 2.
|
72
|
-
ast (2.4.
|
64
|
+
i18n (>= 0.7, < 2)
|
65
|
+
minitest (~> 5.1)
|
66
|
+
tzinfo (~> 1.1)
|
67
|
+
zeitwerk (~> 2.2, >= 2.2.2)
|
68
|
+
ast (2.4.1)
|
73
69
|
builder (3.2.4)
|
74
70
|
byebug (11.1.3)
|
75
|
-
concurrent-ruby (1.1.
|
71
|
+
concurrent-ruby (1.1.6)
|
76
72
|
crass (1.0.6)
|
77
|
-
erubi (1.
|
73
|
+
erubi (1.9.0)
|
78
74
|
globalid (0.4.2)
|
79
75
|
activesupport (>= 4.2.0)
|
80
|
-
i18n (1.8.
|
76
|
+
i18n (1.8.5)
|
81
77
|
concurrent-ruby (~> 1.0)
|
82
|
-
loofah (2.
|
78
|
+
loofah (2.6.0)
|
83
79
|
crass (~> 1.0.2)
|
84
80
|
nokogiri (>= 1.5.9)
|
85
81
|
mail (2.7.1)
|
86
82
|
mini_mime (>= 0.1.1)
|
87
|
-
marcel (
|
83
|
+
marcel (0.3.3)
|
84
|
+
mimemagic (~> 0.3.2)
|
88
85
|
method_source (1.0.0)
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
parallel (1.
|
97
|
-
parser (
|
86
|
+
mimemagic (0.3.5)
|
87
|
+
mini_mime (1.0.2)
|
88
|
+
mini_portile2 (2.4.0)
|
89
|
+
minitest (5.14.1)
|
90
|
+
nio4r (2.5.2)
|
91
|
+
nokogiri (1.10.10)
|
92
|
+
mini_portile2 (~> 2.4.0)
|
93
|
+
parallel (1.19.2)
|
94
|
+
parser (2.7.2.0)
|
98
95
|
ast (~> 2.4.1)
|
99
|
-
racc (1.5.2)
|
100
96
|
rack (2.2.3)
|
101
97
|
rack-proxy (0.6.5)
|
102
98
|
rack
|
103
99
|
rack-test (1.1.0)
|
104
100
|
rack (>= 1.0, < 3)
|
105
|
-
rails (6.
|
106
|
-
actioncable (= 6.
|
107
|
-
actionmailbox (= 6.
|
108
|
-
actionmailer (= 6.
|
109
|
-
actionpack (= 6.
|
110
|
-
actiontext (= 6.
|
111
|
-
actionview (= 6.
|
112
|
-
activejob (= 6.
|
113
|
-
activemodel (= 6.
|
114
|
-
activerecord (= 6.
|
115
|
-
activestorage (= 6.
|
116
|
-
activesupport (= 6.
|
117
|
-
bundler (>= 1.
|
118
|
-
railties (= 6.
|
101
|
+
rails (6.0.3.2)
|
102
|
+
actioncable (= 6.0.3.2)
|
103
|
+
actionmailbox (= 6.0.3.2)
|
104
|
+
actionmailer (= 6.0.3.2)
|
105
|
+
actionpack (= 6.0.3.2)
|
106
|
+
actiontext (= 6.0.3.2)
|
107
|
+
actionview (= 6.0.3.2)
|
108
|
+
activejob (= 6.0.3.2)
|
109
|
+
activemodel (= 6.0.3.2)
|
110
|
+
activerecord (= 6.0.3.2)
|
111
|
+
activestorage (= 6.0.3.2)
|
112
|
+
activesupport (= 6.0.3.2)
|
113
|
+
bundler (>= 1.3.0)
|
114
|
+
railties (= 6.0.3.2)
|
119
115
|
sprockets-rails (>= 2.0.0)
|
120
116
|
rails-dom-testing (2.0.3)
|
121
117
|
activesupport (>= 4.2.0)
|
122
118
|
nokogiri (>= 1.6)
|
123
119
|
rails-html-sanitizer (1.3.0)
|
124
120
|
loofah (~> 2.3)
|
125
|
-
railties (6.
|
126
|
-
actionpack (= 6.
|
127
|
-
activesupport (= 6.
|
121
|
+
railties (6.0.3.2)
|
122
|
+
actionpack (= 6.0.3.2)
|
123
|
+
activesupport (= 6.0.3.2)
|
128
124
|
method_source
|
129
125
|
rake (>= 0.8.7)
|
130
|
-
thor (
|
126
|
+
thor (>= 0.20.3, < 2.0)
|
131
127
|
rainbow (3.0.0)
|
132
|
-
rake (13.0.
|
133
|
-
regexp_parser (
|
134
|
-
rexml (3.2.
|
128
|
+
rake (13.0.1)
|
129
|
+
regexp_parser (1.8.2)
|
130
|
+
rexml (3.2.4)
|
135
131
|
rubocop (0.93.1)
|
136
132
|
parallel (~> 1.10)
|
137
133
|
parser (>= 2.7.1.5)
|
@@ -141,28 +137,29 @@ GEM
|
|
141
137
|
rubocop-ast (>= 0.6.0)
|
142
138
|
ruby-progressbar (~> 1.7)
|
143
139
|
unicode-display_width (>= 1.4.0, < 2.0)
|
144
|
-
rubocop-ast (
|
140
|
+
rubocop-ast (0.8.0)
|
145
141
|
parser (>= 2.7.1.5)
|
146
|
-
rubocop-performance (1.
|
147
|
-
rubocop (>= 0.
|
142
|
+
rubocop-performance (1.8.1)
|
143
|
+
rubocop (>= 0.87.0)
|
148
144
|
rubocop-ast (>= 0.4.0)
|
149
|
-
ruby-progressbar (1.
|
150
|
-
semantic_range (3.0
|
145
|
+
ruby-progressbar (1.10.1)
|
146
|
+
semantic_range (2.3.0)
|
151
147
|
sprockets (4.0.2)
|
152
148
|
concurrent-ruby (~> 1.0)
|
153
149
|
rack (> 1, < 3)
|
154
|
-
sprockets-rails (3.2.
|
150
|
+
sprockets-rails (3.2.1)
|
155
151
|
actionpack (>= 4.0)
|
156
152
|
activesupport (>= 4.0)
|
157
153
|
sprockets (>= 3.0.0)
|
158
|
-
thor (1.1
|
159
|
-
|
160
|
-
|
154
|
+
thor (1.0.1)
|
155
|
+
thread_safe (0.3.6)
|
156
|
+
tzinfo (1.2.7)
|
157
|
+
thread_safe (~> 0.1)
|
161
158
|
unicode-display_width (1.7.0)
|
162
159
|
websocket-driver (0.7.3)
|
163
160
|
websocket-extensions (>= 0.1.0)
|
164
161
|
websocket-extensions (0.1.5)
|
165
|
-
zeitwerk (2.4.
|
162
|
+
zeitwerk (2.4.0)
|
166
163
|
|
167
164
|
PLATFORMS
|
168
165
|
ruby
|
@@ -180,4 +177,4 @@ DEPENDENCIES
|
|
180
177
|
webpacker!
|
181
178
|
|
182
179
|
BUNDLED WITH
|
183
|
-
2.
|
180
|
+
2.1.4
|