macournoyer / thin

A very fast & simple Ruby web server

This URL has Read+Write access

macournoyer (author)
Fri Jan 25 20:40:10 -0800 2008
commit  488564f0f113991d021c9166c85c5fe747a54eb2
tree    3d369fcb5f590e51da7b9af15171da4fa4185427
parent  38b7c0d42699fc8f40a48a08507021bab625adcb
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