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)
Sun Jan 20 20:59:07 -0800 2008
commit  c06d16415c8b47870513ba44b508c29857790df6
tree    148a32fdbcc756a2ea3900163c97a28ed55d898f
parent  a6b4cae783e97e083a63221b4fa4878c4b5f0198
thin / Rakefile
100644 12 lines (8 sloc) 0.236 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 => :spec