Created
February 2, 2012 20:10
-
-
Save codespore/1725485 to your computer and use it in GitHub Desktop.
rake middleware
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $ rake middleware | |
| use ActionDispatch::Static | |
| use Rack::Lock | |
| use ActiveSupport::Cache::Strategy::LocalCache | |
| use Rack::Runtime | |
| use Rails::Rack::Logger | |
| use ActionDispatch::ShowExceptions | |
| use ActionDispatch::RemoteIp | |
| use Rack::Sendfile | |
| use ActionDispatch::Callbacks | |
| use ActiveRecord::ConnectionAdapters::ConnectionManagement | |
| use ActiveRecord::QueryCache | |
| use ActionDispatch::Cookies | |
| use ActionDispatch::Session::CookieStore | |
| use ActionDispatch::Flash | |
| use ActionDispatch::ParamsParser | |
| use Rack::MethodOverride | |
| use ActionDispatch::Head | |
| run SampleRailsApp::Application.routes |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment