Rails 3 Equivalent of ActionController::MiddlewareStack?

Posted by viatropos on Stack Overflow See other posts from Stack Overflow or by viatropos
Published on 2010-05-10T22:57:58Z Indexed on 2010/05/10 23:04 UTC
Read the original article Hit count: 374

Filed under:

What is the rails 3 equivalent of ActionController::MiddlewareStack?

How would I rewrite this for Rails 3?

ActionController::Dispatcher.middleware = ActionController::MiddlewareStack.new do |m|
  ActionController::Dispatcher.middleware.each do |klass|
    m.use klass
  end
  m.use OauthCallbackFilter
end

© Stack Overflow or respective owner

Related posts about ruby-on-rails