# -*- ruby -*- require 'rubygems' require 'hoe' require './lib/juggernaut.rb' Hoe.new('juggernaut', '0.5.1') do |p| p.rubyforge_name = 'juggernaut' p.author = 'Alex MacCaw' p.email = 'info@eribium.org' # p.summary = 'FIX' # p.description = p.paragraphs_of('README.txt', 2..5).join("\n\n") p.url = 'http://juggernaut.rubyforge.org' p.changes = p.paragraphs_of('History.txt', 0..1).join("\n\n") p.extra_deps << ['eventmachine', '>=0.8.1'] p.extra_deps << ['json_pure', '>=1.1.2'] end # vim: syntax=Ruby