1
0
Fork 0
mirror of https://github.com/puma/puma.git synced 2022-11-09 13:48:40 -05:00

JRuby cannot daemonize, no need for daemons gem.

This commit is contained in:
Luis Lavena 2010-01-19 01:18:58 -03:00
parent fc9a6d0352
commit 1d1740647b

View file

@ -2,4 +2,7 @@ require 'rake/javaextensiontask'
# build http11 java extension
Rake::JavaExtensionTask.new('http11', HOE.spec) do |ext|
ext.java_compiling do |gs|
gs.dependencies.delete gs.dependencies.find { |d| d.name == 'daemons' }
end
end