Sha256: 25ff8e350f6e1659c66d42d528dc059dcc564dd94ed788c53012f8711619b207
Contents?: true
Size: 254 Bytes
Versions: 22
Compression:
Stored size: 254 Bytes
Contents
class Servel::HomeApp FAVICON_PATH = "/favicon.ico" def initialize(roots) @roots = roots end def call(env) return [404, {}, []] if env["PATH_INFO"] == FAVICON_PATH Servel::HamlContext.render('home.haml', { roots: @roots }) end end
Version data entries
22 entries across 22 versions & 1 rubygems