macournoyer / thin

A very fast & simple Ruby web server

This URL has Read+Write access

commit  1d1faea0401103e2d16cfb38b19d7fd133053cb5
tree    fbcf407c7fe50067672e6b993de7a5d2af1a398b
parent  8968de296a0edc8a233ae8d7d2717615f0305815
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