Class: Nhtsa::Complaints::Years

Inherits:
Object
  • Object
show all
Defined in:
lib/nhtsa/complaints/years.rb

Instance Method Summary collapse

Instance Method Details

#urlObject



4
5
6
# File 'lib/nhtsa/complaints/years.rb', line 4

def url
  BASE_URI + END_POINT + DEFAULT_PARAMS
end

#yearsObject



8
9
10
# File 'lib/nhtsa/complaints/years.rb', line 8

def years
  JSON.parse(open(url).read)["Results"].collect{|year| year["ModelYear"]}
end