Skip to content

Instantly share code, notes, and snippets.

@kyanny
Created September 12, 2012 03:40
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kyanny/3704148 to your computer and use it in GitHub Desktop.
Save kyanny/3704148 to your computer and use it in GitHub Desktop.
デモアプリ of Sapporo Ruby Kaigi Pre Event in Tokyo
require 'rack'
class App
def call(env)
html = %Q!<html><body style="margin:0"><img src="http://30d.jp/img/kyanny/public/80a57ec4-fc89-11e1-9cd3-00262d09affa_original.jpg" /></body></html>!
[200, {'content-type' => 'text/html'}, [html]]
end
end
run App.new
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment