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)
Thu Jan 24 16:19:01 -0800 2008
commit  58a9c60904298508d2098d5b2cc581a4c2cc503e
tree    d66c0e639cc5e58e4b68c67d69db2e8b18bf34d5
parent  d9fddd014c5a664c32238e4b16a8103446d6941a
thin / Rakefile
100644 12 lines (8 sloc) 0.241 kb
1
2
3
4
5
6
7
8
9
10
11
12
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