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:
Added Mack adapter.
Mark Bates (author)
Tue Apr 22 05:27:15 -0700 2008
commit  1f1672607214f2f98f8076d83e1970a5a4e21bd2
tree    70efc9c51b9857f43b6690cb7b3ae6b8a267d0a0
parent  a9acdec985583b0a9dd539417634b2c0eaee3b40
...
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
       
...
6
7
8
9
 
10
11
12
...
6
7
8
 
9
10
11
12
0
@@ -6,7 +6,7 @@
0
   module VERSION #:nodoc:
0
     MAJOR = 0
0
     MINOR = 8
0
- TINY = 1
0
+ TINY = 2
0
     
0
     STRING = [MAJOR, MINOR, TINY].join('.')
0
     

Comments

    No one has commented yet.