Class: Nhtsa::Complaints::Years

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

Instance Method Summary collapse

Instance Method Details

#urlObject



10
11
12
# File 'lib/nhtsa/complaints.rb', line 10

def url
  BASE_URI + END_POINT + DEFAULT_PARAMS
end

#yearsObject



14
15
16
# File 'lib/nhtsa/complaints.rb', line 14

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