vin_query 1.0.0 → 1.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/README.md CHANGED
@@ -4,6 +4,8 @@
4
4
 
5
5
  A ruby library for fetching and parsing VIN information from vinquery.com, a vehicle identification number decoding service.
6
6
 
7
+ Note, this gem is not officially affiliated with vinquery.com.
8
+
7
9
  ## Installation
8
10
 
9
11
  Add this line to your application's Gemfile:
@@ -43,6 +45,12 @@ vehicle.attributes[:trim_level] # => Sedan Touring
43
45
  vehicle.attributes[:fuel_economy_city] # => 21
44
46
  ```
45
47
 
48
+ ## Resources
49
+
50
+ - [vinquery.com FAQ](http://www.vinquery.com/faq.aspx)
51
+ - [VinQuery RubyGems page](https://rubygems.org/gems/vin_query)
52
+ - [VinQuery Travis CI page](https://travis-ci.org/jyunderwood/vin_query)
53
+
46
54
  ## Contributing
47
55
 
48
56
  1. Fork it
@@ -9,6 +9,9 @@ module VinQuery
9
9
  extend self
10
10
 
11
11
  def get(vin, options={})
12
- VinQuery::Query.new(vin, options).get
12
+ query = VinQuery::Query.new(vin, options)
13
+ query.get()
14
+
15
+ return query
13
16
  end
14
17
  end
@@ -1,5 +1,5 @@
1
1
  # -*- encoding: utf-8 -*-
2
2
 
3
3
  module VinQuery
4
- VERSION = '1.0.0'
4
+ VERSION = '1.0.1'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vin_query
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors: