module NhtsaVin

Constants

VERSION

Public Instance Methods

get(vin, options={}) click to toggle source
# File lib/nhtsa_vin.rb, line 8
def get(vin, options={})
  query = NhtsaVin::Query.new(vin, options)
  query.get
  query
end
validate(vin) click to toggle source
# File lib/nhtsa_vin.rb, line 14
def validate(vin)
  NhtsaVin::Validation.new(vin)
end