Sha256: 9b5d9ce5e8d44497a41c4121a27957bf93fc725acbab3b130af7985a24f124f4
Contents?: true
Size: 771 Bytes
Versions: 16
Compression:
Stored size: 771 Bytes
Contents
# vim: syntax=Ruby require 'hoe' DEV_DOC_PATH = 'Libraries/cached_model' hoe = Hoe.new 'cached_model', '1.3.1' do |p| p.summary = 'An ActiveRecord abstract model that caches records in memcached' p.description = 'CachedModel caches simple (by id) finds in memcached reducing the amount of work the database needs to perform for simple queries.' p.author = ['Eric Hodel', 'Robert Cottrell'] p.email = 'eric@robotcoop.com' p.url = "http://dev.robotcoop.com/#{DEV_DOC_PATH}" p.rubyforge_name = 'rctools' p.changes = File.read('History.txt').scan(/\A(=.*?)^=/m).first.first p.extra_deps << ['memcache-client', '>= 1.1.0'] p.extra_deps << ['activerecord', '>= 1.14.4'] p.extra_deps << ['ZenTest', '>= 3.4.1'] end SPEC = hoe.spec require '../tasks'
Version data entries
16 entries across 16 versions & 2 rubygems