Gem to work with airport checkpoint wait times from the TSA.
nokogiri
pass an airport short code to create
a = TSAdata.new "JFK"
returns a hash containing recent wait times reported for each checkpoint at the airport.
a.recentwaits
pass an array of airport codes to create
b = TSAreport.new ["JFK","EWR","LGA"]
takes a filename as parameter. Creates a file containing wait times for the checkpoints at the airports.
b.writereport "filename.txt"