# -*- ruby -*- require 'rubygems' require 'hoe' require './lib/country_codes.rb' Hoe.new('CountryCodes', CountryCodes::VERSION::STRING) do |p| p.rubyforge_name = 'country_codes' p.author = 'Dan Webb' p.email = 'dan@danwebb.net' p.summary = 'A simple helper for finding 2 and 3 letter and numeric country codes.' # 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") end # vim: syntax=Ruby