I have run my controller methods from console, but now i learn about rails
runner .
i execute model method successful , but i wish to run my controller method
using rails runner.
Q Is this possible to run controller method from rails runner ?
I don’t believe this is possible, and don’t see any reason to want to
do it. If you have methods there that you want to call from a runner
the methods should probably either be in the models or in separate
modules. Extract those methods from the controller and then you can
call them either from the controller or from the runner.