Sha256: 3dd39d7f3ffb8f10f97b87a574b2ccc9194c234843176fff1311a3fc9a3bf4b6
Contents?: true
Size: 606 Bytes
Versions: 20
Compression:
Stored size: 606 Bytes
Contents
# =========================================================================== # Project: Abbot - SproutCore Build Tools # Copyright: ©2009 Apple Inc. # portions copyright @2006-2011 Strobe Inc. # and contributors # =========================================================================== module SC module Rack # Rewrites relevant requests to load the SproutCore docs tools for a # given project. class Docs def initialize(project) @project = project end def call(env) return [404, {}, "not found"] end end end end
Version data entries
20 entries across 20 versions & 1 rubygems