Sha256: 6910fac0bb57695ce11a64c191dfc2383b6144a3500e3e016e504b8272d6bf9d
Contents?: true
Size: 627 Bytes
Versions: 17
Compression:
Stored size: 627 Bytes
Contents
# =========================================================================== # Project: Abbot - SproutCore Build Tools # Copyright: ©2009 Apple Inc. # portions copyright @2006-2009 Sprout Systems, 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
17 entries across 17 versions & 2 rubygems