brought manifest up to date
[god.git] / Rakefile
blob35f84d9ce52da54b197480e5eb5fc2007f133c3d
1 # -*- ruby -*-
3 require 'rubygems'
4 require 'hoe'
5 require './lib/god.rb'
7 Hoe.new('god', God::VERSION) do |p|
8   p.rubyforge_name = 'god'
9   # p.author = 'FIX'
10   # p.email = 'FIX'
11   # p.summary = 'FIX'
12   # p.description = p.paragraphs_of('README.txt', 2..5).join("\n\n")
13   # p.url = p.paragraphs_of('README.txt', 0).first.split(/\n/)[1..-1]
14   p.changes = p.paragraphs_of('History.txt', 0..1).join("\n\n")
15 end
17 desc "Open an irb session preloaded with this library"
18 task :console do
19   sh "irb -rubygems -r ./lib/god.rb"
20 end
22 # vim: syntax=Ruby