9. Rack実装
class App
def call(env)
case env[‘REQUEST_METHOD’]
when ‘GET’
[
200,
{ ‘Content-Type’ => ‘text/html’ },
[‘<html><head></head><body>hello</body></html>]
]
end
end
end
引数を1つ持つ
callメソッドを実装
•ステータスコード
•レスポンスヘッダ(Hash)
•レスポンスボディ(Array)
を返す
13年8月19日月曜日