~michaelforrest/use-case-mapper/trunk

« back to all changes in this revision

Viewing changes to vendor/rails/actionpack/lib/action_controller/middlewares.rb

  • Committer: Richard Lee (Canonical)
  • Date: 2010-10-15 15:17:58 UTC
  • mfrom: (190.1.3 use-case-mapper)
  • Revision ID: richard.lee@canonical.com-20101015151758-wcvmfxrexsongf9d
Merge

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
use "Rack::Lock", :if => lambda {
2
 
  !ActionController::Base.allow_concurrency
3
 
}
4
 
 
5
 
use "ActionController::Failsafe"
6
 
 
7
 
use lambda { ActionController::Base.session_store },
8
 
    lambda { ActionController::Base.session_options }
9
 
 
10
 
use "ActionController::ParamsParser"
11
 
use "Rack::MethodOverride"
12
 
use "Rack::Head"
13
 
 
14
 
use "ActionController::StringCoercion"