dburkes-people_places_things 1.1.2 → 1.1.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,9 +1,9 @@
1
- PeoplePlacesThings
2
- =
1
+ h1. PeoplePlacesThings
2
+
3
3
  PeoplePlacesThings is a collection of ruby classes for parsing and formatting U.S person names, street addresses, phone numbers, and more.
4
4
 
5
- Using PeoplePlacesThings
6
- =
5
+ h2. Using PeoplePlacesThings
6
+
7
7
  require 'people_places_things'
8
8
 
9
9
  name = PersonName.parse("george quincy harold peabody jr.")
@@ -31,8 +31,8 @@ Using PeoplePlacesThings
31
31
  ANSICounties.code_for(:state => 'ga', :county => 'fulton') => 13121
32
32
  ANSICounties.data_for(13121) => { :state => 'GA', :county => 'FULTON' }
33
33
 
34
- Data source
35
- =
36
- The data that makes up `lib/people_places_things/ansi_counties/data/data.yml` was generated from `lib/people_places_things/ansi_counties/data/raw.txt`, which was downloaded from [the US Census website](http://www.census.gov/geo/www/ansi/download.html).
34
+ h2. Data source
35
+
36
+ The data that makes up @lib/people_places_things/ansi_counties/data/data.yml@ was generated from @lib/people_places_things/ansi_counties/data/raw.txt@, which was downloaded from "the US Census website":http://www.census.gov/geo/www/ansi/download.html.
37
37
 
38
38
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.1.2
1
+ 1.1.3
@@ -4,5 +4,5 @@ require File.join(File.dirname(__FILE__), 'people_places_things', 'ansi_counties
4
4
  require File.join(File.dirname(__FILE__), 'people_places_things', 'phone_number', 'phone_number')
5
5
 
6
6
  module PeoplePlacesThings
7
- VERSION = '1.1.2'
7
+ VERSION = File.read('VERSION').chomp.strip rescue "Unknown"
8
8
  end
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{people_places_things}
8
- s.version = "1.1.2"
8
+ s.version = "1.1.3"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Danny Burkes"]
@@ -13,11 +13,11 @@ Gem::Specification.new do |s|
13
13
  s.description = %q{Parsers and formatters for person names, street addresses, city/state/zip, phone numbers, etc.}
14
14
  s.email = %q{dburkes@netable.com}
15
15
  s.extra_rdoc_files = [
16
- "README.rdoc"
16
+ "README.textile"
17
17
  ]
18
18
  s.files = [
19
19
  ".gitignore",
20
- "README.rdoc",
20
+ "README.textile",
21
21
  "Rakefile",
22
22
  "VERSION",
23
23
  "lib/people_places_things.rb",
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dburkes-people_places_things
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.2
4
+ version: 1.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Danny Burkes
@@ -20,10 +20,10 @@ executables: []
20
20
  extensions: []
21
21
 
22
22
  extra_rdoc_files:
23
- - README.rdoc
23
+ - README.textile
24
24
  files:
25
25
  - .gitignore
26
- - README.rdoc
26
+ - README.textile
27
27
  - Rakefile
28
28
  - VERSION
29
29
  - lib/people_places_things.rb
@@ -42,7 +42,6 @@ files:
42
42
  - spec/street_address_spec.rb
43
43
  has_rdoc: true
44
44
  homepage: http://github.com/dburkes/people_places_things
45
- licenses:
46
45
  post_install_message:
47
46
  rdoc_options:
48
47
  - --charset=UTF-8
@@ -63,7 +62,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
63
62
  requirements: []
64
63
 
65
64
  rubyforge_project:
66
- rubygems_version: 1.3.5
65
+ rubygems_version: 1.2.0
67
66
  signing_key:
68
67
  specification_version: 2
69
68
  summary: Parsers and formatters for person names, street addresses, city/state/zip, phone numbers, etc.