public
Rubygem
Description: Ultra lightweight gem/plugin to do in-memory caching of any Ruby method
Homepage: http://github.com/JackDanger/simple_memoize
Clone URL: git://github.com/JackDanger/simple_memoize.git
commit  bcf76338dab90742c2fe8ecf63b4e2f03358cdcd
tree    839bff0960b4092f68ba71111f485aeb44b10c99
parent  8766d9fab1085bd3c4c20a4ec05bb1390319f7e8
simple_memoize / Rakefile
100644 13 lines (9 sloc) 0.302 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
# -*- ruby -*-
 
require 'rubygems'
require 'hoe'
require './lib/simple_memoize.rb'
 
Hoe.new('simple_memoize', SimpleMemoize::VERSION) do |p|
  p.rubyforge_name = 'objectproxy' # if different than lowercase project name
  p.developer('Jack Danger Canty', 'rubyforge@6brand.com')
end
 
# vim: syntax=Ruby