mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Merge pull request #30340 from yhirano55/update_autoloading_and_reloading_constants
Update Autoloading and Reloading Constants guide [ci skip]
This commit is contained in:
commit
79a046f465
1 changed files with 10 additions and 1 deletions
|
@ -475,12 +475,21 @@ it is (edited):
|
||||||
```
|
```
|
||||||
$ bin/rails r 'puts ActiveSupport::Dependencies.autoload_paths'
|
$ bin/rails r 'puts ActiveSupport::Dependencies.autoload_paths'
|
||||||
.../app/assets
|
.../app/assets
|
||||||
|
.../app/channels
|
||||||
.../app/controllers
|
.../app/controllers
|
||||||
|
.../app/controllers/concerns
|
||||||
.../app/helpers
|
.../app/helpers
|
||||||
|
.../app/jobs
|
||||||
.../app/mailers
|
.../app/mailers
|
||||||
.../app/models
|
.../app/models
|
||||||
.../app/controllers/concerns
|
|
||||||
.../app/models/concerns
|
.../app/models/concerns
|
||||||
|
.../activestorage/app/assets
|
||||||
|
.../activestorage/app/controllers
|
||||||
|
.../activestorage/app/javascript
|
||||||
|
.../activestorage/app/jobs
|
||||||
|
.../activestorage/app/models
|
||||||
|
.../actioncable/app/assets
|
||||||
|
.../actionview/app/assets
|
||||||
.../test/mailers/previews
|
.../test/mailers/previews
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue