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:
commit  ce6d00751644715c82044d1194a34fc61ca0823d
tree    f9bac5195ab9a402bf250f621d9b13635dbfbce4
parent  863978d258b5890cf4883eed8b1a81d549352276
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