# -*- ruby -*- require 'rubygems' require 'hoe' require '/lib/kenyacodes.rb' Hoe.new('kenyacodes', Kenyacodes::VERSION) do |p| p.rubyforge_name = 'nairobi' p.author = 'george githinji' p.email = 'georgkam@gmail.com' p.summary = 'A library of Kenyan standard codes. This release contains postoffice codes for 670 postoffices and towns' p.description = p.paragraphs_of('README.txt', 2..5).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.remote_rdoc_dir='' end # vim: syntax=Ruby