module FloripaPublicTransit
Constants
- Bus
- Schedule
Public Class Methods
fetch_all()
click to toggle source
# File lib/floripa-public-transit.rb, line 14 def self.fetch_all FloripaPublicTransit::BusListCrawler.new.fetch.map do |line_number| FloripaPublicTransit::BusCrawler.new(line_number).fetch end end
fetch_line(line_number)
click to toggle source
# File lib/floripa-public-transit.rb, line 20 def self.fetch_line(line_number) FloripaPublicTransit::BusCrawler.new(line_number).fetch end
fetch_line_numbers()
click to toggle source
# File lib/floripa-public-transit.rb, line 24 def self.fetch_line_numbers FloripaPublicTransit::BusListCrawler.new.fetch end