public
Rubygem
Description: A very fast & simple Ruby web server
Homepage: http://code.macournoyer.com/thin/
Clone URL: git://github.com/macournoyer/thin.git
Click here to lend your support to: thin and make a donation at www.pledgie.com !
Remove autoloading gem plugin crap, GemPlugin system causes weird problems in 
Mongrel, thx evan!

Revert "Add very basic plugin mechanism, all gems starting with 'thin-' or 
'thin_' will be loaded when Thin loads."

This reverts commit 90b15c362fc83243ad660437a43d10f62a601332.
macournoyer (author)
Fri Apr 04 06:47:28 -0700 2008
commit  f3c09c3075e413c48e076a52ea0016a0250a53da
tree    f00a5f8771386f5b8619b3c6aaec75bda48f2f77
parent  90b15c362fc83243ad660437a43d10f62a601332
...
1
2
3
4
5
6
...
1
 
 
2
3
4
0
@@ -1,6 +1,4 @@
0
 == 0.8.0 Dodgy Dentist release
0
- * Add very basic plugin mechanism, all gems starting with 'thin-' or 'thin_' will be loaded when
0
-   Thin loads.
0
  * Allow disabling signal handling in Server with :signals => false
0
  * Make Server.new arguments more flexible, can now specify any of host, port, app or hash options.
0
  * Add --backend option to specified which backend to use, closes #55
...
47
48
49
50
51
52
53
...
47
48
49
 
 
 
 
0
@@ -47,7 +47,3 @@ module Rack
0
     autoload :Rails, 'rack/adapter/rails'
0
   end
0
 end
0
-
0
-# Load plugins at last so we can reopen any stuff
0
-require 'thin/plugins'
0
-Thin::Plugins.load

Comments