Sha256: cbc582517bb9aa69456accb985533207d4ba1d1c8f0bb70ae72ddba0a3e0e8e1
Contents?: true
Size: 390 Bytes
Versions: 30
Compression:
Stored size: 390 Bytes
Contents
module Locomotive::Steam module Middlewares class Favicon attr_accessor_initialize :app include Helpers def call(env) if env['PATH_INFO'] == '/favicon.ico' # Default and empty Favicon rendered [200, { 'Content-Type' => 'image/vnd.microsoft.icon' }, ['']] else app.call(env) end end end end end
Version data entries
30 entries across 30 versions & 1 rubygems