mirror of
https://github.com/sinatra/sinatra
synced 2023-03-27 23:18:01 -04:00
7 lines
No EOL
207 B
Ruby
7 lines
No EOL
207 B
Ruby
module DummyApp
|
|
def self.call(env)
|
|
Thread.current[:last_env] = env
|
|
body = (env['REQUEST_METHOD'] == 'HEAD' ? '' : 'ok')
|
|
[200, {'Content-Type' => env['wants'] || 'text/plain'}, [body]]
|
|
end
|
|
end |