1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Update The Rails Initialization Process of guide [ci skip]

This commit is contained in:
Yoshiyuki Hirano 2017-08-20 09:41:37 +09:00
parent 0e7a5661dc
commit 0027629cf6

View file

@ -99,13 +99,15 @@ configure the load path for your Gemfile's dependencies.
A standard Rails application depends on several gems, specifically:
* actioncable
* actionmailer
* actionpack
* actionview
* activejob
* activemodel
* activerecord
* activestorage
* activesupport
* activejob
* arel
* builder
* bundler
@ -131,7 +133,7 @@ Once `config/boot.rb` has finished, the next file that is required is
`ARGV` array simply contains `server` which will be passed over:
```ruby
require "rails/command"
require_relative "command"
aliases = {
"g" => "generate",
@ -537,6 +539,7 @@ require "rails"
action_mailer/railtie
active_job/railtie
action_cable/engine
active_storage/engine
rails/test_unit/railtie
sprockets/railtie
).each do |railtie|