I''m trying to shell out (with the `` method, to call wget) from within
an action. It looks something like this:
def prepare_project
@project = Project.find_by_id(params[:id])
logger.info("Exporting project...")
`wget blah blah`
`zip blah blah`
flash[:notice] = "Exported project successfully."
redirect_to :action => ''export_project'', :id =>
@project.id
end
The app hits this method and does indeed end up on export_project,
rendering that view... but it never seems to do the wget or zip stuff,
or even log! Can anyone please point me toward a solution?