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)
Fri Jan 18 09:38:29 -0800 2008
commit  08376de8e60d83bb1e7c1c949d33991d348fe783
tree    b23a1cb932978a9a719cff485785b7cecc0ba430
parent  83ce82414300e52e30e3d938bcbbfb32ae78772e
thin / Rakefile
100644 12 lines (8 sloc) 0.248 kb
1
2
3
4
5
6
7
8
9
10
11
12
RUBY_1_9 = RUBY_VERSION =~ /^1\.9/
WIN = (PLATFORM =~ /mswin|cygwin/)
SUDO = (WIN ? "" : "sudo")
 
require 'rake'
require 'rake/clean'
require 'lib/thin'
 
Dir['tasks/**/*.rake'].each { |rake| load rake }
 
task :default => [:compile, :spec]