On 1 November 2012 06:04, Fahim Patel <[email protected]> wrote: > > Hi all, > > 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. Colin -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.

