ipgeobase_example 0.0.1

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.
data/.gitignore ADDED
@@ -0,0 +1,17 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
data/Gemfile ADDED
@@ -0,0 +1,8 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in ipgeobase_example.gemspec
4
+ gemspec
5
+
6
+ gem 'happymapper'
7
+ gem 'rspec'
8
+ gem 'webmock'
data/LICENSE.txt ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2012 kirill
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,29 @@
1
+ # IpgeobaseExample
2
+
3
+ TODO: Write a gem description
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ gem 'ipgeobase_example'
10
+
11
+ And then execute:
12
+
13
+ $ bundle
14
+
15
+ Or install it yourself as:
16
+
17
+ $ gem install ipgeobase_example
18
+
19
+ ## Usage
20
+
21
+ TODO: Write usage instructions here
22
+
23
+ ## Contributing
24
+
25
+ 1. Fork it
26
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
27
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
28
+ 4. Push to the branch (`git push origin my-new-feature`)
29
+ 5. Create new Pull Request
data/Rakefile ADDED
@@ -0,0 +1 @@
1
+ require "bundler/gem_tasks"
@@ -0,0 +1,19 @@
1
+ # -*- encoding: utf-8 -*-
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'ipgeobase_example/version'
5
+
6
+ Gem::Specification.new do |gem|
7
+ gem.name = "ipgeobase_example"
8
+ gem.version = IpgeobaseExample::VERSION
9
+ gem.authors = ["kirill"]
10
+ gem.email = ["mokevnin@gmail.com"]
11
+ gem.description = %q{ipgeobase_example}
12
+ gem.summary = %q{ipgeobase_example}
13
+ gem.homepage = ""
14
+
15
+ gem.files = `git ls-files`.split($/)
16
+ gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
17
+ gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
18
+ gem.require_paths = ["lib"]
19
+ end
@@ -0,0 +1,13 @@
1
+ module IpgeobaseExample
2
+ class Response
3
+ include HappyMapper
4
+
5
+ tag 'ip-answer'
6
+ element :city, String, :deep => true
7
+ element :country, String, :deep => true
8
+ element :region, String, :deep => true
9
+ element :district, String, :deep => true
10
+ element :lat, Float, :deep => true
11
+ element :lng, Float, :deep => true
12
+ end
13
+ end
@@ -0,0 +1,3 @@
1
+ module IpgeobaseExample
2
+ VERSION = "0.0.1"
3
+ end
@@ -0,0 +1,16 @@
1
+ require "ipgeobase_example/version"
2
+ require 'uri'
3
+ require 'net/http'
4
+
5
+ module IpgeobaseExample
6
+ autoload :Response, 'ipgeobase_example/response.rb'
7
+
8
+ URL = 'http://ipgeobase.ru:7020/geo'
9
+ # Your code goes here...
10
+ def self.lookup(ip)
11
+ uri = URI.parse(URL)
12
+ uri.query = URI.encode_www_form :ip => ip
13
+ response = Net::HTTP.get(uri)
14
+ Response.parse(response)
15
+ end
16
+ end
@@ -0,0 +1,12 @@
1
+ <ip-answer>
2
+ <ip value="46.8.114.116">
3
+ <inetnum>46.8.112.0 - 46.8.127.255</inetnum>
4
+ <country>RU</country>
5
+ <city>ulyanovsk</city>
6
+ <region>Ульяновская область</region>
7
+ <district>Приволжский федеральный
8
+ округ</district>
9
+ <lat>54.321480</lat>
10
+ <lng>48.385651</lng>
11
+ </ip>
12
+ </ip-answer>
@@ -0,0 +1,26 @@
1
+ require 'spec_helper'
2
+
3
+ describe IpgeobaseExample do
4
+
5
+ before do
6
+ @ip = '46.8.114.116'
7
+
8
+ @stub = stub_request(:get, "http://ipgeobase.ru:7020/geo?ip=46.8.114.116").
9
+ with(:headers => {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}).
10
+ to_return(:status => 200, :body => load_fixture('response.xml'), :headers => {})
11
+ end
12
+
13
+ it 'should be make request' do
14
+
15
+ response = IpgeobaseExample.lookup(@ip)
16
+
17
+ @stub.should have_been_made.once
18
+ end
19
+
20
+ it 'should be parse request' do
21
+
22
+ response = IpgeobaseExample.lookup(@ip)
23
+
24
+ response.city.should == 'ulyanovsk'
25
+ end
26
+ end
@@ -0,0 +1,8 @@
1
+ require 'bundler/setup'
2
+ Bundler.require
3
+
4
+ require 'webmock/rspec'
5
+
6
+ def load_fixture(filename)
7
+ File.read(File.dirname(__FILE__) + "/fixtures/#{filename}")
8
+ end
metadata ADDED
@@ -0,0 +1,60 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: ipgeobase_example
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - kirill
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2012-12-04 00:00:00.000000000 Z
13
+ dependencies: []
14
+ description: ipgeobase_example
15
+ email:
16
+ - mokevnin@gmail.com
17
+ executables: []
18
+ extensions: []
19
+ extra_rdoc_files: []
20
+ files:
21
+ - .gitignore
22
+ - Gemfile
23
+ - LICENSE.txt
24
+ - README.md
25
+ - Rakefile
26
+ - ipgeobase_example.gemspec
27
+ - lib/ipgeobase_example.rb
28
+ - lib/ipgeobase_example/response.rb
29
+ - lib/ipgeobase_example/version.rb
30
+ - spec/fixtures/response.xml
31
+ - spec/lib/ipgeobase_example_spec.rb
32
+ - spec/spec_helper.rb
33
+ homepage: ''
34
+ licenses: []
35
+ post_install_message:
36
+ rdoc_options: []
37
+ require_paths:
38
+ - lib
39
+ required_ruby_version: !ruby/object:Gem::Requirement
40
+ none: false
41
+ requirements:
42
+ - - ! '>='
43
+ - !ruby/object:Gem::Version
44
+ version: '0'
45
+ required_rubygems_version: !ruby/object:Gem::Requirement
46
+ none: false
47
+ requirements:
48
+ - - ! '>='
49
+ - !ruby/object:Gem::Version
50
+ version: '0'
51
+ requirements: []
52
+ rubyforge_project:
53
+ rubygems_version: 1.8.24
54
+ signing_key:
55
+ specification_version: 3
56
+ summary: ipgeobase_example
57
+ test_files:
58
+ - spec/fixtures/response.xml
59
+ - spec/lib/ipgeobase_example_spec.rb
60
+ - spec/spec_helper.rb