Sha256: 38b5c98e97b32a52a535eff9e61e1c936cb8930583928712603209d12d978db5
Contents?: true
Size: 613 Bytes
Versions: 47
Compression:
Stored size: 613 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 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
47 entries across 47 versions & 1 rubygems