Computer: Where am I right now in my rails application?
Posted by Chad Humphries 2 months ago
# This came from 20 minutes of goofing off
before_filter :where_am_i_right_now

def where_am_i_right_now
  %x{say 'processing #{params[:action].humanize} on the #{params[:controller]} controller'}
end
Language Ruby / Tagged with rails, bad