Reputation: 479
After upgrading to Rails 6, inherited_resources to 1.14.0 and responders to 3.1.1 I started to get this error after using controller methods from Inherited resources:
NoMethodError - protected method `helpers' called for #<SomeController:0x000000000000>
Did you mean? _helpers
_helpers?
_helpers=
headers:
It happens after calling create! or update! methods.
Upvotes: 0
Views: 16
Reputation: 479
I solved it by downgrading the responders gem version from 3.1.1 to 3.0.1.
Upvotes: 0