Sha256: 19711a8e9e50ce6d84b5d3bfa1bbaf44715cb73a8ee745d519ce5d3235c2d4e6
Contents?: true
Size: 289 Bytes
Versions: 22
Compression:
Stored size: 289 Bytes
Contents
module Locomotive::Wagon class Server class Favicon < Middleware def call(env) if env['PATH_INFO'] == '/favicon.ico' [200, { 'Content-Type' => 'image/vnd.microsoft.icon' }, ['']] else app.call(env) end end end end end
Version data entries
22 entries across 22 versions & 1 rubygems