public
Description: A very fast & simple Ruby web server
Homepage: http://code.macournoyer.com/thin/
Clone URL: git://github.com/macournoyer/thin.git
Search Repo:
macournoyer (author)
Fri Feb 08 22:43:29 -0800 2008
commit  40ce6f3b68577026c83ff47afbeae8f19c8588fd
tree    f8934fb86fe4422db8bf42457bc8528f4a498ff9
parent  1f3072c91b283c57c34cfc896488d6ff3dc69716
thin / Rakefile
100644 11 lines (8 sloc) 0.241 kb
1
2
3
4
5
6
7
8
9
10
11
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