public
Description: A very fast & simple Ruby web server
Homepage: http://code.macournoyer.com/thin/
Clone URL: git://github.com/macournoyer/thin.git
commit  d44352acc6888df131bf0980c1d4c3324ba7a535
tree    18ae75c03f5d4b7a850b7588c2f6fa238b0628bf
parent  530729a8818ac68fa0d221f45aedf1ec4d341717
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