public
Rubygem
Description: Rails Plugin - memoize and store to the db a record attribute generated by any expression or SQL query.
Homepage: http://6brand.com
Clone URL: git://github.com/JackDanger/cached_values.git
JackDanger (author)
Wed Mar 12 11:34:04 -0700 2008
commit  2765c4a97b4866be824f0afd0741139270774858
tree    3dee8d5f87f91fa0e8b56b32e255e0a3f7352a86
parent  b2cc7c01c7d61c785f5c4a0f6db6820a2dd9d191
cached_values / Rakefile
100644 18 lines (12 sloc) 0.451 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# -*- ruby -*-
 
$:.unshift(File.dirname(__FILE__) + '/lib')
$:.unshift(File.dirname(__FILE__) + '/lib/cached_values')
 
 
require 'rubygems'
require 'hoe'
require "cached_values"
 
Hoe.new('cached_values', CachedValues::VERSION) do |p|
  p.rubyforge_name = 'cachedvalues' # if different than lowercase project name
  p.remote_rdoc_dir = '' # Release to root
  p.developer('Jack Danger Canty', 'rubygems_cached_values@6brand.com')
end
 
# vim: syntax=Ruby