public
Description: A very fast & simple Ruby web server
Homepage: http://code.macournoyer.com/thin/
Clone URL: git://github.com/macournoyer/thin.git
kevwil (author)
Mon Jan 21 07:46:25 -0800 2008
commit  ba0358b125faa89c72ce68f8b8c6302e626480fa
tree    9f267c7452bb142ed2201db4bbf2657799d17185
parent  b698fe8f2512a85ed95bfa2922d7d1dc77f1e83c
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]