# File lib/ruote/storage/base.rb, line 277
    def filter_schedules (scheds, now)

      now = Ruote.time_to_utc_s(now)

      scheds.select { |sched| sched['at'] <= now }
    end