heartcombo/responders

private method `render' called

cactus171 opened this issue · 2 comments

image

https://github.com/plataformatec/responders/blob/master/lib/action_controller/responder.rb#L240

i got "private method `render' called" error
Should this be fixed?

I did this for the time being.

controller.send(:render, options)

using
rails6.0.0
responders3.0.0

thank you

Does your controller defines a private method called render for any chance? Rails' render method is public.
Can you provide an example application that reproduce the issue?

I missed a private render in the application code.
sorry. super thank you