geolookup 0.5.8 → 0.5.9

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 7efbb53169b86cd200ce73fe96417bee806aa258
4
- data.tar.gz: 619b70440587d06b3649e6cb6d803045fda64aa0
3
+ metadata.gz: f2186eea9bcf0915748926ab83f72fcbb56e38a0
4
+ data.tar.gz: 15619a0014bf29cda59aeefd9a87d1841d0ede05
5
5
  SHA512:
6
- metadata.gz: 868b6188745b3540eee7a7b4eea25da95805fc5acc4e647d8afcd34fde847668bd310b1a645cb95213cb3b92d44ec7c9bdab99e57b9ef130f0a59f278e319c67
7
- data.tar.gz: 26a29839df85dc22514321b9e5a2adaae01b0bcf0a11dcbd7568ac4b7f7da49d5e13f8cd38fa2c48177aea75543d6c411b8e8d70053fa0ebaea409427f39506b
6
+ metadata.gz: 36ce9339a6e7b1c1d865135ec7ac7a2060ffecfec607c306bef38f4d16479af21d25a59a6b31c0860d976f4248aab7882017c781ef47053d62546f84d7107afb
7
+ data.tar.gz: 501372fcf31f594f3400c54778a317ad3277a0ebac173e209fb835a38422af9057e3869b13ba28060db96a377dc489a8214178406716e8a8f70e498be4e96a53
@@ -1,3 +1,6 @@
1
+ === 0.5.9
2
+ - Correcing misspelling on American Samoa
3
+
1
4
  === 0.5.8
2
5
  - Adding state.domestic_names to return an array of domestic US state names
3
6
 
data/README.md CHANGED
@@ -61,6 +61,14 @@ Geolookup::USA::State.names
61
61
  Geolookup::USA::State.abbreviations
62
62
  # => ["AL", "AK", "AZ", ...]
63
63
 
64
+ # US Domenstic Abbreviations
65
+ Geolookup::USA::State.domestic_abbreviations
66
+ # => ["CA", "AZ", ...]
67
+
68
+ # US Domenstic names
69
+ Geolookup::USA::State.domestic_names
70
+ # => ["California", "Arizona", ...]
71
+
64
72
  # US State Codes
65
73
  Geolookup::USA::State.codes
66
74
  # => [1, 2, 4, ...]
@@ -104,4 +112,4 @@ For additional functions and documentation please look in geolookup/fips.rb and
104
112
  6. Create new Pull Request
105
113
 
106
114
  ## Running the Specs
107
- $ rake
115
+ $ rake
@@ -50,7 +50,7 @@
50
50
  54: West Virginia
51
51
  55: Wisconsin
52
52
  56: Wyoming
53
- 60: American Somoa
53
+ 60: American Samoa
54
54
  66: Guam
55
55
  69: Northern Mariana Islands
56
56
  72: Puerto Rico
@@ -50,7 +50,7 @@
50
50
  54: West Virginia
51
51
  55: Wisconsin
52
52
  56: Wyoming
53
- 60: American Somoa
53
+ 60: American Samoa
54
54
  66: Guam
55
55
  69: Northern Mariana Islands
56
56
  72: Puerto Rico
@@ -2,7 +2,7 @@
2
2
  AK: Alaska
3
3
  AL: Alabama
4
4
  AR: Arkansas
5
- AS: American Somoa
5
+ AS: American Samoa
6
6
  AZ: Arizona
7
7
  CA: California
8
8
  CO: Colorado
@@ -1,3 +1,3 @@
1
1
  module Geolookup
2
- VERSION = "0.5.8"
2
+ VERSION = "0.5.9"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: geolookup
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.8
4
+ version: 0.5.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Austin Fonacier
@@ -10,48 +10,48 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2014-10-21 00:00:00.000000000 Z
13
+ date: 2015-01-29 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: bundler
17
17
  requirement: !ruby/object:Gem::Requirement
18
18
  requirements:
19
- - - ~>
19
+ - - "~>"
20
20
  - !ruby/object:Gem::Version
21
21
  version: '1.5'
22
22
  type: :development
23
23
  prerelease: false
24
24
  version_requirements: !ruby/object:Gem::Requirement
25
25
  requirements:
26
- - - ~>
26
+ - - "~>"
27
27
  - !ruby/object:Gem::Version
28
28
  version: '1.5'
29
29
  - !ruby/object:Gem::Dependency
30
30
  name: rake
31
31
  requirement: !ruby/object:Gem::Requirement
32
32
  requirements:
33
- - - '>='
33
+ - - ">="
34
34
  - !ruby/object:Gem::Version
35
35
  version: '0'
36
36
  type: :development
37
37
  prerelease: false
38
38
  version_requirements: !ruby/object:Gem::Requirement
39
39
  requirements:
40
- - - '>='
40
+ - - ">="
41
41
  - !ruby/object:Gem::Version
42
42
  version: '0'
43
43
  - !ruby/object:Gem::Dependency
44
44
  name: rspec
45
45
  requirement: !ruby/object:Gem::Requirement
46
46
  requirements:
47
- - - ~>
47
+ - - "~>"
48
48
  - !ruby/object:Gem::Version
49
49
  version: 3.0.0.beta1
50
50
  type: :development
51
51
  prerelease: false
52
52
  version_requirements: !ruby/object:Gem::Requirement
53
53
  requirements:
54
- - - ~>
54
+ - - "~>"
55
55
  - !ruby/object:Gem::Version
56
56
  version: 3.0.0.beta1
57
57
  description: Common geo lookups
@@ -63,9 +63,9 @@ executables: []
63
63
  extensions: []
64
64
  extra_rdoc_files: []
65
65
  files:
66
- - .gitignore
67
- - .rspec
68
- - .travis.yml
66
+ - ".gitignore"
67
+ - ".rspec"
68
+ - ".travis.yml"
69
69
  - CHANGELOG.rdoc
70
70
  - Gemfile
71
71
  - LICENSE.txt
@@ -104,17 +104,17 @@ require_paths:
104
104
  - lib
105
105
  required_ruby_version: !ruby/object:Gem::Requirement
106
106
  requirements:
107
- - - '>='
107
+ - - ">="
108
108
  - !ruby/object:Gem::Version
109
109
  version: '0'
110
110
  required_rubygems_version: !ruby/object:Gem::Requirement
111
111
  requirements:
112
- - - '>='
112
+ - - ">="
113
113
  - !ruby/object:Gem::Version
114
114
  version: '0'
115
115
  requirements: []
116
116
  rubyforge_project:
117
- rubygems_version: 2.0.3
117
+ rubygems_version: 2.2.2
118
118
  signing_key:
119
119
  specification_version: 4
120
120
  summary: Common geo lookups