You should consider installing this version:
http://github.com/johnsbrn/has_many_polymorphs/tree/master
It fixed this issue for me.
edit: It almost fixed the issue for me.
I found afterwards that migrations broke with previously wrote some misguided information, however, now I've managed to sit down and look at it undisturbed for a similar issue. After looking through codefew minutes, I quickly hacked up an answerfixed my problem by editing my environment.rb, which involved requiring the missing class (action_controller/middleware_stack).
The quick & filthy fix is to edit the file under the relative path:
"johnsbrn-has_many_polymorphs/lib/has_many_polymorphs/autoload.rb"and insert the following line between moving the 1st two require lines:
require 'action_controller/middleware_stack' unless defined? ::ActionController::MiddlewareStack
e.g. It ends up looking like this:
require 'initializer' unless defined? ::Rails::Initializerrequire 'action_controller/middleware_stack' unless defined? ::ActionController::MiddlewareStack
require 'action_controller/dispatcher' unless defined? ::ActionController::Dispatcher
and now things work ok.
EDIT: no they don't any more, and I haven't had a chance has_many_polymorphs' statement to look at it until nowafter the initializer block.When/if
Bingo. I get it fixed (it's probably something simple) i'll edit face-palmed hard, but this messis how we learn..
