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:
Fix const for Ruby 1.9
macournoyer (author)
Mon Jan 21 10:46:44 -0800 2008
commit  42dea94c69a651d7666ce1f7114c356d8099a27e
tree    0911a3e9e556d411f7a4faf7172101d4dcd450bc
parent  45a2c426a56ae0a448b97345c12a180b13071ffc
...
1
2
 
3
4
5
...
1
 
2
3
4
5
0
@@ -1,5 +1,5 @@
0
 RUBY_1_9 = RUBY_VERSION =~ /^1\.9/
0
-WIN = (PLATFORM =~ /mswin|cygwin/)
0
+WIN = (RUBY_VERSION =~ /mswin|cygwin/)
0
 SUDO = (WIN ? "" : "sudo")
0
 
0
 require 'rake'

Comments

    No one has commented yet.