public
Description: A very fast & simple Ruby web server
Homepage: http://code.macournoyer.com/thin/
Clone URL: git://github.com/macournoyer/thin.git
commit  ca716970ee03dc0ed94bda0e4dc83b8a0bf0cb9d
tree    9f1097cfd9fd31a67d9873e5540357471edf081c
parent  2176ea64e2ac15f2535c76ddf3a60046e39a112c parent  1f4be478303aab34181af828f1228d04e14f57dd
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]