nickpad / timedcache

A simple library for time-based caching of ruby objects.

This URL has Read+Write access

timedcache / Rakefile
100644 17 lines (14 sloc) 0.544 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# -*- 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