Created
September 15, 2014 22:12
-
-
Save pumpkincouture/14a0144385821aba1942 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def get_flights(file) | |
flights_array = [] | |
csv_data = CSV.foreach(file) do |row| | |
if row[1] != nil | |
flight = Flight.new(row) | |
flights_array << flight | |
elsif row.empty? | |
flights_array << row | |
end | |
end | |
flights_array.shift | |
flights_array | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment