Created
September 12, 2012 03:40
-
-
Save kyanny/3704148 to your computer and use it in GitHub Desktop.
デモアプリ of Sapporo Ruby Kaigi Pre Event in Tokyo
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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