Go to Google Groups Home    Melbourne Ruby User Group
Re: Change in ActionController's filter API (cross-posted to Oceania list)

Ryan Allen <r...@yeahnah.org>

>   def stop_nasty_buggers
>     halt(404)
>   end

Sorry, make that:

def stop_nasty_buggers
  head(404)
end

Ryan.