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:
tmm1 (author)
Fri Jul 25 12:55:25 -0700 2008
commit  8843e4abb7b7f2f91e4c3f830422646e67a414c2
tree    f3019995f3149353194de2e25a7abef2942eeafa
parent  a8a71b8770bcefe38daecd3be903846084c60051
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