public
Description: A very fast & simple Ruby web server
Homepage: http://code.macournoyer.com/thin/
Clone URL: git://github.com/macournoyer/thin.git
commit  12c8b5a3b699af419ea210b8496f915956617e01
tree    b025e248a10bd1888e984d4cec10322426bc8b7a
parent  d6d9661620f37b5060631aa592c57374cafd0e25
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