public
Description: A very fast & simple Ruby web server
Homepage: http://code.macournoyer.com/thin/
Clone URL: git://github.com/macournoyer/thin.git
Search Repo:
macournoyer (author)
Tue Jan 22 21:47:06 -0800 2008
commit  038740f29eed799ce7c879bedf321fe83be1e496
tree    cd225cd2e9ddfa87360e7862c08b5a6d56e664a4
parent  57eceafee8354b99f06a6bcb29bceb02e863fc9e
thin / Rakefile
100644 11 lines (8 sloc) 0.241 kb
1
2
3
4
5
6
7
8
9
10
11
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