# -*- ruby -*-
require 'rubygems'
require 'hoe'
require './lib/timedcache.rb'
Hoe.new('timedcache', TimedCache::VERSION) do |p|
p.rubyforge_name = 'timedcache'
p.author = 'Nicholas Dainty'
p.email = 'nick@npad.co.uk'
p.summary = 'A very simple time-based object cache.'
p.description = p.paragraphs_of('README.txt', 3..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.remote_rdoc_dir = '' # Place RDocs on project home page.
end