1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
# -*- ruby -*-
require 'rubygems'
require 'hoe'
$LOAD_PATH << "./lib"
require 'stomp_server'
Hoe.new('stompserver', StompServer::VERSION) do |p|
p.rubyforge_name = 'stompserver'
p.summary = 'A very light messaging server'
p.description = p.paragraphs_of('README.txt', 2..4).join("\n\n")
p.url = p.paragraphs_of('README.txt', 0).first.split(/\n/)[1..-1]
p.changes = p.paragraphs_of('History.txt', 0..1).join("\n\n")
p.email = [ "lionel-dev@bouton.name" ]
p.author = [ "Lionel Bouton" ]
p.extra_deps = [
# This depencency is real, but if you are on a Win32 box
# and don't have VC6, it can be a real problem
["daemons", ">= 1.0.2"],
["eventmachine", ">= 0.7.2"],
["hoe", ">= 1.1.1"],
]
p.remote_rdoc_dir = ''
end
# vim: syntax=Ruby
|