Take the 2008 Git User's Survey and help out! [ hide ]

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)
Sun Feb 10 08:52:32 -0800 2008
commit  5d8d6a703c0d3de3256aaf74537eb01435c65914
tree    4e8322a8f510d2c29ede4951832216164d018b79
parent  3780f3f12d871d5a76b801ae579f0af5b1c829a7 parent  3f23868d488b471947ac0d751a5d5b590e97568d
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