We got nominated! Help us out and vote for GitHub as Best Bootstrapped Startup of 2008. (You can vote once a day.) [ hide ]

public
Description: Phusion Passenger (mod_rails)
Homepage: http://www.modrails.com/
Clone URL: git://github.com/FooBarWidget/passenger.git
Click here to lend your support to: passenger and make a donation at www.pledgie.com !
Add config.yml.example to package.
Hongli Lai (Phusion) (author)
Tue Feb 26 16:37:36 -0800 2008
commit  7cec9ba159d6f5ecf2f491a12df30377cf74ab04
tree    3226d3befd6206141fdefbf53e367be6944cf1d0
parent  8a5cc14e09bcabaf99751b0abecc018f39c8dd7d
...
302
303
304
305
 
306
307
308
...
302
303
304
 
305
306
307
308
0
@@ -302,7 +302,7 @@ spec = Gem::Specification.new do |s|
0
     'ext/boost/**/*.{hpp,cpp,pl,inl}',
0
     'ext/mod_rails/*.{c,rb}',
0
     'benchmark/*.{cpp,rb}',
0
- 'test/*.{rb,cpp}',
0
+ 'test/*.{rb,cpp,example}',
0
     'test/support/*',
0
     'test/stub/*',
0
     'test/stub/*/*',
...
49
50
51
52
53
54
55
56
 
 
 
 
 
 
 
57
58
59
...
49
50
51
 
 
 
 
 
52
53
54
55
56
57
58
59
60
61
0
@@ -49,11 +49,13 @@ protected
0
   end
0
   
0
   def print_exception(current_location, exception)
0
- STDERR.puts("** Exception #{exception.class} in #{current_location} " <<
0
- "(#{exception}) (process #{$$}):\n" <<
0
- "\tfrom " <<
0
- exception.backtrace.join("\n\tfrom "))
0
- STDERR.flush
0
+ if !exception.is_a?(SystemExit)
0
+ STDERR.puts("** Exception #{exception.class} in #{current_location} " <<
0
+ "(#{exception}) (process #{$$}):\n" <<
0
+ "\tfrom " <<
0
+ exception.backtrace.join("\n\tfrom "))
0
+ STDERR.flush
0
+ end
0
   end
0
 end
0
 

Comments

    No one has commented yet.