[Rails] Re: How does controller call render when there's no render in action

2009-06-07 Thread Vojto
Sweet, so I totally missed perform_action method :) Thanks :) On Jun 6, 3:01 pm, Frederick Cheung wrote: > On Jun 6, 12:17 pm, Vojto wrote: > > > I have a question. > > > "send(method, *arguments)" this calls action of a controller, right? > > not quite - (at least in the common) case, the me

[Rails] Re: How does controller call render when there's no render in action

2009-06-06 Thread Frederick Cheung
On Jun 6, 12:17 pm, Vojto wrote: > I have a question. > > "send(method, *arguments)" this calls action of a controller, right? not quite - (at least in the common) case, the method that gets called is perform_action, which calls default_render if you have not called render. Fred > But if the