public
Description: Gem for parsing names into first, last, middle, prefix and suffix
Clone URL: git://github.com/bricooke/name_parser.git
bricooke (author)
Wed Mar 26 22:31:42 -0700 2008
commit  807252f563315310efa12027c5a12e3e11842ce1
tree    87c99e12a52888d775c39b8f2099dfeb1abffb22
parent  a7274a8ffa1bd0612bd2b021a3ce7d3a92a66f51
name_parser / Rakefile
100644 18 lines (14 sloc) 0.517 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# -*- ruby -*-
 
require 'rubygems'
require 'hoe'
require './lib/name_parser.rb'
 
Hoe.new('name_parser', NameParser::VERSION) do |p|
  p.rubyforge_name = 'name_parser'
  p.author = 'Brian Cooke'
  p.email = 'brian.cooke@makalumedia.com'
  p.summary = 'Parse a given string into parts of a name'
  p.description = p.paragraphs_of('README.txt', 2..5).join("\n\n")
  p.url = p.paragraphs_of('README.txt', 0).first.split(/\n/)[1..-1]
  p.changes = p.paragraphs_of('History.txt', 0..1).join("\n\n")
end
 
# vim: syntax=Ruby