-
Notifications
You must be signed in to change notification settings - Fork 1.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix #0d31e72 regression #611
Conversation
Thanks! I'll cut a 0.9.1 shortly. |
Sorry for the bug guys, but I'll try to find a fix for that. Again sorry for the bug. |
@byroot That means your way of disabling controller extensions will not work: A clean disabling of controller extensions would be to create 3 gems : one for serializers, one for controller extensions and another to group them in a single gem if both are needed...lot of work for what seems to be an uncommon need... Have you ever seen another gem disabling some features the way you did ? If you do, maybe we could find the little trick we miss... Another question I have is: why do you need to avoid loading controller extensions ? Just because you don't need them or because they're causing trouble in your project ? The only overloaded method in controller extensions is |
Because they don't play well with our legacy custom responders, and that on a 10 years old application it's not easy to migrate to AMS overnight so we need a transitory solution.
Good point I will investigate that, thanks. |
Ok, please keep us updated with your test. If it succeeds, it would be nice to revert your PR, and update doc with an how-to for disabling controller extensions ! |
Agreed. |
Fix for 0d31e72 regression (see comments on initial commit).