public
Description: Gem for parsing names into first, last, middle, prefix and suffix
Clone URL: git://github.com/bricooke/name_parser.git
Search Repo:
Brian Cooke (author)
Tue Feb 26 16:00:22 -0800 2008
commit  e41b49e25b8f1ad59ba3729875e1685c92151c05
tree    5e3d7a700e856c331479df8207884b7b2c3504da
name_parser / Rakefile
100644 17 lines (14 sloc) 0.517 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# -*- 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