Branching mogilefs-client to version 1.2.1
[ruby-mogilefs-client.git] / Rakefile
blob9ac5f00c12a4d8692f4a10ddc4f7bcdccc933922
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")
15 end
17 # vim: syntax=Ruby