rtomayko / thin forked from macournoyer/thin

A very fast & simple Ruby web server

This URL has Read+Write access

Ryan Tomayko (author)
Sun Jan 18 06:15:16 -0800 2009
commit  f70e6aa7457bcc052f864b768d2641f5ed1f0ea6
tree    cfdb9eb543bc3072512716409adcb7daf265750e
parent  3b7357dcbc165ac546fa51b0f14995a1d37e4912
thin / Rakefile
100644 13 lines (9 sloc) 0.263 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
RUBY_1_9 = RUBY_VERSION =~ /^1\.9/
WIN = (RUBY_PLATFORM =~ /mswin|cygwin/)
SUDO = (WIN ? "" : "sudo")
 
require 'rake'
require 'rake/clean'
require 'lib/thin'
 
Dir['tasks/**/*.rake'].each { |rake| load rake }
 
task :default => :spec
 
ext_task :thin_parser