Skip to content

Instantly share code, notes, and snippets.

@fantgeass
Created December 2, 2014 17:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fantgeass/e8b4fb4111f3d4016a3c to your computer and use it in GitHub Desktop.
Save fantgeass/e8b4fb4111f3d4016a3c to your computer and use it in GitHub Desktop.
how-to: exceptions in ruby
def last_modified(time)
response[’Last-Modified’] = time
if request.env[’HTTP_IF_MODIFIED_SINCE’] > time
throw :halt, response
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment