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 22:53:59 -0800 2008
commit  704af3973c881cfa99c6265591d7face9e8a7701
tree    c02ff98b241b32b9b144430ce9c2301ddbe6cd06
parent  21be136ef3ab2a0ee962ad041a03574086c54573
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