Skip to content

Instantly share code, notes, and snippets.

@bds
Created February 16, 2012 03:40
Show Gist options
  • Save bds/1841693 to your computer and use it in GitHub Desktop.
Save bds/1841693 to your computer and use it in GitHub Desktop.
HrtBus::Config.routes_uri = "ftp://216.54.15.3/Anrd/vid.csv"
HrtBus::Config.buses_uri = "ftp://216.54.15.3/Anrd/hrtrtf.txt"
HrtBus::Config.hydra ||= Typhoeus::Hydra.new
HrtBus::Bus.download {|buses| @buses = buses }
HrtBus::Route.download {|routes| @routes = routes }
HrtBus::Config.hydra.run
@routes.each do |route|
ap @buses.find {|bus| bus.route_id = route.id}
end;nil
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment