public
Description: A very fast & simple Ruby web server
Homepage: http://code.macournoyer.com/thin/
Clone URL: git://github.com/macournoyer/thin.git
macournoyer (author)
Fri Feb 08 23:03:43 -0800 2008
commit  3780f3f12d871d5a76b801ae579f0af5b1c829a7
tree    3e523c639d2f0f11a48519e30dba006ad9a0a1c2
parent  ab63c2010438d2764e1d566b6b1aa6a34dc42bb5
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