Skip to content

Commit

Permalink
Update README gemspec and bump to 0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
pahanix committed Sep 14, 2010
1 parent daa8308 commit b69fd8e
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 6 deletions.
8 changes: 7 additions & 1 deletion README.mdown
@@ -1,3 +1,5 @@
#FullNameSplitter

*FullNameSplitter* splits full name into first and last name considering name prefixes and initials

If you include the module it requires attribute accessors first\_name and last\_name and adds #full\_name, #full\_name= to the class
Expand Down Expand Up @@ -55,4 +57,8 @@ Also you can use splitter directly by calling module function FullNameSplitter::
If the lib can't split a name correctly, it is possible to split by comma

FullNameSplitter.split("John Quincy Adams") # => ["John Quincy", "Adams"]
FullNameSplitter.split("John, Quincy Adams") # => ["John", "Quincy Adams"]
FullNameSplitter.split("John, Quincy Adams") # => ["John", "Quincy Adams"]

##Copyright

Created by Pavel Gorbokon. Contributed by Michael S. Klishin and Trevor Creech. Released under the MIT license.
8 changes: 4 additions & 4 deletions Rakefile
Expand Up @@ -14,11 +14,11 @@ begin
require 'jeweler'
Jeweler::Tasks.new do |gemspec|
gemspec.name = "full-name-splitter"
gemspec.summary = "*FullNameSplitter* splits full name into first and last name considering name prefixes and initials"
gemspec.summary = "FullNameSplitter splits full name into first and last name considering name prefixes and initials"
gemspec.description = ""
gemspec.email = "trevor@trevorcreech.com"
gemspec.homepage = "http://github.com/zedlander/full-name-splitter"
gemspec.authors = ["Pavel Gorbokon", "Trevor Creech"]
gemspec.email = "pahanix@gmail.com"
gemspec.homepage = "http://github.com/pahanix/full-name-splitter"
gemspec.authors = ["Pavel Gorbokon", "contributors Michael S. Klishin and Trevor Creech"]
end
Jeweler::GemcutterTasks.new
rescue LoadError
Expand Down
2 changes: 1 addition & 1 deletion VERSION
@@ -1 +1 @@
0.1.0
0.1.1

0 comments on commit b69fd8e

Please sign in to comment.