|
|
Question : Problems when rendering ruby on rails template from a cron job
|
|
Hi,
I am trying to use a cron job to render and mail pdf files on a daily basis. Problem is that this code doesn't compile and render the template; it just passes the embedded ruby code on as text.
app = ActionView::Base.new app.controller = ActionController::Base.new data = app.render_template('rhtml', "path_to_template/template.rhtml") pdf << data
Reason that I use render_template is that render_to_string, which I originally used, is a protected method... and if I try to bypass that with send or instance_eval, I get a null pointer exception.
Cheers /Markus
|
Answer : Problems when rendering ruby on rails template from a cron job
|
|
:locals => {:@datestr => @datestr, :@report_day => report_day}
I could be wrong but AFAIK, this should not work. ":locals =>" only sets local variables, not instance variables. Instead, you should simply assign "@report_day = report_day" within the controller before making the render call and remove the :locals option from your render. ActionView will pick up the instance variables appropriately.
|
|
|
|
|