Ruby 1.9: Rack apps must *always* take an env arg on 1.9

This commit is contained in:
Jeremy Kemper
2009-11-05 16:04:43 -08:00
parent 73a36b599a
commit 60911c3933

View File

@@ -85,7 +85,7 @@ class MetalTest < Test::Unit::TestCase
private
def app
lambda{[402,{},["End of the Line"]]}
lambda{|env|[402,{},["End of the Line"]]}
end
def use_appdir(root)