Sha256: 0cfaa45818692780d60caeda786346fa538ead69dd155b4dcbeacc7cc6ebabf4
Contents?: true
Size: 713 Bytes
Versions: 1
Compression:
Stored size: 713 Bytes
Contents
require "gtfs/realtime/nearby" module GTFS class Realtime class Stop < GTFS::Realtime::Model extend GTFS::Realtime::Nearby one_to_many :service_alerts one_to_many :stop_times one_to_many :stop_time_updates many_to_many :trip_updates, join_table: :gtfs_realtime_stop_time_updates many_to_many :trips, join_table: :gtfs_realtime_stop_times many_through_many :routes, through: [ [:stop_times, :stop_id, :trip_id], [:trips, :id, :route_id] ] many_through_many :active_routes, class: GTFS::Realtime::Route, through: [ [:stop_time_updates, :stop_id, :trip_update_id], [:trip_updates, :id, :route_id] ] end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
gtfs-realtime-0.2.1 | lib/gtfs/realtime/stop.rb |