Replace the last of the ad-hoc RuntimeError exceptions
[ruby-mogilefs-client.git] / Rakefile
blobe9997d814dd3f58ccfb9301c2fe68acd24894872
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 Wong', 'Eric Hodel' ]
10   p.email = 'normalperson@yhbt.net' # (Eric Wong)
11   # p.email = 'drbrain@segment7.net' # (Eric Hodel)
12   p.summary = p.paragraphs_of('README.txt', 1).first
13   p.description = p.paragraphs_of('README.txt', 9).first
14   p.url = p.paragraphs_of('README.txt', 5).first
15   p.changes = p.paragraphs_of('History.txt', 0..1).join("\n\n")
17   p.extra_dev_deps << ['ZenTest', '>= 3.6.1']
18 end
20 # vim: syntax=Ruby