show/hide this revision's text 5 deleted 858 characters in body

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..

show/hide this revision's text 4 added 163 characters in body

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 a similar issue. After looking through code, I quickly hacked up an answer, 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 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::Initializer

require '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 to look at it until now. When/if I get it fixed (it's probably something simple) i'll edit this mess.

show/hide this revision's text 3 added 52 characters in body

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 a similar issue. After looking through code, I quickly hacked up an answer, 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 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::Initializer

require 'action_controller/middleware_stack' unless defined? ::ActionController::MiddlewareStack

require 'action_controller/dispatcher' unless defined? ::ActionController::Dispatcher

and now things work ok.

show/hide this revision's text 2 added 6 characters in body
show/hide this revision's text 1