public
Description: Webrat - Ruby Acceptance Testing for Web applications
Homepage: http://gitrdoc.com/brynary/webrat/tree/master/
Clone URL: git://github.com/brynary/webrat.git
Disable sinatra's app run and reload
foca (author)
Sun Dec 28 21:37:12 -0800 2008
commit  6704d487bcba624e62096a45e875bcbf44c60fbb
tree    3b44d5d9da4d80fe498ae5615196b391d10ebefe
parent  6d108393be2b60b03ec5e5abb1bba3f97d79b885
...
2
3
4
 
 
 
5
6
7
...
2
3
4
5
6
7
8
9
10
0
@@ -2,6 +2,9 @@ require 'webrat/rack'
0
 require 'sinatra'
0
 require 'sinatra/test/methods'
0
 
0
+disable :run
0
+disable :reload
0
+
0
 module Webrat
0
   class SinatraSession < RackSession #:nodoc:
0
     include Sinatra::Test::Methods

Comments