public
Description: A very fast & simple Ruby web server
Homepage: http://code.macournoyer.com/thin/
Clone URL: git://github.com/macournoyer/thin.git
Search Repo:
Merge git://github.com/markbates/thin
macournoyer (author)
Tue Apr 22 05:56:13 -0700 2008
commit  fa4eb39630563d87ea9fc9eee0448e549dfaa840
tree    dfe90b9216cb0e9e038185d9fe18004b339a12da
parent  ae6f5b562bcf86248f28ad1ee6c5599436e5e3b6 parent  863978d258b5890cf4883eed8b1a81d549352276
...
9
10
11
 
12
13
14
...
57
58
59
 
 
 
 
60
61
62
...
9
10
11
12
13
14
15
...
58
59
60
61
62
63
64
65
66
67
0
@@ -9,6 +9,7 @@
0
     :ramaze => "start.rb",
0
     :merb => "config/init.rb",
0
     :halcyon => 'runner.ru',
0
+ :mack => 'config/app_config/default.yml',
0
     :file => nil
0
   }
0
     
0
@@ -57,6 +58,10 @@
0
         
0
         return Halcyon::Runner.new
0
       
0
+ when :mack
0
+ ENV["MACK_ENV"] = options[:environment]
0
+ require 'mack'
0
+ return Mack::Utils::Server.build_app
0
       when :file
0
         return Rack::File.new(options[:chdir])
0
       

Comments

    No one has commented yet.