zipcode_lookup 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 7cd0af33900a08099de51d6f019f82c8552bfad5
4
+ data.tar.gz: 4050178bc8adde597f84b4554c07800531bb676e
5
+ SHA512:
6
+ metadata.gz: 8ccffe8e1eccb9f18c052da3fae6b328cf0b89670519823c0282a81f7180b0b813cfb4006c51a90721369b28057e943d84e785da26e593f5ec0967c49520e636
7
+ data.tar.gz: a0cca7a4fd98b18446b418a55c2410511b2894afc0c81e63b078906e9dd2e6941efc205d2eae3f98a9bf32ddcfb6bd2b20d88348546f205f47d650b0a39962c2
@@ -0,0 +1,9 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
data/.rspec ADDED
@@ -0,0 +1,2 @@
1
+ --format documentation
2
+ --color
@@ -0,0 +1,4 @@
1
+ language: ruby
2
+ rvm:
3
+ - 2.1.2
4
+ before_install: gem install bundler -v 1.10.5
@@ -0,0 +1,13 @@
1
+ # Contributor Code of Conduct
2
+
3
+ As contributors and maintainers of this project, we pledge to respect all people who contribute through reporting issues, posting feature requests, updating documentation, submitting pull requests or patches, and other activities.
4
+
5
+ We are committed to making participation in this project a harassment-free experience for everyone, regardless of level of experience, gender, gender identity and expression, sexual orientation, disability, personal appearance, body size, race, ethnicity, age, or religion.
6
+
7
+ Examples of unacceptable behavior by participants include the use of sexual language or imagery, derogatory comments or personal attacks, trolling, public or private harassment, insults, or other unprofessional conduct.
8
+
9
+ Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct. Project maintainers who do not follow the Code of Conduct may be removed from the project team.
10
+
11
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by opening an issue or contacting one or more of the project maintainers.
12
+
13
+ This Code of Conduct is adapted from the [Contributor Covenant](http://contributor-covenant.org), version 1.0.0, available at [http://contributor-covenant.org/version/1/0/0/](http://contributor-covenant.org/version/1/0/0/)
data/Gemfile ADDED
@@ -0,0 +1,3 @@
1
+ source 'https://rubygems.org'
2
+
3
+ gemspec
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2015 Abhijit Sinha
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
@@ -0,0 +1,39 @@
1
+ # ZipcodeLookup
2
+
3
+ Welcome to zipcode lookup. This gem fetches geo-details via zipcode lookup. It uses couple of API - Google and Ziptastic for fetching geo-details.
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ ```ruby
10
+ gem 'zipcode_lookup'
11
+ ```
12
+
13
+ And then execute:
14
+
15
+ $ bundle
16
+
17
+ Or install it yourself as:
18
+
19
+ $ gem install zipcode_lookup
20
+
21
+ ## Usage
22
+
23
+ TODO: Sanitize and Validate the zipcode before process.
24
+
25
+ ## Development
26
+
27
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake rspec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
28
+
29
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
30
+
31
+ ## Contributing
32
+
33
+ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/zipcode_lookup. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](contributor-covenant.org) code of conduct.
34
+
35
+
36
+ ## License
37
+
38
+ The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
39
+
@@ -0,0 +1,6 @@
1
+ require "bundler/gem_tasks"
2
+ require "rspec/core/rake_task"
3
+
4
+ RSpec::Core::RakeTask.new(:spec)
5
+
6
+ task :default => :spec
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "zipcode_lookup"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start
@@ -0,0 +1,7 @@
1
+ #!/bin/bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+
5
+ bundle install
6
+
7
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,33 @@
1
+ require 'net/http'
2
+ require 'ostruct'
3
+ require 'uri'
4
+ require 'json'
5
+
6
+ module Lookup
7
+ class Base
8
+ attr_accessor :geo_obj, :response, :response_obj, :zipcode
9
+
10
+ def self.process(zipcode, options = {})
11
+ new(zipcode, options).process
12
+ end
13
+
14
+ def api_request
15
+ Net::HTTP.get(parsed_url)
16
+ end
17
+
18
+ def initialize(zipcode, options = {})
19
+ @zipcode = zipcode
20
+ end
21
+
22
+ def parsed_url
23
+ URI.parse(search_url)
24
+ end
25
+
26
+ def process
27
+ begin
28
+ self.response = api_request
29
+ rescue
30
+ end
31
+ end
32
+ end
33
+ end
@@ -0,0 +1,49 @@
1
+ require 'lookup/base'
2
+
3
+ module Lookup
4
+ class GoogleLookup < Base
5
+ attr_accessor :api_key, :region
6
+
7
+ GEO_HASH = {
8
+ 'city' => 'locality',
9
+ 'state' => 'administrative_area_level_1',
10
+ 'county' => 'administrative_area_level_2',
11
+ 'country' => 'country'
12
+ }
13
+
14
+ def initialize(zipcode, options = {})
15
+ super
16
+ @api_key = options[:api_key]
17
+ @region = options[:region]
18
+ end
19
+
20
+ def search_url
21
+ "http://maps.googleapis.com/maps/api/geocode/json?address=#{zipcode}&region=#{region}&key=#{api_key}"
22
+ end
23
+
24
+ def process
25
+ super
26
+ fetch_response
27
+ build_geo_details
28
+ end
29
+
30
+ def fetch_response
31
+ self.response = JSON.parse(response)['results'].first
32
+ end
33
+
34
+ def build_geo_details
35
+ self.response_obj = OpenStruct.new(response)
36
+ self.geo_obj = OpenStruct.new
37
+ GEO_HASH.keys.each do |key|
38
+ address_component_value = fetch_address_component(GEO_HASH[key])
39
+ geo_obj.send("#{key}=", address_component_value)
40
+ end
41
+ geo_obj
42
+ end
43
+
44
+ def fetch_address_component(component_name)
45
+ component_name = response_obj.address_components.find { |x| x['types'].include?(component_name) }
46
+ component_name and component_name['long_name']
47
+ end
48
+ end
49
+ end
@@ -0,0 +1,23 @@
1
+ require 'lookup/base'
2
+
3
+ module Lookup
4
+ class ZiptasticLookup < Base
5
+ def search_url
6
+ "http://ziptasticapi.com/#{zipcode}"
7
+ end
8
+
9
+ def process
10
+ super
11
+ fetch_response
12
+ build_geo_details
13
+ end
14
+
15
+ def fetch_response
16
+ self.response = JSON.parse(response)
17
+ end
18
+
19
+ def build_geo_details
20
+ OpenStruct.new(response)
21
+ end
22
+ end
23
+ end
@@ -0,0 +1,11 @@
1
+ require "zipcode_lookup/version"
2
+ require "lookup/google_lookup"
3
+ require "lookup/ziptastic_lookup"
4
+
5
+ module ZipcodeLookup
6
+ def self.fetch_details(zip, options = {})
7
+ ziptastic_response = Lookup::ZiptasticLookup.process(zip)
8
+ return ziptastic_response unless ziptastic_response.error
9
+ Lookup::GoogleLookup.process(zip, options)
10
+ end
11
+ end
@@ -0,0 +1,3 @@
1
+ module ZipcodeLookup
2
+ VERSION = "0.1.0"
3
+ end
@@ -0,0 +1,25 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'zipcode_lookup/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "zipcode_lookup"
8
+ spec.version = ZipcodeLookup::VERSION
9
+ spec.authors = ["Abhijit Sinha"]
10
+ spec.email = ["abhijit.sinha@kiprosh.com"]
11
+
12
+ spec.summary = %q{Gem to fetch geo details via zipcode}
13
+ spec.description = %q{This gem uses the ziptastic api and google api to fetch the geo details via zipcode}
14
+ spec.homepage = "http://www.abhijitsinha.me"
15
+ spec.license = "MIT"
16
+
17
+ spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
18
+ spec.bindir = "exe"
19
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
20
+ spec.require_paths = ["lib"]
21
+
22
+ spec.add_development_dependency "bundler", "~> 1.10"
23
+ spec.add_development_dependency "rake", "~> 10.0"
24
+ spec.add_development_dependency "rspec"
25
+ end
metadata ADDED
@@ -0,0 +1,103 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: zipcode_lookup
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Abhijit Sinha
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2015-06-29 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.10'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.10'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '10.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '10.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rspec
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ description: This gem uses the ziptastic api and google api to fetch the geo details
56
+ via zipcode
57
+ email:
58
+ - abhijit.sinha@kiprosh.com
59
+ executables: []
60
+ extensions: []
61
+ extra_rdoc_files: []
62
+ files:
63
+ - ".gitignore"
64
+ - ".rspec"
65
+ - ".travis.yml"
66
+ - CODE_OF_CONDUCT.md
67
+ - Gemfile
68
+ - LICENSE.txt
69
+ - README.md
70
+ - Rakefile
71
+ - bin/console
72
+ - bin/setup
73
+ - lib/lookup/base.rb
74
+ - lib/lookup/google_lookup.rb
75
+ - lib/lookup/ziptastic_lookup.rb
76
+ - lib/zipcode_lookup.rb
77
+ - lib/zipcode_lookup/version.rb
78
+ - zipcode_lookup.gemspec
79
+ homepage: http://www.abhijitsinha.me
80
+ licenses:
81
+ - MIT
82
+ metadata: {}
83
+ post_install_message:
84
+ rdoc_options: []
85
+ require_paths:
86
+ - lib
87
+ required_ruby_version: !ruby/object:Gem::Requirement
88
+ requirements:
89
+ - - ">="
90
+ - !ruby/object:Gem::Version
91
+ version: '0'
92
+ required_rubygems_version: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - ">="
95
+ - !ruby/object:Gem::Version
96
+ version: '0'
97
+ requirements: []
98
+ rubyforge_project:
99
+ rubygems_version: 2.4.6
100
+ signing_key:
101
+ specification_version: 4
102
+ summary: Gem to fetch geo details via zipcode
103
+ test_files: []