public
Description: A No Kahuna (http://www.nokahuna.com) Ruby Wrapper
Homepage: http://kickassrb.rubyforge.org/neoneo
Clone URL: git://github.com/walski/neoneo.git
walski (author)
Thu Oct 23 03:24:24 -0700 2008
commit  e8e8494ab0238dd40c974cda8ea827c97d581888
tree    ff0d1bee722d3754193166335dd95d24682e209a
parent  41aa3d7bd85f95458a93e0aa1b9e63bcc1985115
neoneo / Rakefile
100644 20 lines (16 sloc) 0.592 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# -*- ruby -*-
 
require 'rubygems'
require 'hoe'
require 'mechanize'
require './lib/neoneo.rb'
 
Hoe.new('neoneo', Neoneo::VERSION) do |p|
  p.rubyforge_name = "kickassrb"
  p.name = "neoneo"
  p.author = "Thorben Schröder"
  p.description = "Ruby wrapper to access No Kahuna (www.nokahuna.com) from within your Ruby projects."
  p.email = 'thorben@fetmab.net'
  p.summary = "Ruby wrapper to access No Kahuna (www.nokahuna.com) from within your Ruby projects."
  p.changes = p.paragraphs_of('History.txt', 0..1).join("\n\n")
  p.extra_deps << ['mechanize'," >=0.8.4"]
end
 
# vim: syntax=Ruby