about summary refs log tree commit homepage
path: root/Rakefile
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2009-02-06 15:54:00 -0800
committerEric Wong <normalperson@yhbt.net>2009-02-09 19:50:57 -0800
commitb1346861133517b939684d2e6eb62ef694b1062f (patch)
tree1d8e0c4ecb82f05bbbff12831e03df82ac5c769b /Rakefile
parentf07a1c59be7f7b41bf3216f6e67add05d0f04d02 (diff)
downloadunicorn-b1346861133517b939684d2e6eb62ef694b1062f.tar.gz
While we'll support anything that exposes a Rack-like interface
(a very good one IMHO), we shouldn't have a hard dependency on
Rack to simplify testing.

While we're at it, I'm not using Daemons anymore, either,
since that does too many things behind our back as far as
daemonization goes.

As a result of not depending on Rubygems, either, I've sped
up my "make -j" test ~1.5 seconds
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile5
1 files changed, 0 insertions, 5 deletions
diff --git a/Rakefile b/Rakefile
index cb21191..f50fd6c 100644
--- a/Rakefile
+++ b/Rakefile
@@ -11,17 +11,12 @@ Echoe.new("unicorn") do |p|
   p.rdoc_pattern = ['README', 'LICENSE', 'CONTRIBUTORS', 'CHANGELOG', 'COPYING', 'lib/**/*.rb', 'doc/**/*.rdoc']
   p.ignore_pattern = /^(pkg|site|projects|doc|log)|CVS|\.log/
   p.extension_pattern = nil
-  p.dependencies = ['daemons', 'rack']
 
   p.need_tar_gz = false
   p.need_tgz = true
 
   p.extension_pattern = ["ext/**/extconf.rb"]
 
-  p.eval = proc do
-    add_dependency('daemons', '>= 1.0.3')
-  end
-
 end
 
 #### Ragel builder