mirror of https://github.com/rails/rails
Fixed markup error.
This commit is contained in:
parent
317ad8cb62
commit
7b22b01930
|
@ -454,7 +454,7 @@ app = eval "Rack::Builder.new {( " + cfgfile + "\n )}.to_app",
|
|||
TOPLEVEL_BINDING, config
|
||||
</ruby>
|
||||
|
||||
The <ruby>initialize</ruby> method will take the block here and execute it within an instance of +Rack::Builder+. This is where the majority of the initialization process of Rails happens. The chain of events that this simple line sets off will be the focus of a large majority of this guide. The +require+ line for +config/environment.rb+ in +config.ru+ is the first to run:
|
||||
The +initialize+ method will take the block here and execute it within an instance of +Rack::Builder+. This is where the majority of the initialization process of Rails happens. The chain of events that this simple line sets off will be the focus of a large majority of this guide. The +require+ line for +config/environment.rb+ in +config.ru+ is the first to run:
|
||||
|
||||
<ruby>
|
||||
require ::File.expand_path('../config/environment', __FILE__)
|
||||
|
|
Loading…
Reference in New Issue