public
Description: A very fast & simple Ruby web server
Homepage: http://code.macournoyer.com/thin/
Clone URL: git://github.com/macournoyer/thin.git
macournoyer (author)
Sat Apr 05 11:52:25 -0700 2008
commit  dc472b681619c0134db30e7d68b2edbfb1a02076
tree    9282fe22e4104fb25a5352343ca1817837669c0d
parent  f3c09c3075e413c48e076a52ea0016a0250a53da
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