Sha256: 69d29e3d951b53e83b299ebf3a18722e5106e7ff3ffc8da49ac4ea7290c37a3a
Contents?: true
Size: 634 Bytes
Versions: 17
Compression:
Stored size: 634 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 test runner for a # given project. class TestRunner 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