diff options
author | Vipul A M <vipulnsward@gmail.com> | 2016-05-16 01:47:32 +0530 |
---|---|---|
committer | Vipul A M <vipulnsward@gmail.com> | 2016-05-16 01:47:32 +0530 |
commit | 8a00a8c8e124a83cf9564e9b3f9683cf01556e04 (patch) | |
tree | 8e50d21083631d9c56c5e12ebbd4cb9066ccf29a /guides/source | |
parent | 97877e1a23e10a2d134241a3f7a00a0652e966e0 (diff) | |
download | rails-8a00a8c8e124a83cf9564e9b3f9683cf01556e04.tar.gz rails-8a00a8c8e124a83cf9564e9b3f9683cf01556e04.tar.bz2 rails-8a00a8c8e124a83cf9564e9b3f9683cf01556e04.zip |
Change output genereated for middlewares on a new application. This has changed quite a bit after Executor middleware addition.
[ci skip]
Diffstat (limited to 'guides/source')
-rw-r--r-- | guides/source/rails_on_rack.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/guides/source/rails_on_rack.md b/guides/source/rails_on_rack.md index d67702f52e..0098b25c62 100644 --- a/guides/source/rails_on_rack.md +++ b/guides/source/rails_on_rack.md @@ -105,25 +105,25 @@ For a freshly generated Rails application, this might produce something like: use Rack::Sendfile use ActionDispatch::Static use ActionDispatch::Executor -use #<ActiveSupport::Cache::Strategy::LocalCache::Middleware:0x000000029a0838> +use ActiveSupport::Cache::Strategy::LocalCache::Middleware use Rack::Runtime use Rack::MethodOverride use ActionDispatch::RequestId use Rails::Rack::Logger use ActionDispatch::ShowExceptions +use WebConsole::Middleware use ActionDispatch::DebugExceptions use ActionDispatch::RemoteIp use ActionDispatch::Reloader use ActionDispatch::Callbacks use ActiveRecord::Migration::CheckPending -use ActiveRecord::ConnectionAdapters::ConnectionManagement -use ActiveRecord::QueryCache use ActionDispatch::Cookies use ActionDispatch::Session::CookieStore use ActionDispatch::Flash use Rack::Head use Rack::ConditionalGet use Rack::ETag +use ActionView::Digestor::PerRequestDigestCacheExpiry run Rails.application.routes ``` |