CarRegistrationCroatia 1.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. checksums.yaml +7 -0
  2. data/lib/CarRegistrationCroatia.rb +20 -0
  3. metadata +45 -0
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 74fc14c374822809087ac0c063cf6142160c3f40
4
+ data.tar.gz: 4bb9231191542b2900de094c48a963a7de6db2e3
5
+ SHA512:
6
+ metadata.gz: 237c052fd0e7b8605e67a309d3e40532f17597e77356e1b04ade6c3596121041c31ff78e4d42f259be22b8f93a28defdef68f75c989a922f73da8b19f3f2a270
7
+ data.tar.gz: a3d8d15a15e8205fc643a8580f0571f5e6a9adacac909c9678b9720548529d5489335e6001c89b3e6ed59eec454d53f56eab0d19c7e9a91b6e6e287794e6b5e3
@@ -0,0 +1,20 @@
1
+ require "open-uri"
2
+ require "json"
3
+
4
+ class CarRegistrationLookupError < StandardError
5
+ def initialize(msg="Unknown error")
6
+ super
7
+ end
8
+ end
9
+
10
+ class CarRegistrationCroatia
11
+ def self.Lookup(registrationNumber,username,password)
12
+ begin
13
+ @data = open("https://www.regcheck.org.uk/api/json.aspx/CheckCroatia/" + registrationNumber,http_basic_authentication: [username, password]).read
14
+ rescue OpenURI::HTTPError => error
15
+ raise CarRegistrationLookupError, error.io.string
16
+ end
17
+ return JSON.parse(@data)
18
+ end
19
+ end
20
+
metadata ADDED
@@ -0,0 +1,45 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: CarRegistrationCroatia
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.2
5
+ platform: ruby
6
+ authors:
7
+ - Infinite Loop
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2017-08-14 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: Find Car details from a number plate in Croatia. An Account is required
14
+ from http://www.vehicleregistrationapi.com/
15
+ email: info@infiniteloop.ie
16
+ executables: []
17
+ extensions: []
18
+ extra_rdoc_files: []
19
+ files:
20
+ - lib/CarRegistrationCroatia.rb
21
+ homepage: http://www.vehicleregistrationapi.com
22
+ licenses:
23
+ - MIT
24
+ metadata: {}
25
+ post_install_message:
26
+ rdoc_options: []
27
+ require_paths:
28
+ - lib
29
+ required_ruby_version: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ required_rubygems_version: !ruby/object:Gem::Requirement
35
+ requirements:
36
+ - - ">="
37
+ - !ruby/object:Gem::Version
38
+ version: '0'
39
+ requirements: []
40
+ rubyforge_project:
41
+ rubygems_version: 2.6.11
42
+ signing_key:
43
+ specification_version: 4
44
+ summary: Find Car details from a number plate in Croatia.
45
+ test_files: []