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 +8 -0
- data/lib/vin_query.rb +4 -1
- data/lib/vin_query/version.rb +1 -1
- metadata +1 -1
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
|
data/lib/vin_query.rb
CHANGED
data/lib/vin_query/version.rb
CHANGED