Compare projects
Project comparisons allow you to view any selection of projects side by side just like they're shown on regular categories or in search results. You can try out an example or start yourself by adding a library to the comparison via the input below. You can also easily share your current comparison with others by sending the URL of the current page.
0.0
=========================================================
Name Parse
Copyright (c) 2009 The Rubyists (Jayson Vaughn, Tj Vanderpoel, Michael Fellinger, Kevin Berry)
Distributed under the terms of the MIT License.
==========================================================
About
-----
A ruby library for turning arbitrary name strings such as "Dr Helen Hunt", "Mr James T. Kirk" into a
standardized object usable as
parsed = NameParse::Parser.new("Dr Helen Hunt")
puts "%s %s" % [parsed.first, parsed.last]
Requirements
------------
- ruby (>= 1.8)
Usage
-----
Example of using on a list:
bougyman@zero:~/git_checkouts/name_parse$ irb -r lib/name_parse
irb(main):001:0> list = ["Jayson Vaughn", "Dr Helen Hunt", "Mr James T. Kirk"]
=> ["Jayson Vaughn", "Dr Helen Hunt", "Mr James T. Kirk"]
irb(main):002:0> list.map { |n| p = NameParse[n]; [p.first, p.last] }
=> [["Jayson", "Vaughn"], ["Helen", "Hunt"], ["James", "Kirk"]]
Support
-------
Home page at http://github.com/bougyman/name_parse
#rubyists on FreeNode
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025