Skip to content

Commit

Permalink
Version 0.0.5 refactore to methodized matchers in #parse
Browse files Browse the repository at this point in the history
  • Loading branch information
TJ Vanderpoel committed May 7, 2009
1 parent 736bf3d commit 49e0f41
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 4 deletions.
3 changes: 2 additions & 1 deletion AUTHORS
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
Following persons have contributed to name_parse.
(Sorted by number of submitted patches, then alphabetically)

8 TJ Vanderpoel <bougy.man@gmail.com>
10 TJ Vanderpoel <bougy.man@gmail.com>
2 Jayson Vaughn (thedonvaughn) <jayson.vaughn@gmail.com>
2 TJ Vanderpoel <bougyman@zero.(none)>
16 changes: 16 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
[736bf3d | Thu May 07 16:54:52 UTC 2009] TJ Vanderpoel <bougyman@zero.(none)>

* completed refactoring to methodized matchers in #parse

[e58f6e4 | Thu May 07 16:29:25 UTC 2009] TJ Vanderpoel <bougyman@zero.(none)>

* continued to refacor into a methodized pattern for matching in #parse

[835e508 | Thu May 07 03:29:00 UTC 2009] TJ Vanderpoel <bougy.man@gmail.com>

* ignore csv files

[fcb13a0 | Thu May 07 03:28:14 UTC 2009] TJ Vanderpoel <bougy.man@gmail.com>

* added README as description

[016010c | Thu May 07 03:18:51 UTC 2009] TJ Vanderpoel <bougy.man@gmail.com>

* Version 0.0.4
Expand Down
2 changes: 1 addition & 1 deletion lib/name_parse/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module NameParse
VERSION = "0.0.4"
VERSION = "0.0.5"
end
4 changes: 2 additions & 2 deletions name_parse.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@

Gem::Specification.new do |s|
s.name = %q{name_parse}
s.version = "0.0.4"
s.version = "0.0.5"

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["TJ Vanderpoel"]
s.date = %q{2009-05-06}
s.date = %q{2009-05-07}
s.description = %q{========================================================= 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}
s.email = %q{bougy.man@gmail.com}
s.files = ["AUTHORS", "CHANGELOG", "MANIFEST", "README", "Rakefile", "lib/name_parse.rb", "lib/name_parse/error.rb", "lib/name_parse/parser.rb", "lib/name_parse/version.rb", "name_parse.gemspec", "spec/helper.rb", "spec/name_parse/parser.rb", "tasks/authors.rake", "tasks/bacon.rake", "tasks/changelog.rake", "tasks/copyright.rake", "tasks/gem.rake", "tasks/gem_installer.rake", "tasks/install_dependencies.rake", "tasks/manifest.rake", "tasks/rcov.rake", "tasks/release.rake", "tasks/reversion.rake", "tasks/setup.rake", "tasks/yard.rake"]
Expand Down

0 comments on commit 49e0f41

Please sign in to comment.