Sha256: 57850eb36fc808f63e01c4eb0a1db71402056d19527f9ae0e1672f0ce01557aa
Contents?: true
Size: 635 Bytes
Versions: 13
Compression:
Stored size: 635 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
13 entries across 13 versions & 1 rubygems