Sha256: 0faf1579a898a3538c23b6a3fcc85d619f9f44719098a06bf19d0049747c3836
Contents?: true
Size: 622 Bytes
Versions: 18
Compression:
Stored size: 622 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
18 entries across 18 versions & 1 rubygems