Skip to content

Instantly share code, notes, and snippets.

@benlovell
Created August 30, 2009 18:04
Show Gist options
  • Save benlovell/178063 to your computer and use it in GitHub Desktop.
Save benlovell/178063 to your computer and use it in GitHub Desktop.
require 'rubygems'
require 'sinatra'
require 'sinatra/captcha'
require 'erb'
get '/' do
erb :captcha
end
post '/' do
halt(401, "invalid captcha") unless captcha_pass?
"passed!"
end
__END__
@@ captcha
and view/captcha.erb:
-------------------------
<%= captcha_image_tag %>
<%= captcha_answer_tag %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment