vindata 0.0.1 → 0.0.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.
- checksums.yaml +4 -4
- data/Rakefile +1 -0
- data/lib/vindata/services/edmunds.rb +33 -17
- data/lib/vindata/services/nada.rb +139 -0
- data/lib/vindata/services.rb +2 -1
- data/lib/vindata/version.rb +1 -1
- data/lib/vindata/wsdls/ProdSecureLogin.wsdl +74 -0
- data/lib/vindata/wsdls/ProdVehicle.wsdl +1485 -0
- data/lib/vindata/wsdls/TestSecureLogin.wsdl +74 -0
- data/lib/vindata/wsdls/TestVehicle.wsdl +1485 -0
- data/lib/vindata.rb +1 -1
- metadata +9 -3
data/lib/vindata.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: vindata
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Roupen Mouradian
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2015-03-09 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: Library which queries vehicle databases such as Edmunds for publicly
|
14
14
|
available vehicle information using VIN number
|
@@ -20,12 +20,18 @@ files:
|
|
20
20
|
- ".gitignore"
|
21
21
|
- Gemfile
|
22
22
|
- README.md
|
23
|
+
- Rakefile
|
23
24
|
- lib/vindata.rb
|
24
25
|
- lib/vindata/configuration.rb
|
25
26
|
- lib/vindata/services.rb
|
26
27
|
- lib/vindata/services/base.rb
|
27
28
|
- lib/vindata/services/edmunds.rb
|
29
|
+
- lib/vindata/services/nada.rb
|
28
30
|
- lib/vindata/version.rb
|
31
|
+
- lib/vindata/wsdls/ProdSecureLogin.wsdl
|
32
|
+
- lib/vindata/wsdls/ProdVehicle.wsdl
|
33
|
+
- lib/vindata/wsdls/TestSecureLogin.wsdl
|
34
|
+
- lib/vindata/wsdls/TestVehicle.wsdl
|
29
35
|
- vindata.gemspec
|
30
36
|
homepage: https://github.com/orgs/acdcorp/
|
31
37
|
licenses: []
|
@@ -46,7 +52,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
46
52
|
version: '0'
|
47
53
|
requirements: []
|
48
54
|
rubyforge_project:
|
49
|
-
rubygems_version: 2.
|
55
|
+
rubygems_version: 2.4.3
|
50
56
|
signing_key:
|
51
57
|
specification_version: 4
|
52
58
|
summary: Query popular VIN databases to get vehicle information.
|