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 !
Add very basic plugin mechanism, all gems starting with 'thin-' or 'thin_' will 
be loaded when Thin loads.
macournoyer (author)
Thu Apr 03 21:36:02 -0700 2008
commit  90b15c362fc83243ad660437a43d10f62a601332
tree    ec1016c0b79671ecda654be3cf16f35a741d59a7
parent  6cb32ec3f90457e96cdc541a387bf50e07a6ecad
...
1
 
 
2
3
4
...
1
2
3
4
5
6
0
@@ -1,4 +1,6 @@
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
 
 
 
 
...
47
48
49
50
51
52
53
0
@@ -47,3 +47,7 @@ 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