macournoyer / thin

A very fast & simple Ruby web server

commit  bdddd86657ae44adef067acc43b0a7391f3530de
tree    7bc76cd665cdff372b50d478e4cf08a482cdb71a
parent  2a1314305b460b8abc96b00f07b38cd4e00fb899
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