mirror of
https://github.com/puma/puma.git
synced 2022-11-09 13:48:40 -05:00
7254a003ac
git-svn-id: svn+ssh://rubyforge.org/var/svn/mongrel/trunk@636 19e92222-5c0b-0410-8929-a290d50e31e9
16 lines
486 B
Ruby
16 lines
486 B
Ruby
|
|
require 'echoe'
|
|
|
|
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.3', 'mongrel >=1.0.2']
|
|
|
|
p.need_tar_gz = false
|
|
p.need_tgz = true
|
|
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
|
|
|