mirror of
https://github.com/puma/puma.git
synced 2022-11-09 13:48:40 -05:00
update dependency tree
git-svn-id: svn+ssh://rubyforge.org/var/svn/mongrel/trunk@636 19e92222-5c0b-0410-8929-a290d50e31e9
This commit is contained in:
parent
2627f5253b
commit
7254a003ac
7 changed files with 107 additions and 107 deletions
8
Rakefile
8
Rakefile
|
@ -8,18 +8,18 @@ Echoe.new("mongrel") do |p|
|
|||
p.rdoc_pattern = ['README', 'LICENSE', 'COPYING', 'lib/**/*.rb', 'doc/**/*.rdoc', 'ext/http11/http11.c']
|
||||
p.ignore_pattern = /^(pkg|site|projects|doc|log)|CVS|\.log/
|
||||
p.ruby_version = '>= 1.8.4'
|
||||
p.dependencies = ['gem_plugin >=0.2.3', 'cgi_multipart_eof_fix >=2.4']
|
||||
p.dependencies = ['gem_plugin >=0.2.3', 'cgi_multipart_eof_fix >=2.4', 'fastthread >=1.0.1']
|
||||
|
||||
p.need_tar_gz = false
|
||||
p.need_tgz = true
|
||||
p.require_signed = true
|
||||
|
||||
unless RUBY_PLATFORM =~ /mswin/
|
||||
self.certificate_chain = ['~/p/configuration/gem_certificates/mongrel/mongrel-public_cert.pem',
|
||||
p.certificate_chain = ['~/p/configuration/gem_certificates/mongrel/mongrel-public_cert.pem',
|
||||
'~/p/configuration/gem_certificates/evan_weaver-mongrel-public_cert.pem']
|
||||
else
|
||||
self.certificate_chain = ['~/gem_certificates/mongrel-public_cert.pem',
|
||||
'~/gem_certificates/luislavena-mongrel-public_cert.pem']
|
||||
p.certificate_chain = ['~/gem_certificates/mongrel-public_cert.pem',
|
||||
'~/gem_certificates/luislavena-mongrel-public_cert.pem']
|
||||
end
|
||||
|
||||
p.eval = proc do
|
||||
|
|
|
@ -5,14 +5,14 @@ Echoe.new("mongrel_cluster") do |p|
|
|||
p.summary = "Mongrel plugin that provides commands and Capistrano tasks for managing multiple Mongrel processes."
|
||||
p.project = "mongrel"
|
||||
p.author="Bradley Taylor"
|
||||
p.dependencies = ['gem_plugin >=0.2.2', 'mongrel >=1.0.1']
|
||||
p.dependencies = ['gem_plugin >=0.2.3', 'mongrel >=1.0.2']
|
||||
p.has_rdoc = false
|
||||
|
||||
p.need_tar_gz = false
|
||||
p.need_tgz = true
|
||||
p.require_signed = true
|
||||
p.certificate_chain = ['/Users/eweaver/p/configuration/gem_certificates/mongrel/mongrel-public_cert.pem',
|
||||
'/Users/eweaver/p/configuration/gem_certificates/evan_weaver-mongrel-public_cert.pem']
|
||||
p.certificate_chain = ['~/p/configuration/gem_certificates/mongrel/mongrel-public_cert.pem',
|
||||
'~/p/configuration/gem_certificates/evan_weaver-mongrel-public_cert.pem']
|
||||
end
|
||||
|
||||
# Is this still used?
|
||||
|
|
|
@ -6,11 +6,11 @@ Echoe.new("mongrel_config") do |p|
|
|||
p.project = "mongrel"
|
||||
p.test_pattern = "test/test_config.rb"
|
||||
p.author="Zed A. Shaw"
|
||||
p.dependencies = ['mongrel >=0.3.11', 'gem_plugin >=0.2.1', 'camping >=1.3']
|
||||
p.dependencies = ['mongrel >=1.0.2', 'gem_plugin >=0.2.3', 'camping >=1.5']
|
||||
|
||||
p.need_tar_gz = false
|
||||
p.need_tgz = true
|
||||
p.certificate_chain = ['/Users/eweaver/p/configuration/gem_certificates/mongrel/mongrel-public_cert.pem',
|
||||
'/Users/eweaver/p/configuration/gem_certificates/evan_weaver-mongrel-public_cert.pem']
|
||||
p.certificate_chain = ['~/p/configuration/gem_certificates/mongrel/mongrel-public_cert.pem',
|
||||
'~/p/configuration/gem_certificates/evan_weaver-mongrel-public_cert.pem']
|
||||
p.require_signed = true
|
||||
end
|
||||
|
|
|
@ -5,11 +5,11 @@ Echoe.new("mongrel_console") do |p|
|
|||
p.summary = "Provides a combined Mongrel and Rails IRB console."
|
||||
p.project = "mongrel"
|
||||
p.author="Zed A. Shaw"
|
||||
p.dependencies = ['gem_plugin >=0.2.1', 'mongrel >=0.3.11']
|
||||
p.dependencies = ['gem_plugin >=0.2.3', 'mongrel >=1.0.2']
|
||||
|
||||
p.need_tar_gz = false
|
||||
p.need_tgz = true
|
||||
p.certificate_chain = ['/Users/eweaver/p/configuration/gem_certificates/mongrel/mongrel-public_cert.pem',
|
||||
'/Users/eweaver/p/configuration/gem_certificates/evan_weaver-mongrel-public_cert.pem']
|
||||
p.certificate_chain = ['~/p/configuration/gem_certificates/mongrel/mongrel-public_cert.pem',
|
||||
'~/p/configuration/gem_certificates/evan_weaver-mongrel-public_cert.pem']
|
||||
p.require_signed = true
|
||||
end
|
||||
|
|
|
@ -1,89 +1,89 @@
|
|||
require 'echoe'
|
||||
require 'tools/freebasic'
|
||||
|
||||
# Task :package needs compile before doing the gem stuff.
|
||||
# (weird behavior of Rake?)
|
||||
task :package => [:compile]
|
||||
|
||||
echoe_spec = Echoe.new("mongrel_service") do |p|
|
||||
p.summary = "Mongrel Native Win32 Service Plugin for Rails"
|
||||
p.summary += " (debug build)" unless ENV['RELEASE']
|
||||
p.description = "This plugin offer native win32 services for rails, powered by Mongrel."
|
||||
p.author = "Luis Lavena"
|
||||
p.platform = Gem::Platform::WIN32
|
||||
p.dependencies = ['gem_plugin >=0.2.2', 'mongrel >=1.0.1', 'win32-service >=0.5.0']
|
||||
|
||||
p.need_tar_gz = false
|
||||
p.need_zip = true
|
||||
p.certificate_chain = ['~/gem_certificates/mongrel-public_cert.pem',
|
||||
'~/gem_certificates/luislavena-mongrel-public_cert.pem']
|
||||
p.require_signed = true
|
||||
end
|
||||
|
||||
desc "Compile native code"
|
||||
task :compile => [:native_lib, :native_service]
|
||||
|
||||
# global options shared by all the project in this Rakefile
|
||||
OPTIONS = {
|
||||
:debug => false,
|
||||
:profile => false,
|
||||
:errorchecking => :ex,
|
||||
:mt => true,
|
||||
:pedantic => true }
|
||||
|
||||
OPTIONS[:debug] = true if ENV['DEBUG']
|
||||
OPTIONS[:profile] = true if ENV['PROFILE']
|
||||
OPTIONS[:errorchecking] = :exx if ENV['EXX']
|
||||
OPTIONS[:pedantic] = false if ENV['NOPEDANTIC']
|
||||
|
||||
# ServiceFB namespace (lib)
|
||||
namespace :lib do
|
||||
project_task 'servicefb' do
|
||||
lib 'ServiceFB'
|
||||
build_to 'lib'
|
||||
|
||||
define 'SERVICEFB_DEBUG_LOG' unless ENV['RELEASE']
|
||||
source 'lib/ServiceFB/ServiceFB.bas'
|
||||
|
||||
option OPTIONS
|
||||
end
|
||||
|
||||
project_task 'servicefb_utils' do
|
||||
lib 'ServiceFB_Utils'
|
||||
build_to 'lib'
|
||||
|
||||
define 'SERVICEFB_DEBUG_LOG' unless ENV['RELEASE']
|
||||
source 'lib/ServiceFB/ServiceFB_Utils.bas'
|
||||
|
||||
option OPTIONS
|
||||
end
|
||||
end
|
||||
|
||||
# add lib namespace to global tasks
|
||||
#include_projects_of :lib
|
||||
task :native_lib => "lib:build"
|
||||
task :clean => "lib:clobber"
|
||||
|
||||
# mongrel_service (native)
|
||||
namespace :native do
|
||||
project_task 'mongrel_service' do
|
||||
executable 'mongrel_service'
|
||||
build_to 'bin'
|
||||
|
||||
define 'DEBUG_LOG' unless ENV['RELEASE']
|
||||
define "GEM_VERSION=#{echoe_spec.version}"
|
||||
|
||||
main 'native/mongrel_service.bas'
|
||||
source 'native/console_process.bas'
|
||||
|
||||
lib_path 'lib'
|
||||
library 'ServiceFB', 'ServiceFB_Utils'
|
||||
library 'user32', 'advapi32', 'psapi'
|
||||
|
||||
option OPTIONS
|
||||
end
|
||||
end
|
||||
|
||||
#include_projects_of :native
|
||||
task :native_service => "native:build"
|
||||
task :clean => "native:clobber"
|
||||
require 'echoe'
|
||||
require 'tools/freebasic'
|
||||
|
||||
# Task :package needs compile before doing the gem stuff.
|
||||
# (weird behavior of Rake?)
|
||||
task :package => [:compile]
|
||||
|
||||
echoe_spec = Echoe.new("mongrel_service") do |p|
|
||||
p.summary = "Mongrel Native Win32 Service Plugin for Rails"
|
||||
p.summary += " (debug build)" unless ENV['RELEASE']
|
||||
p.description = "This plugin offer native win32 services for rails, powered by Mongrel."
|
||||
p.author = "Luis Lavena"
|
||||
p.platform = Gem::Platform::WIN32
|
||||
p.dependencies = ['gem_plugin >=0.2.3', 'mongrel >=1.0.2', 'win32-service >=0.5.0']
|
||||
|
||||
p.need_tar_gz = false
|
||||
p.need_zip = true
|
||||
p.certificate_chain = ['~/gem_certificates/mongrel-public_cert.pem',
|
||||
'~/gem_certificates/luislavena-mongrel-public_cert.pem']
|
||||
p.require_signed = true
|
||||
end
|
||||
|
||||
desc "Compile native code"
|
||||
task :compile => [:native_lib, :native_service]
|
||||
|
||||
# global options shared by all the project in this Rakefile
|
||||
OPTIONS = {
|
||||
:debug => false,
|
||||
:profile => false,
|
||||
:errorchecking => :ex,
|
||||
:mt => true,
|
||||
:pedantic => true }
|
||||
|
||||
OPTIONS[:debug] = true if ENV['DEBUG']
|
||||
OPTIONS[:profile] = true if ENV['PROFILE']
|
||||
OPTIONS[:errorchecking] = :exx if ENV['EXX']
|
||||
OPTIONS[:pedantic] = false if ENV['NOPEDANTIC']
|
||||
|
||||
# ServiceFB namespace (lib)
|
||||
namespace :lib do
|
||||
project_task 'servicefb' do
|
||||
lib 'ServiceFB'
|
||||
build_to 'lib'
|
||||
|
||||
define 'SERVICEFB_DEBUG_LOG' unless ENV['RELEASE']
|
||||
source 'lib/ServiceFB/ServiceFB.bas'
|
||||
|
||||
option OPTIONS
|
||||
end
|
||||
|
||||
project_task 'servicefb_utils' do
|
||||
lib 'ServiceFB_Utils'
|
||||
build_to 'lib'
|
||||
|
||||
define 'SERVICEFB_DEBUG_LOG' unless ENV['RELEASE']
|
||||
source 'lib/ServiceFB/ServiceFB_Utils.bas'
|
||||
|
||||
option OPTIONS
|
||||
end
|
||||
end
|
||||
|
||||
# add lib namespace to global tasks
|
||||
#include_projects_of :lib
|
||||
task :native_lib => "lib:build"
|
||||
task :clean => "lib:clobber"
|
||||
|
||||
# mongrel_service (native)
|
||||
namespace :native do
|
||||
project_task 'mongrel_service' do
|
||||
executable 'mongrel_service'
|
||||
build_to 'bin'
|
||||
|
||||
define 'DEBUG_LOG' unless ENV['RELEASE']
|
||||
define "GEM_VERSION=#{echoe_spec.version}"
|
||||
|
||||
main 'native/mongrel_service.bas'
|
||||
source 'native/console_process.bas'
|
||||
|
||||
lib_path 'lib'
|
||||
library 'ServiceFB', 'ServiceFB_Utils'
|
||||
library 'user32', 'advapi32', 'psapi'
|
||||
|
||||
option OPTIONS
|
||||
end
|
||||
end
|
||||
|
||||
#include_projects_of :native
|
||||
task :native_service => "native:build"
|
||||
task :clean => "native:clobber"
|
||||
|
|
|
@ -5,12 +5,12 @@ Echoe.new("mongrel_status") do |p|
|
|||
p.summary = "A sample plugin that reports the status of mongrel."
|
||||
p.project = "mongrel"
|
||||
p.author = "Zed A. Shaw"
|
||||
p.dependencies = ['gem_plugin >=0.2.1', 'mongrel >=0.3.11']
|
||||
p.dependencies = ['gem_plugin >=0.2.3', 'mongrel >=1.0.2']
|
||||
|
||||
p.need_tar_gz = false
|
||||
p.need_tgz = true
|
||||
p.certificate_chain = ['/Users/eweaver/p/configuration/gem_certificates/mongrel/mongrel-public_cert.pem',
|
||||
'/Users/eweaver/p/configuration/gem_certificates/evan_weaver-mongrel-public_cert.pem']
|
||||
p.certificate_chain = ['~/p/configuration/gem_certificates/mongrel/mongrel-public_cert.pem',
|
||||
'~/p/configuration/gem_certificates/evan_weaver-mongrel-public_cert.pem']
|
||||
p.require_signed = true
|
||||
end
|
||||
|
||||
|
|
|
@ -9,7 +9,7 @@ Echoe.new("mongrel_upload_progress") do |p|
|
|||
|
||||
p.need_tar_gz = false
|
||||
p.need_tgz = true
|
||||
p.certificate_chain = ['/Users/eweaver/p/configuration/gem_certificates/mongrel/mongrel-public_cert.pem',
|
||||
'/Users/eweaver/p/configuration/gem_certificates/evan_weaver-mongrel-public_cert.pem']
|
||||
p.certificate_chain = ['~/p/configuration/gem_certificates/mongrel/mongrel-public_cert.pem',
|
||||
'~/p/configuration/gem_certificates/evan_weaver-mongrel-public_cert.pem']
|
||||
p.require_signed = true
|
||||
end
|
||||
|
|
Loading…
Add table
Reference in a new issue