mog: ensure the tempfile is killed at death
[ruby-mogilefs-client.git] / Rakefile
blob32770fddb4994b9fd26a994fc0262f90956e22c9
1 require 'rubygems'
2 require 'hoe'
4 $:.unshift 'lib'
5 require 'mogilefs'
7 Hoe.new 'mogilefs-client', MogileFS::VERSION do |p|
8   p.rubyforge_name = 'seattlerb'
9   p.author = 'Eric Hodel'
10   p.email = 'drbrain@segment7.net'
11   p.summary = p.paragraphs_of('README.txt', 1).first
12   p.description = p.paragraphs_of('README.txt', 9).first
13   p.url = p.paragraphs_of('README.txt', 5).first
14   p.changes = p.paragraphs_of('History.txt', 0..1).join("\n\n")
16   p.extra_deps << [['ZenTest', '>= 3.6.1']]
17 end
19 # vim: syntax=Ruby