Merge branch 'master' of git@github.com:macournoyer/thin
[thin.git] / Rakefile
blob20718942fae12a1513614d639372a3a00e84db19
1 RUBY_1_9 = RUBY_VERSION =~ /^1\.9/
2 WIN      = (PLATFORM =~ /mswin|cygwin/)
3 SUDO     = (WIN ? "" : "sudo")
5 require 'rake'
6 require 'rake/clean'
7 require 'lib/thin'
9 Dir['tasks/**/*.rake'].each { |rake| load rake }
11 task :default => :spec