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:
commit  1d33a94f4f2dcfbb13df7a448c848c1319e2287a
tree    c19276f2bdc72800b28fa527da4b50abea35e1dd
parent  ff260c2dd071d7568068905905603e2c850ae402 parent  ae5e7299f4457da4c841ce980b3ef85c2dec002e
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