Rails 3 Flash Uploader
- by klynch
I am trying to get Uploadify working with Rails 3. However, I can't insert the middleware with the correct arguments.
This is the Rails 2 way:
ActionController::Dispatcher.middleware.insert_before(
ActionController::Session::CookieStore,
FlashSessionCookieMiddleware,
ActionController::Base.session_options[:key]
)
This is what I have so…