├── .dockerignore ├── .gitignore ├── .rspec ├── .ruby-gemset ├── .ruby-version ├── .travis.yml ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── Procfile ├── README.md ├── Rakefile ├── app ├── assets │ ├── images │ │ ├── .keep │ │ ├── arrow-180.png │ │ ├── calendar-clock.png │ │ ├── car--arrow.png │ │ ├── car--inactive.png │ │ ├── car--pencil.png │ │ ├── car--plus.png │ │ ├── car.png │ │ ├── card--pencil.png │ │ ├── credit-card--plus.png │ │ ├── credit-card.png │ │ ├── cross-button.png │ │ ├── dashboard--inactive.png │ │ ├── dashboard--pencil.png │ │ ├── dashboard--plus.png │ │ ├── magnifier-zoom.png │ │ ├── pencil.png │ │ ├── plus-button.png │ │ ├── plus.png │ │ ├── rc-grayscale-logo.jpg │ │ ├── report--plus.png │ │ ├── report.png │ │ ├── reports-stack.png │ │ ├── spinner.gif │ │ ├── tick-circle.png │ │ ├── user--plus.png │ │ ├── user-business-gray-boss.png │ │ ├── user-worker-boss.png │ │ ├── user-worker.png │ │ ├── user.png │ │ ├── users.png │ │ ├── wrench--pencil.png │ │ ├── wrench--plus.png │ │ └── wrench.png │ ├── javascripts │ │ ├── OverlappingMarkerSpiderfier.js │ │ ├── application.js │ │ ├── bootbox.min.js │ │ ├── bootstrap-table.js │ │ ├── bootstrap-toggle.js │ │ ├── cable.js │ │ ├── channels │ │ │ ├── alert.coffee │ │ │ ├── chat.coffee │ │ │ ├── chat_alert.coffee │ │ │ └── manifest.coffee │ │ ├── constants.js.erb │ │ ├── double_booked_trips.js │ │ ├── google_map.js.erb │ │ ├── google_place_parser.js │ │ ├── jquery.floatThead.js │ │ ├── jquery.geocomplete.js │ │ ├── jquery.splitter.js │ │ ├── jquery.sumoselect.js │ │ ├── jquery.timeago.js │ │ ├── selectize.js │ │ ├── trip_place_picker.js │ │ ├── trip_result_reason.js │ │ ├── typeahead-addresspicker.js │ │ └── verify_client_code.js │ └── stylesheets │ │ ├── .gitkeep │ │ ├── _ridepilot-ui-helpers.scss │ │ ├── application.scss │ │ ├── bootstrap-table.css │ │ ├── bootstrap-toggle.css │ │ ├── dispatch.css │ │ ├── jquery.splitter.css │ │ ├── jquery.sumoselect.css │ │ ├── pdf.css │ │ ├── reports_print.scss │ │ ├── ridepilot-ui.scss │ │ ├── selectize.bootstrap3.css │ │ ├── selectize.css │ │ ├── trip_place_picker.scss │ │ ├── v1_theme.scss │ │ ├── v1_theme_split2.css │ │ └── v2_theme.scss ├── channels │ ├── alert_channel.rb │ ├── application_cable │ │ ├── channel.rb │ │ └── connection.rb │ ├── chat_alert_channel.rb │ ├── chat_channel.rb │ ├── driver_alert_channel.rb │ └── manifest_channel.rb ├── controllers │ ├── address_groups_controller.rb │ ├── addresses_controller.rb │ ├── api │ │ ├── api_controller.rb │ │ ├── v1 │ │ │ ├── base_controller.rb │ │ │ ├── customers_controller.rb │ │ │ ├── providers_controller.rb │ │ │ ├── trip_purposes_controller.rb │ │ │ └── trips_controller.rb │ │ └── v2 │ │ │ ├── base_controller.rb │ │ │ ├── passwords_controller.rb │ │ │ └── sessions_controller.rb │ ├── application_controller.rb │ ├── application_settings_controller.rb │ ├── cab_trips_controller.rb │ ├── concerns │ │ ├── .keep │ │ ├── document_associable_controller.rb │ │ └── json_response_helper.rb │ ├── customers_controller.rb │ ├── daily_operating_hours_controller.rb │ ├── device_pool_drivers_controller.rb │ ├── device_pools_controller.rb │ ├── dispatchers_controller.rb │ ├── documents_controller.rb │ ├── driver_compliances_controller.rb │ ├── driver_histories_controller.rb │ ├── driver_requirement_templates_controller.rb │ ├── drivers_controller.rb │ ├── funding_sources_controller.rb │ ├── home_controller.rb │ ├── lookup_tables_controller.rb │ ├── messages_controller.rb │ ├── mobility_capacities_controller.rb │ ├── monthlies_controller.rb │ ├── operating_hours_controller.rb │ ├── planned_leaves_controller.rb │ ├── provider_common_addresses_controller.rb │ ├── provider_lookup_tables_controller.rb │ ├── providers_controller.rb │ ├── recurring_dispatchers_controller.rb │ ├── recurring_driver_compliances_controller.rb │ ├── recurring_vehicle_maintenance_compliances_controller.rb │ ├── repeating_runs_controller.rb │ ├── repeating_trips_controller.rb │ ├── reporting │ │ ├── reports_controller.rb │ │ └── results_controller.rb │ ├── reports_controller.rb │ ├── runs_controller.rb │ ├── trips_controller.rb │ ├── users_controller.rb │ ├── vehicle_capacity_configurations_controller.rb │ ├── vehicle_compliances_controller.rb │ ├── vehicle_inspections_controller.rb │ ├── vehicle_maintenance_compliances_controller.rb │ ├── vehicle_maintenance_events_controller.rb │ ├── vehicle_maintenance_schedule_types_controller.rb │ ├── vehicle_maintenance_schedules_controller.rb │ ├── vehicle_requirement_templates_controller.rb │ ├── vehicle_types_controller.rb │ ├── vehicle_warranties_controller.rb │ └── vehicles_controller.rb ├── helpers │ ├── address_groups_helper.rb │ ├── application_helper.rb │ ├── availability_helper.rb │ ├── dispatch_helper.rb │ ├── recurring_vehicle_maintenance_compliances_helper.rb │ ├── reporting │ │ ├── application_helper.rb │ │ └── report_helper.rb │ ├── reports_helper.rb │ ├── tracker_action_log_helper.rb │ └── vehicle_maintenance_compliances_helper.rb ├── mailers │ ├── .keep │ └── new_user_mailer.rb ├── models │ ├── .keep │ ├── ability.rb │ ├── ada_question.rb │ ├── address.rb │ ├── address_group.rb │ ├── address_upload_flag.rb │ ├── application_record.rb │ ├── application_setting.rb │ ├── booking_user.rb │ ├── capacity.rb │ ├── capacity_type.rb │ ├── chat_read_receipt.rb │ ├── concerns │ │ ├── .keep │ │ ├── available.rb │ │ ├── compliance_core.rb │ │ ├── compliance_event.rb │ │ ├── document_associable.rb │ │ ├── inactivateable.rb │ │ ├── itinerary_core.rb │ │ ├── lookupable.rb │ │ ├── operatable.rb │ │ ├── operating_hour_core.rb │ │ ├── recurring_compliance_event.rb │ │ ├── recurring_compliance_event_scheduler.rb │ │ ├── recurring_ride_coordinator.rb │ │ ├── recurring_ride_coordinator_scheduler.rb │ │ ├── required_field_validator_module.rb │ │ ├── requirement_template.rb │ │ ├── run_core.rb │ │ ├── schedule_attributes.rb │ │ ├── schedule_helpers.rb │ │ ├── token_authentication_helpers.rb │ │ └── trip_core.rb │ ├── custom_report.rb │ ├── customer.rb │ ├── customer_ada_question.rb │ ├── customer_address.rb │ ├── customer_address_type.rb │ ├── customer_common_address.rb │ ├── customer_eligibility.rb │ ├── customer_ridership_mobility.rb │ ├── daily_operating_hour.rb │ ├── device_pool.rb │ ├── device_pool_driver.rb │ ├── dispatcher_message_template.rb │ ├── document.rb │ ├── document_association.rb │ ├── donation.rb │ ├── driver.rb │ ├── driver_address.rb │ ├── driver_compliance.rb │ ├── driver_history.rb │ ├── driver_message_template.rb │ ├── driver_requirement_template.rb │ ├── eligibility.rb │ ├── emergency_alert.rb │ ├── emergency_contact.rb │ ├── ethnicity.rb │ ├── fare.rb │ ├── field_config.rb │ ├── funding_authorization_number.rb │ ├── funding_source.rb │ ├── garage_address.rb │ ├── geocoded_address.rb │ ├── gps_location.rb │ ├── gps_location_partition.rb │ ├── guest.rb │ ├── hidden_lookup_table_value.rb │ ├── image.rb │ ├── itinerary.rb │ ├── lookup_table.rb │ ├── message.rb │ ├── message_template.rb │ ├── mobility.rb │ ├── mobility_capacity.rb │ ├── monthly.rb │ ├── operating_hour.rb │ ├── planned_leave.rb │ ├── provider.rb │ ├── provider_business_address.rb │ ├── provider_common_address.rb │ ├── provider_lookup_table.rb │ ├── provider_mailing_address.rb │ ├── provider_report.rb │ ├── public_itinerary.rb │ ├── recurring_driver_compliance.rb │ ├── recurring_vehicle_maintenance_compliance.rb │ ├── region.rb │ ├── repeating_itinerary.rb │ ├── repeating_run.rb │ ├── repeating_run_manifest_order.rb │ ├── repeating_trip.rb │ ├── repeating_trip_ridership_mobility.rb │ ├── ridership_mobility_mapping.rb │ ├── role.rb │ ├── routine_message.rb │ ├── run.rb │ ├── run_distance.rb │ ├── run_vehicle_inspection.rb │ ├── saved_custom_report.rb │ ├── service_level.rb │ ├── temp_address.rb │ ├── tracker_action_log.rb │ ├── travel_training.rb │ ├── trip.rb │ ├── trip_purpose.rb │ ├── trip_result.rb │ ├── trip_ridership_mobility.rb │ ├── user.rb │ ├── user_address.rb │ ├── vehicle.rb │ ├── vehicle_capacity.rb │ ├── vehicle_capacity_configuration.rb │ ├── vehicle_compliance.rb │ ├── vehicle_inspection.rb │ ├── vehicle_maintenance_compliance.rb │ ├── vehicle_maintenance_event.rb │ ├── vehicle_maintenance_schedule.rb │ ├── vehicle_maintenance_schedule_type.rb │ ├── vehicle_monthly_tracking.rb │ ├── vehicle_requirement_template.rb │ ├── vehicle_type.rb │ ├── vehicle_warranty.rb │ ├── vehicle_warranty_template.rb │ ├── verification_question.rb │ └── weekday_assignment.rb ├── services │ ├── abstract_distance_duration_service.rb │ ├── daily_operating_hours_processor.rb │ ├── distance_duration_services │ │ ├── google_distance_duration_service.rb │ │ └── otp_distance_duration_service.rb │ ├── geocoding_service.rb │ ├── google_place_parser.rb │ ├── ntd_report.rb │ ├── operating_hours_processor.rb │ ├── provider_operating_hours_processor.rb │ ├── recurring_trip_scheduler.rb │ ├── reimbursement_rate_calculator.rb │ ├── run_filter.rb │ ├── run_stats_calculator.rb │ ├── trip_distance_duration_proxy.rb │ ├── trip_filter.rb │ ├── trip_scheduler.rb │ └── utility.rb ├── views │ ├── address_groups │ │ ├── _form.html.haml │ │ ├── edit.html.haml │ │ ├── index.html.haml │ │ ├── new.html.haml │ │ └── show.html.haml │ ├── addresses │ │ ├── _geocoding_or_not_form_fields.html.haml │ │ ├── _google_place_autocomplete_js.html.haml │ │ ├── _latlng_address_switch_js.html.haml │ │ ├── _new_provider_common_address_form.html.haml │ │ ├── _non_geocoding_form_fields.html.haml │ │ ├── _provider_common_address.html.haml │ │ ├── _provider_common_address_form_fields.html.haml │ │ ├── _results.html.haml │ │ ├── _upload_form.html.haml │ │ ├── _validate_form.html.haml │ │ └── edit.html.haml │ ├── application_settings │ │ ├── edit.html.erb │ │ └── index.html.erb │ ├── cab_trips │ │ ├── _grouped_cab_trips.html.erb │ │ ├── _no_cab_trips.html.erb │ │ ├── edit_multiple.html.erb │ │ └── index.html.erb │ ├── customers │ │ ├── _ada_eligibility.html.haml │ │ ├── _ada_question_item.html.haml │ │ ├── _add_address_dialog.html.haml │ │ ├── _add_donation_dialog.html.haml │ │ ├── _add_funding_authorization_number_dialog.html.haml │ │ ├── _add_travel_training_dialog.html.haml │ │ ├── _comments_panel.html.haml │ │ ├── _common_addresses_panel.html.haml │ │ ├── _customer_eligibility_list.csv.haml │ │ ├── _customer_eligibility_list.html.haml │ │ ├── _customer_eligibility_list.pdf.haml │ │ ├── _customer_listing.html.erb │ │ ├── _customer_trip_summary_table.html.haml │ │ ├── _details_panel.html.haml │ │ ├── _donations_panel.html.haml │ │ ├── _eligibility_item.html.haml │ │ ├── _eligibility_panel.html.haml │ │ ├── _eta_settings_panel.html.haml │ │ ├── _form.html.erb │ │ ├── _form_header.html.haml │ │ ├── _funding_authorization_numbers_panel.html.haml │ │ ├── _mobility_panel.html.haml │ │ ├── _new_address_js.html.erb │ │ ├── _others_panel.html.haml │ │ ├── _providers_panel.html.haml │ │ ├── _ridership_mobility_edit.html.haml │ │ ├── _ridership_mobility_listing.html.haml │ │ ├── _travel_trainings_panel.html.haml │ │ ├── _trips.html.erb │ │ ├── _view_customer_eligibilities.html.haml │ │ ├── customer_comments_report.html.haml │ │ ├── edit.html.haml │ │ ├── get_eligibilities_mobilities_for_trip.js.erb │ │ ├── index.html.haml │ │ ├── new.html.haml │ │ ├── show.html.haml │ │ └── verify_code.js.erb │ ├── daily_operating_hours │ │ ├── add.js.erb │ │ ├── new.js.erb │ │ └── remove.js.erb │ ├── device_pool_drivers │ │ └── _device_pool_driver_row.html.erb │ ├── device_pools │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ └── new.html.erb │ ├── devise │ │ ├── confirmations │ │ │ └── new.html.erb │ │ ├── mailer │ │ │ ├── confirmation_instructions.html.erb │ │ │ ├── reset_password_instructions.html.erb │ │ │ └── unlock_instructions.html.erb │ │ ├── passwords │ │ │ ├── edit.html.erb │ │ │ └── new.html.haml │ │ ├── registrations │ │ │ ├── edit.html.erb │ │ │ └── new.html.erb │ │ ├── sessions │ │ │ └── new.html.erb │ │ ├── shared │ │ │ ├── _links.erb │ │ │ └── _links.html.erb │ │ └── unlocks │ │ │ └── new.html.erb │ ├── dispatchers │ │ ├── _filters.html.haml │ │ ├── _run_manifest_table.html.haml │ │ ├── _run_trips_panel.html.haml │ │ ├── _runs_panel.html.haml │ │ ├── _runs_table.html.haml │ │ ├── _slack_chart.html.haml │ │ ├── _trip_result_dropdown.html.haml │ │ ├── _unassigned_trip_type_dropdown.html.haml │ │ ├── _unassigned_trips_panel.html.haml │ │ ├── _unassigned_trips_panel_title.html.haml │ │ ├── _unassigned_trips_schedule_dropdown.html.haml │ │ ├── _unassigned_trips_table.html.haml │ │ ├── _unschedule_trip_dropdown.html.haml │ │ ├── _update_eta.js.haml │ │ ├── batch_change_same_run_trip_result.js.erb │ │ ├── cancel_run.js.erb │ │ ├── eta.js.haml │ │ ├── index.html.haml │ │ ├── load_trips.js.erb │ │ ├── publish_manifest.js.haml │ │ ├── run_trips.js.erb │ │ ├── schedule.js.erb │ │ ├── schedule_multiple.js.erb │ │ ├── unschedule.js.erb │ │ └── update_run_manifest_order.js.erb │ ├── document_associations │ │ ├── _document_association_fields_for_associable.html.haml │ │ ├── _document_association_for_document.html.haml │ │ ├── _document_row.html.haml │ │ └── _form_panel.html.haml │ ├── documents │ │ ├── _document.html.haml │ │ ├── _document_DEPRECATED.html.erb │ │ ├── _form.html.haml │ │ ├── destroy.js.erb │ │ ├── edit.html.erb │ │ └── new.html.erb │ ├── driver_compliances │ │ ├── _ask_for_reoccuring.js.erb │ │ ├── _driver_compliance.html.haml │ │ ├── _form.html.haml │ │ ├── create.js.erb │ │ ├── destroy.js.erb │ │ ├── edit.html.erb │ │ ├── edit.js.erb │ │ ├── index.js.erb │ │ ├── new.html.erb │ │ ├── new.js.erb │ │ ├── show.js.erb │ │ └── update.js.erb │ ├── driver_histories │ │ ├── _driver_history.html.haml │ │ ├── _form.html.haml │ │ ├── create.js.erb │ │ ├── destroy.js.erb │ │ ├── edit.html.erb │ │ ├── edit.js.erb │ │ ├── new.html.erb │ │ ├── new.js.erb │ │ ├── show.js.erb │ │ └── update.js.erb │ ├── driver_requirement_templates │ │ ├── _driver_requirement_template.html.haml │ │ ├── _form.html.haml │ │ ├── edit.html.haml │ │ ├── index.html.haml │ │ ├── new.html.haml │ │ └── show.html.haml │ ├── drivers │ │ ├── _address_panel.html.haml │ │ ├── _availability_forecast_driver_view.html.haml │ │ ├── _availability_forecast_run_view.html.haml │ │ ├── _availability_forecast_table.html.haml │ │ ├── _daily_availability_panel.html.haml │ │ ├── _daily_availability_summary_view.html.haml │ │ ├── _driver.html.haml │ │ ├── _driver_compliances_table.html.haml │ │ ├── _emergency_contact_panel.html.haml │ │ ├── _form.html.haml │ │ ├── _legal_requirements_panel.html.haml │ │ ├── _non_legal_requirements_panel.html.haml │ │ ├── _plain_text_address.html.haml │ │ ├── _planned_leaves_panel.html.haml │ │ ├── _recurring_availability_panel.html.haml │ │ ├── assign_runs.js.erb │ │ ├── availability.html.haml │ │ ├── availability_forecast.html.haml │ │ ├── daily_availability_forecast.js.erb │ │ ├── edit.html.haml │ │ ├── index.html.haml │ │ ├── new.html.haml │ │ ├── show.html.haml │ │ └── unassign_runs.js.erb │ ├── home │ │ └── index.html.haml │ ├── layouts │ │ ├── _footer.html.haml │ │ ├── application.html.erb │ │ └── pdf.html.haml │ ├── lookup_tables │ │ ├── _add_value_button.html.haml │ │ ├── _delete_value_button.html.haml │ │ ├── _dropdown.html.haml │ │ ├── _edit_value_button.html.haml │ │ ├── _hide_value_button.html.haml │ │ ├── _lookup_table.html.haml │ │ ├── _show_value_button.html.haml │ │ ├── _table.html.haml │ │ ├── index.html.haml │ │ └── show.html.haml │ ├── messages │ │ └── _alert.html.haml │ ├── mobility_capacities │ │ ├── batch_edit.html.haml │ │ ├── batch_update.js.erb │ │ └── index.html.haml │ ├── monthlies │ │ ├── _form.html.erb │ │ ├── _report.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ └── new.html.erb │ ├── new_user_mailer │ │ └── new_user_email.html.erb │ ├── operating_hours │ │ ├── add.js.erb │ │ ├── new.js.erb │ │ └── remove.js.erb │ ├── planned_leaves │ │ ├── _form.html.haml │ │ ├── create.js.erb │ │ ├── destroy.js.erb │ │ ├── edit.js.erb │ │ ├── new.js.erb │ │ └── update.js.erb │ ├── provider_lookup_tables │ │ ├── _table.html.haml │ │ ├── index.html.haml │ │ └── show.html.haml │ ├── providers │ │ ├── _add_address_dialog.html.haml │ │ ├── _addresses.html.haml │ │ ├── _addresses_table.html.haml │ │ ├── _customers.html.haml │ │ ├── _drivers.html.haml │ │ ├── _eta_configurations.html.haml │ │ ├── _fare_configurations.html.haml │ │ ├── _form.html.haml │ │ ├── _general.html.erb │ │ ├── _inactivate_dialog.html.haml │ │ ├── _profile.html.haml │ │ ├── _sidebar.html.haml │ │ ├── _template.html.haml │ │ ├── _title.html.haml │ │ ├── _users.html.erb │ │ ├── _users_header.html.haml │ │ ├── _vehicles.html.haml │ │ ├── addresses.html.haml │ │ ├── customers.html.haml │ │ ├── drivers.html.haml │ │ ├── edit.html.haml │ │ ├── general.html.haml │ │ ├── index.html.haml │ │ ├── new.html.haml │ │ ├── show.html.haml │ │ ├── users.html.haml │ │ └── vehicles.html.haml │ ├── recurring_dispatchers │ │ ├── _filters.html.haml │ │ ├── _run_manifest_table.html.haml │ │ ├── _run_trips_panel.html.haml │ │ ├── _runs_panel.html.haml │ │ ├── _runs_table.html.haml │ │ ├── _trip_result_dropdown.html.haml │ │ ├── _unassigned_trips_panel.html.haml │ │ ├── _unassigned_trips_panel_title.html.haml │ │ ├── _unassigned_trips_schedule_dropdown.html.haml │ │ ├── _unassigned_trips_table.html.haml │ │ ├── _unschedule_trip_dropdown.html.haml │ │ ├── batch_change_same_run_trip_result.js.erb │ │ ├── batch_update_daily_dispatch_action.js.erb │ │ ├── cancel_run.js.erb │ │ ├── index.html.haml │ │ ├── load_trips.js.erb │ │ ├── run_trips.js.erb │ │ ├── schedule.js.erb │ │ ├── schedule_multiple.js.erb │ │ ├── unschedule.js.erb │ │ └── update_run_manifest_order.js.erb │ ├── recurring_driver_compliances │ │ ├── _compliance_based_schedule_preview.html.erb │ │ ├── _form.html.erb │ │ ├── _future_schedule_preview.html.erb │ │ ├── _new_event_notice.html.erb │ │ ├── _preview_dates.html.erb │ │ ├── _recurring_driver_compliance.html.erb │ │ ├── _schedule_preview.html.erb │ │ ├── delete.html.erb │ │ ├── edit.html.haml │ │ ├── index.html.haml │ │ ├── new.html.haml │ │ └── show.html.haml │ ├── recurring_vehicle_maintenance_compliances │ │ ├── _compliance_based_schedule_preview.html.erb │ │ ├── _form.html.erb │ │ ├── _future_schedule_preview.html.erb │ │ ├── _new_event_notice.html.erb │ │ ├── _preview_dates.html.erb │ │ ├── _recurring_vehicle_maintenance_compliance.html.erb │ │ ├── _schedule_preview.html.erb │ │ ├── delete.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── new.html.erb │ │ └── show.html.erb │ ├── repeating_runs │ │ ├── _form_header.html.haml │ │ ├── _list.html.haml │ │ ├── _repetition_panel.html.haml │ │ ├── edit.html.haml │ │ ├── index.html.haml │ │ ├── new.html.haml │ │ └── show.html.haml │ ├── repeating_trips │ │ ├── _form_header.html.haml │ │ ├── _form_js.html.haml │ │ ├── _list.html.haml │ │ ├── _repetition_fields.html.haml │ │ ├── _repetition_panel.html.haml │ │ ├── edit.html.haml │ │ ├── index.html.haml │ │ ├── new.html.haml │ │ └── show.html.haml │ ├── reporting │ │ ├── filters │ │ │ ├── _filter_group.html.haml │ │ │ ├── _form.html.haml │ │ │ ├── _lookup_table_filter.html.haml │ │ │ ├── _range_filter.html.haml │ │ │ ├── _regular_filter.html.haml │ │ │ └── _reset_buttons.html.haml │ │ ├── reports │ │ │ ├── _dropdown.html.haml │ │ │ ├── _header.html.haml │ │ │ ├── _list.html.haml │ │ │ ├── index.html.haml │ │ │ └── show.html.haml │ │ └── results │ │ │ ├── _header.html.haml │ │ │ └── index.html.haml │ ├── reports │ │ ├── _common_csv_header.csv.haml │ │ ├── _custom_report_header.html.haml │ │ ├── _date_range_prompt_dialog.html.haml │ │ ├── _event_table.html.erb │ │ ├── _footer.html.erb │ │ ├── _header.html.erb │ │ ├── _manifest_trip.html.erb │ │ ├── _manifest_trips.html.erb │ │ ├── age_and_ethnicity.html.erb │ │ ├── cab.html.erb │ │ ├── cancellations_report.html.haml │ │ ├── cancellations_report │ │ │ └── _csv.csv.haml │ │ ├── cctc_summary_report.html.erb │ │ ├── customer_donation_report.html.haml │ │ ├── customer_donation_report │ │ │ ├── _csv.csv.haml │ │ │ ├── _pdf.pdf.haml │ │ │ └── _table.html.haml │ │ ├── customer_receiving_trips_in_range.html.erb │ │ ├── customers_report.html.haml │ │ ├── customers_report │ │ │ ├── _csv.csv.haml │ │ │ ├── _pdf.pdf.haml │ │ │ └── _table.html.haml │ │ ├── daily_manifest.html.erb │ │ ├── daily_manifest_by_half_hour.html.erb │ │ ├── daily_trips.html.erb │ │ ├── donations.html.erb │ │ ├── driver_compliances_report.html.haml │ │ ├── driver_compliances_report │ │ │ ├── _csv.csv.haml │ │ │ ├── _pdf.pdf.haml │ │ │ └── _table.html.haml │ │ ├── driver_manifest.html.haml │ │ ├── driver_manifest │ │ │ ├── _run.html.haml │ │ │ ├── _run_header.html.haml │ │ │ ├── _table.html.haml │ │ │ └── _trip.html.haml │ │ ├── driver_monthly_service_report.html.haml │ │ ├── driver_monthly_service_report │ │ │ ├── _csv.csv.haml │ │ │ ├── _pdf.pdf.haml │ │ │ └── _table.html.haml │ │ ├── driver_report.html.haml │ │ ├── driver_report │ │ │ ├── _csv.csv.haml │ │ │ ├── _pdf.pdf.haml │ │ │ └── _table.html.haml │ │ ├── forms │ │ │ ├── _cancellations_report.html.haml │ │ │ ├── _cctc_summary_report.html.erb │ │ │ ├── _customer_donation_report.html.haml │ │ │ ├── _customer_receiving_trips_in_range.html.erb │ │ │ ├── _customers_report.html.haml │ │ │ ├── _daily_manifest.html.erb │ │ │ ├── _daily_manifest_by_half_hour.html.erb │ │ │ ├── _daily_manifest_by_half_hour_with_cab.html.erb │ │ │ ├── _daily_manifest_with_cab.html.erb │ │ │ ├── _daily_trips.html.erb │ │ │ ├── _driver_compliances_report.html.haml │ │ │ ├── _driver_manifest.html.erb │ │ │ ├── _driver_monthly_service_report.html.haml │ │ │ ├── _driver_report.html.haml │ │ │ ├── _export_trips_in_range.html.erb │ │ │ ├── _inactive_driver_status_report.html.haml │ │ │ ├── _ineligible_customer_status_report.html.haml │ │ │ ├── _manifest.html.haml │ │ │ ├── _missing_data_report.html.haml │ │ │ ├── _ntd.html.haml │ │ │ ├── _pre_run_inspections.html.haml │ │ │ ├── _provider_common_location_report.html.haml │ │ │ ├── _provider_service_productivity_report.html.haml │ │ │ ├── _run_multiple_dropdown.html.haml │ │ │ ├── _save_form.html.haml │ │ │ ├── _save_report_controls.html.haml │ │ │ ├── _show_runs_for_verification.html.erb │ │ │ ├── _show_trips_for_verification.html.erb │ │ │ ├── _vehicle_5310_report.html.haml │ │ │ ├── _vehicle_monthly_service_report.html.haml │ │ │ ├── _vehicle_report.html.haml │ │ │ └── v2_reports │ │ │ │ └── _common_controls.html.haml │ │ ├── get_run_list.js.erb │ │ ├── inactive_driver_status_report.html.haml │ │ ├── inactive_driver_status_report │ │ │ ├── _csv.csv.haml │ │ │ ├── _pdf.pdf.haml │ │ │ ├── _perm_inactive.csv.haml │ │ │ ├── _table.html.haml │ │ │ └── _temp_inactive.csv.haml │ │ ├── index.html.erb │ │ ├── ineligible_customer_status_report.html.haml │ │ ├── ineligible_customer_status_report │ │ │ ├── _csv.csv.haml │ │ │ ├── _pdf.pdf.haml │ │ │ └── _table.html.haml │ │ ├── manifest.html.haml │ │ ├── manifest │ │ │ ├── _itinerary.html.haml │ │ │ ├── _pdf.pdf.haml │ │ │ ├── _run.html.haml │ │ │ ├── _run_header.html.haml │ │ │ └── _table.html.haml │ │ ├── missing_data_report.html.haml │ │ ├── missing_data_report │ │ │ ├── _csv.csv.haml │ │ │ ├── _pdf.pdf.haml │ │ │ └── _table.html.haml │ │ ├── monthlies.html.erb │ │ ├── ntd.html.haml │ │ ├── pdf_header.pdf.haml │ │ ├── pre_run_inspections.html.haml │ │ ├── pre_run_inspections │ │ │ ├── _csv.csv.haml │ │ │ ├── _pdf.pdf.haml │ │ │ └── _table.html.haml │ │ ├── provider_common_location_report.html.haml │ │ ├── provider_common_location_report │ │ │ ├── _csv.csv.haml │ │ │ ├── _pdf.pdf.haml │ │ │ └── _table.html.haml │ │ ├── provider_service_productivity_report.html.haml │ │ ├── provider_service_productivity_report │ │ │ ├── _csv.csv.haml │ │ │ ├── _pdf.pdf.haml │ │ │ └── _table.html.haml │ │ ├── save_as.js.erb │ │ ├── saved_report.html.haml │ │ ├── service_summary.html.erb │ │ ├── show.csv.haml │ │ ├── show.html.haml │ │ ├── show.pdf.haml │ │ ├── show_runs_for_verification.html.erb │ │ ├── show_save_form.js.erb │ │ ├── show_saved_report.html.haml │ │ ├── show_trips_for_verification.html.erb │ │ ├── vehicle_5310_report.html.haml │ │ ├── vehicle_5310_report │ │ │ ├── _csv.csv.haml │ │ │ ├── _pdf.pdf.haml │ │ │ └── _table.html.haml │ │ ├── vehicle_monthly_service_report.html.haml │ │ ├── vehicle_monthly_service_report │ │ │ ├── _csv.csv.haml │ │ │ ├── _pdf.pdf.haml │ │ │ └── _table.html.haml │ │ ├── vehicle_report.html.haml │ │ ├── vehicle_report │ │ │ ├── _csv.csv.haml │ │ │ ├── _pdf.pdf.haml │ │ │ └── _table.html.haml │ │ └── vehicles_monthly.html.erb │ ├── runs │ │ ├── _change_locations_dialog.html.haml │ │ ├── _date_time_panel.html.haml │ │ ├── _distance_panel.html.haml │ │ ├── _driver_panel.html.haml │ │ ├── _editable_trip_row.html.erb │ │ ├── _filters.html.haml │ │ ├── _form.html.haml │ │ ├── _form_header.html.haml │ │ ├── _list.html.haml │ │ ├── _no_runs.html.erb │ │ ├── _non_editable_trip_fields.html.erb │ │ ├── _non_editable_trip_row.html.erb │ │ ├── _row.html.haml │ │ ├── _run_completion_panel.html.haml │ │ ├── _run_uncompletion_dialog.html.haml │ │ ├── _tracking_panel.html.haml │ │ ├── _trip.html.erb │ │ ├── _trip_list.html.haml │ │ ├── _unavailable_driver_vehicle_warning_dialog.html.haml │ │ ├── _vehicle_panel.html.haml │ │ ├── assign_driver.js.erb │ │ ├── check_driver_vehicle_availability.js.haml │ │ ├── edit.html.haml │ │ ├── index.html.haml │ │ ├── new.html.haml │ │ ├── reload_drivers.js.erb │ │ ├── reload_vehicles.js.erb │ │ ├── request_change_locations.js.erb │ │ ├── request_uncompletion.js.erb │ │ ├── runs.js.erb │ │ ├── show.html.haml │ │ └── unassign_driver.js.erb │ ├── shared │ │ ├── _action_log_panel.html.haml │ │ ├── _add_new_operating_hour_form.html.haml │ │ ├── _application_alert_dialog.html.haml │ │ ├── _availability_table.html.haml │ │ ├── _custom_file_input_javascript.html.haml │ │ ├── _date_range_inactivate_dialog.html.haml │ │ ├── _date_time_picker_javascript.html.erb │ │ ├── _error_messages.html.erb │ │ ├── _focused_form_panel_javascript.html.haml │ │ ├── _hide_invisible_form_fields_js.html.haml │ │ ├── _highlight_active_tab_js.html.haml │ │ ├── _modal_dialog.html.erb │ │ ├── _operating_hours.html.erb │ │ ├── _planned_leave_row.html.haml │ │ ├── _planned_leaves_table.html.haml │ │ ├── _readonly_modal_dialog.html.erb │ │ ├── _single_weekday_select.html.haml │ │ ├── _time_inputs.html.haml │ │ ├── _time_inputs_javascript.html.haml │ │ ├── _weekday_select.html.haml │ │ └── google_maps │ │ │ ├── _content_for_footer.html.erb │ │ │ └── _google_map_api.html.erb │ ├── trips │ │ ├── _ask_for_return_trip_dialog.html.haml │ │ ├── _calendar.html.haml │ │ ├── _customer.html.haml │ │ ├── _customer_message_dialog.html.haml │ │ ├── _customer_panel.html.haml │ │ ├── _customer_trip_summary_dialog.html.haml │ │ ├── _day_row.html.erb │ │ ├── _double_booked_trip_dialog.html.haml │ │ ├── _double_booked_trip_row.html.haml │ │ ├── _eligibility_panel.html.haml │ │ ├── _eta_settings_panel.html.haml │ │ ├── _fare_panel.html.haml │ │ ├── _filters.html.haml │ │ ├── _form.html.haml │ │ ├── _form_header.html.haml │ │ ├── _form_js.html.haml │ │ ├── _javascript.html.erb │ │ ├── _list.html.haml │ │ ├── _log_panel.html.haml │ │ ├── _mobility_panel.html.haml │ │ ├── _notes_panel.html.haml │ │ ├── _other_panel.html.haml │ │ ├── _required_trip_details_panel.html.haml │ │ ├── _ridership_mobility_edit.html.haml │ │ ├── _ridership_mobility_edit_script.html.haml │ │ ├── _ridership_mobility_listing.html.haml │ │ ├── _row.html.haml │ │ ├── _shared_form_js.html.haml │ │ ├── _tracking_panel.html.haml │ │ ├── _trip_form.html.erb │ │ ├── _trip_funding_source_filter.html.haml │ │ ├── _trip_parameters_panel.html.haml │ │ ├── _trip_result_filter.html.haml │ │ ├── _trip_result_reason_dialog.html.haml │ │ ├── _trip_status_header.html.haml │ │ ├── callback.js.haml │ │ ├── change_result.js.haml │ │ ├── customer_trip_summary.js.haml │ │ ├── edit.html.haml │ │ ├── index.html.haml │ │ ├── new.html.haml │ │ ├── notify_driver.js.haml │ │ ├── reconcile_cab.html.erb │ │ ├── report.html.haml │ │ ├── show.html.haml │ │ ├── trips_requiring_callback.html.erb │ │ ├── unscheduled.html.erb │ │ └── update_run_filters.js.erb │ ├── users │ │ ├── _add_verification_question_dialog.html.haml │ │ ├── _form.html.haml │ │ ├── _form_header.html.haml │ │ ├── edit.html.haml │ │ ├── get_verification_question.html.haml │ │ ├── new_user.html.erb │ │ ├── show.html.haml │ │ ├── show_change_email.html.erb │ │ ├── show_change_expiration.html.erb │ │ ├── show_change_password.html.erb │ │ ├── show_change_password.html.haml │ │ └── show_reset_password.html.haml │ ├── vehicle_capacity_configurations │ │ ├── _form.html.haml │ │ ├── _list.html.haml │ │ ├── _vehicle_capacity_configuration.html.haml │ │ ├── create.js.erb │ │ ├── destroy.js.erb │ │ ├── edit.js.erb │ │ ├── list.js.erb │ │ ├── new.js.erb │ │ └── update.js.erb │ ├── vehicle_compliances │ │ ├── _ask_for_reoccuring.js.erb │ │ ├── _form.html.haml │ │ ├── _vehicle_compliance.html.haml │ │ ├── create.js.erb │ │ ├── destroy.js.erb │ │ ├── edit.html.erb │ │ ├── edit.js.erb │ │ ├── index.js.erb │ │ ├── new.html.erb │ │ ├── new.js.erb │ │ ├── show.js.erb │ │ └── update.js.erb │ ├── vehicle_maintenance_compliances │ │ ├── _create_next_event.js.erb │ │ ├── _form.html.erb │ │ ├── _javascript.js.erb │ │ ├── _vehicle_maintenance_compliance.html.haml │ │ ├── create.js.erb │ │ ├── destroy.js.erb │ │ ├── edit.html.erb │ │ ├── edit.js.erb │ │ ├── index.js.erb │ │ ├── new.html.erb │ │ ├── new.js.erb │ │ ├── show.js.erb │ │ └── update.js.erb │ ├── vehicle_maintenance_events │ │ ├── _form.html.erb │ │ ├── _vehicle_maintenance_event.html.haml │ │ ├── create.js.erb │ │ ├── destroy.js.erb │ │ ├── edit.html.erb │ │ ├── edit.js.erb │ │ ├── new.html.erb │ │ ├── new.js.erb │ │ ├── show.js.erb │ │ └── update.js.erb │ ├── vehicle_maintenance_schedule_types │ │ ├── _form.html.erb │ │ ├── _vehicle_maintenance_schedule_type.html.haml │ │ ├── create.js.erb │ │ ├── destroy.js.erb │ │ ├── edit.js.erb │ │ ├── index.html.haml │ │ ├── new.js.erb │ │ └── update.js.erb │ ├── vehicle_maintenance_schedules │ │ ├── _form.html.haml │ │ ├── _form_DEPRECATED.html.erb │ │ ├── _vehicle_maintenance_schedule.html.haml │ │ ├── create.js.erb │ │ ├── destroy.js.erb │ │ ├── edit.js.erb │ │ ├── index.html.haml │ │ ├── new.js.erb │ │ └── update.js.erb │ ├── vehicle_requirement_templates │ │ ├── _form.html.haml │ │ ├── _vehicle_requirement_template.html.haml │ │ ├── edit.html.haml │ │ ├── index.html.haml │ │ ├── new.html.haml │ │ └── show.html.haml │ ├── vehicle_types │ │ ├── _form.html.erb │ │ ├── _vehicle_type.html.haml │ │ ├── create.js.erb │ │ ├── destroy.js.erb │ │ ├── edit.js.erb │ │ ├── index.html.haml │ │ ├── new.js.erb │ │ ├── show.html.haml │ │ └── update.js.erb │ ├── vehicle_warranties │ │ ├── _form.html.haml │ │ ├── _vehicle_warranty.html.haml │ │ ├── create.js.erb │ │ ├── destroy.js.erb │ │ ├── edit.html.erb │ │ ├── edit.js.erb │ │ ├── new.html.erb │ │ ├── new.js.erb │ │ ├── show.js.erb │ │ └── update.js.erb │ └── vehicles │ │ ├── _additional_info_panel.html.haml │ │ ├── _compliance_events_panel.html.haml │ │ ├── _details_panel.html.haml │ │ ├── _documentation_panel.html.haml │ │ ├── _form.html.haml │ │ ├── _garage_panel.html.haml │ │ ├── _legal_requirements_panel.html.haml │ │ ├── _maintenance_events_panel.html.haml │ │ ├── _non_legal_requirements_panel.html.haml │ │ ├── _vehicle.html.haml │ │ ├── _vehicle_compliances_table.html.haml │ │ ├── _vehicle_maintenance_compliances_table.html.haml │ │ ├── _warranties_panel.html.haml │ │ ├── active_on_date.js.erb │ │ ├── edit.html.haml │ │ ├── edit_initial_mileage.html.haml │ │ ├── index.html.haml │ │ ├── new.html.haml │ │ └── show.html.haml └── worker │ ├── address_upload_worker.rb │ ├── chat_alert_dismiss_worker.rb │ ├── chat_worker.rb │ ├── emergency_alert_dismiss_worker.rb │ ├── emergency_alert_worker.rb │ ├── eta_update_worker.rb │ ├── manifest_notification_worker.rb │ ├── run_distance_calculation_worker.rb │ └── trip_distance_calculation_worker.rb ├── bin ├── bundle ├── rails ├── rake ├── rspec ├── setup ├── spring ├── update └── yarn ├── config.ru ├── config ├── app.yml ├── app_config_template.yml ├── application.example.yml ├── application.rb ├── boot.rb ├── cable.yml ├── database.yml.docker ├── database.yml.example.pg ├── database.yml.travis ├── environment.rb ├── environments │ ├── development.rb │ ├── integration.rb │ ├── production.rb │ ├── qa.rb │ └── test.rb ├── initializers │ ├── 01_load_app_config.rb │ ├── action_cable.rb │ ├── application_controller_renderer.rb │ ├── assets.rb │ ├── attribute_normalizer.rb │ ├── aws.rb │ ├── backtrace_silencers.rb │ ├── cad_avl.rb │ ├── content_security_policy.rb │ ├── cookies_serializer.rb │ ├── date_time_formats.rb │ ├── devise.rb │ ├── exception_notification.rb │ ├── figaro.rb │ ├── filter_parameter_logging.rb │ ├── inflections.rb │ ├── mime_types.rb │ ├── new_framework_defaults.rb │ ├── new_framework_defaults_5_1.rb │ ├── new_framework_defaults_5_2.rb │ ├── paper_trail.rb │ ├── paperclip.rb │ ├── ruby_xl.rb │ ├── session_store.rb │ ├── sidekiq.rb │ ├── simple_token_authentication.rb │ ├── smtp_mail.rb │ ├── validate_uniqueness_of_in_memory.rb │ ├── validates_timeliness.rb │ ├── version.rb │ ├── wicked_pdf.rb │ ├── will_paginate.rb │ └── wrap_parameters.rb ├── locales │ ├── devise.en.yml │ ├── devise.security_extension.de.yml │ ├── devise.security_extension.en.yml │ ├── en.yml │ ├── rails_defaults_en.yml │ └── validates_timeliness.en.yml ├── puma.rb ├── routes.rb ├── schedule.rb ├── secrets.yml ├── sidekiq.yml ├── spring.rb ├── storage.yml └── unicorn.rb ├── db ├── address_uploading_test │ └── test_addresses.csv ├── data │ └── 20180213171621_add_user_tokens.rb ├── data_schema.rb ├── legacy.rb ├── migrate │ ├── 20110301215657_init_db.rb │ ├── 20110302204930_devise_create_users.rb │ ├── 20110302210024_providers.rb │ ├── 20110302235658_add_trimet_region.rb │ ├── 20110303172837_add_lat_lon_to_addresses.rb │ ├── 20110303174006_add_providers_to_everything.rb │ ├── 20110303175051_add_monthly.rb │ ├── 20110303201615_add_current_provider.rb │ ├── 20110304000356_defaults.rb │ ├── 20110308160847_add_workflow_to_trips.rb │ ├── 20110308163347_rename_clients_to_customers.rb │ ├── 20110308185345_add_defaults_for_workflow.rb │ ├── 20110308213212_add_repeating_trips.rb │ ├── 20110315223805_add_provider_id_to_monthlies.rb │ ├── 20110316183442_create_vehicle_maintenance.rb │ ├── 20110316195622_add_active_to_vehicles.rb │ ├── 20110316203818_add_group_to_customer.rb │ ├── 20110316215133_add_attachment_logo_to_providers.rb │ ├── 20110322214656_add_cab_status_to_trip.rb │ ├── 20110325155152_create_travel_time.rb │ ├── 20110325155517_add_guest_info_to_trips.rb │ ├── 20110405221252_add_compliments_complaints.rb │ ├── 20110406182049_add_in_district_to_trip.rb │ ├── 20110407160000_add_fiscal_year.rb │ ├── 20110412194414_add_date_indices.rb │ ├── 20110412231244_call_back_stamps.rb │ ├── 20110412233038_remove_trip_confirmed.rb │ ├── 20110414173938_funding_source_shown_to.rb │ ├── 20110415035738_make_role_fine_grained.rb │ ├── 20110419152042_add_real_times_to_run.rb │ ├── 20110420001245_lengthen_schedule_yaml.rb │ ├── 20110420223646_rename_called_back_by.rb │ ├── 20110421204717_expand_notes.rb │ ├── 20110427165144_unify_driver_names.rb │ ├── 20110517195041_add_house_keeping.rb │ ├── 20110621175302_change_trips_add_round_trip.rb │ ├── 20110622184704_change_address_add_phone_number.rb │ ├── 20110622210256_change_trips_reset_default_for_trip_result.rb │ ├── 20110627162828_change_addresses_add_inactive_flag.rb │ ├── 20110716191810_create_devices.rb │ ├── 20110716192143_create_device_pools.rb │ ├── 20110718172434_change_providers_add_dispatch.rb │ ├── 20110724172639_change_devices_add_android_id.rb │ ├── 20110725195842_change_devices_to_device_pool_users.rb │ ├── 20110725200527_change_users_add_driver_id.rb │ ├── 20110727161049_change_users_drivers_and_device_pool_users.rb │ ├── 20110803213858_change_device_pool_drivers_add_posted_at.rb │ ├── 20110805222642_change_providers_add_scheduling.rb │ ├── 20110812184549_change_addresses_add_default_purpose.rb │ ├── 20110815214441_change_vehicles_add_default_driver_id.rb │ ├── 20110817170823_add_round_trip_to_repeating_trips.rb │ ├── 20111020231842_add_fiscal_functions.rb │ ├── 20111215002917_add_driver_id_and_vehicle_id_to_repeating_trips.rb │ ├── 20111223183142_add_cab_to_repeating_trips.rb │ ├── 20120411044930_fix_time_zone_in_existing_data.rb │ ├── 20120425220752_add_vehicle_id_to_device_pool_drivers.rb │ ├── 20120613052228_add_customer_informed_to_repeating_trips.rb │ ├── 20120625174437_add_reportable_to_vehicles.rb │ ├── 20120810192249_remove_rememberable_user_password.rb │ ├── 20120815201934_add_home_position_to_provider.rb │ ├── 20120912055603_add_viewport_position_to_provider.rb │ ├── 20130408184524_remove_in_district_from_trips.rb │ ├── 20130510124547_add_medicaid_eligible_to_customers.rb │ ├── 20130510151226_add_prime_number_to_customers.rb │ ├── 20130510154717_add_medicaid_eligible_to_trips.rb │ ├── 20130514160053_add_mileage_to_trips.rb │ ├── 20130528202007_add_allow_trip_entry_from_runs_page_to_providers.rb │ ├── 20130530203929_add_default_funding_source_id_to_customers.rb │ ├── 20130530211930_create_provider_ethnicities.rb │ ├── 20130530220759_import_provider_ethnicites.rb │ ├── 20130618170759_add_ada_eligible_to_customers.rb │ ├── 20130618182852_add_default_service_level_to_customers.rb │ ├── 20130618183156_add_service_level_to_trips.rb │ ├── 20130618195429_add_reimbursement_fees_to_providers.rb │ ├── 20130625213241_remove_sdsd_per_ride_reimbursement_rate_from_providers.rb │ ├── 20130627143200_add_funding_source_id_to_monthlies.rb │ ├── 20130627201334_remove_unnecessary_columns_from_monthlies.rb │ ├── 20150120232237_add_devise_2_fields_to_users.rb │ ├── 20150205164420_create_versions.rb │ ├── 20150224063651_change_geometry_columns_to_new_format.rb │ ├── 20150630134034_add_reference_index.rb │ ├── 20150703195053_add_changeset_to_versions.rb │ ├── 20150706202929_create_trip_purposes.rb │ ├── 20150706203217_add_trip_purpose_references.rb │ ├── 20150707153444_create_trip_results.rb │ ├── 20150707154703_add_trip_result_references.rb │ ├── 20150707162249_flag_old_trip_purpose_columns.rb │ ├── 20150707162440_flag_old_trip_result_columns.rb │ ├── 20150707184413_create_service_levels.rb │ ├── 20150707184600_add_service_level_references.rb │ ├── 20150707185003_flag_old_service_level.rb │ ├── 20150707214143_create_lookup_tables.rb │ ├── 20150708153506_add_deleted_at_to_lookup_tables.rb │ ├── 20150709200502_add_permissions_to_lookup_tables.rb │ ├── 20150713143556_add_deleted_at_to_lookup_configuration_table.rb │ ├── 20150715133816_remove_deleted_at_from_lookup_tables.rb │ ├── 20150720175500_create_settings.rb │ ├── 20150720181030_setup_devise_security_extensions.rb │ ├── 20150721160719_add_email_to_drivers.rb │ ├── 20150721162200_devise_update_user_expire_fields.rb │ ├── 20150721180617_create_customer_provider_join_table.rb │ ├── 20150721190126_add_inactivation_reason_to_users.rb │ ├── 20150721211056_create_operating_hours.rb │ ├── 20150723140425_create_driver_histories.rb │ ├── 20150723203943_create_driver_compliances.rb │ ├── 20150724133111_create_documents.rb │ ├── 20150727030205_add_notes_to_addresses.rb │ ├── 20150730192706_create_recurring_driver_compliances.rb │ ├── 20150803210524_create_address_upload_flags.rb │ ├── 20150803215820_add_last_upload_summary_to_address_upload_flags.rb │ ├── 20150803224056_set_in_district_as_false_in_addresses.rb │ ├── 20150804200356_create_document_associations.rb │ ├── 20150804200701_create_field_configs.rb │ ├── 20150805210628_add_provider_specific_to_lookup_tables.rb │ ├── 20150806152735_add_unique_index_to_document_associations.rb │ ├── 20150807205700_create_reporting_reports.reporting.rb │ ├── 20150807205701_create_reporting_filter_groups.reporting.rb │ ├── 20150807205702_create_reporting_filter_types.reporting.rb │ ├── 20150807205703_create_reporting_lookup_tables.reporting.rb │ ├── 20150807205704_create_reporting_fields.reporting.rb │ ├── 20150807205705_rename_alias_to_title_in_field_table.reporting.rb │ ├── 20150807205706_create_reporting_output_fields.reporting.rb │ ├── 20150807205707_rename_fields_to_filter_fields.reporting.rb │ ├── 20150807205708_drop_columns_from_filter_fields.reporting.rb │ ├── 20150807205709_add_sort_order_to_reporting_filter_fields.reporting.rb │ ├── 20150807205710_remove_columns_from_reporting_filter_type.reporting.rb │ ├── 20150807205711_add_formatter_to_reporting_output_fields.reporting.rb │ ├── 20150807205712_add_formatter_option_to_reporting_output_fields.reporting.rb │ ├── 20150807205713_add_sort_order_to_reporting_filter_groups.reporting.rb │ ├── 20150807205714_create_reporting_specific_filter_groups.reporting.rb │ ├── 20150807205715_add_id_field_name_to_reporting_lookup_tables.reporting.rb │ ├── 20150807205716_add_value_type_to_reporting_filter_fields.reporting.rb │ ├── 20150807205717_add_primary_key_to_reporting_reports.reporting.rb │ ├── 20150809142704_create_reports.rb │ ├── 20150809143923_create_provider_reports.rb │ ├── 20150809170119_add_redirect_to_results_to_custom_reports.rb │ ├── 20150810231635_remove_provider_id_from_vehicle_maintenance_events.rb │ ├── 20150811000134_add_title_to_custom_reports.rb │ ├── 20150811115350_add_new_fields_to_vehicles.rb │ ├── 20150811164030_create_vehicle_maintenance_compliances.rb │ ├── 20150811210219_add_data_access_fields_to_reporting_lookup_tables.rb │ ├── 20150812182535_add_sort_order_to_reporting_output_fields.rb │ ├── 20150813114622_create_vehicle_warranties.rb │ ├── 20150814183147_create_recurring_vehicle_maintenance_compliances.rb │ ├── 20150817135157_rename_compliance_date_based_scheduling_on_recurring_driver_compliance.rb │ ├── 20150817211254_alter_compliance_based_scheduling_column_on_recurring_vehicle_maintenance_compliances.rb │ ├── 20150818165509_add_recurring_vehicle_maintenance_compliance_id_to_vehicle_maintenance_compliances.rb │ ├── 20150819004709_add_compliance_mileage_to_vehicle_maintenance_compliances.rb │ ├── 20150824144415_add_fields_required_for_run_completion_to_providers.rb │ ├── 20150901150415_create_customer_addresses.rb │ ├── 20150902182615_create_repeating_runs.rb │ ├── 20150910191026_add_address_id_to_drivers.rb │ ├── 20150913131643_add_is_elderly_to_customers.rb │ ├── 20150913133412_add_gender_to_customers.rb │ ├── 20150915132551_add_deleted_at_to_major_tables.rb │ ├── 20150915200747_add_is_primary_to_regions.rb │ ├── 20150915203332_add_message_to_customers.rb │ ├── 20150915211755_create_donations.rb │ ├── 20150915212939_add_customer_reference_to_donations.rb │ ├── 20150915213109_add_user_reference_to_donations.rb │ ├── 20150916180653_add_mobility_device_accomomdations_to_vehicles.rb │ ├── 20150916194929_add_trip_reference_to_donations.rb │ ├── 20150920153317_create_hidden_lookup_table_values.rb │ ├── 20150920153515_remove_is_provider_specific_from_lookup_tables.rb │ ├── 20150921173350_add_min_trip_time_gap_to_providers.rb │ ├── 20150922005249_add_direction_to_trips.rb │ ├── 20150922010335_add_direction_to_repeating_trips.rb │ ├── 20150922221243_add_is_group_to_reporting_output_fields.rb │ ├── 20150922221314_add_alias_name_to_reporting_output_fields.rb │ ├── 20150922224713_rename_is_group_to_group_by_in_reporting_output_fields.rb │ ├── 20150923133847_create_eligibilities.rb │ ├── 20150923141757_create_customer_eligibilities.rb │ ├── 20150923143433_add_eligible_to_customer_eligibilities.rb │ ├── 20150923201439_add_result_reason_to_trips.rb │ ├── 20150924182755_change_operating_hours_to_polymorphic.rb │ ├── 20150924190007_add_operatable_type_to_operating_hours.rb │ ├── 20150924203254_add_index_to_operating_hours.rb │ ├── 20150926192913_add_linking_trip_id_to_trips.rb │ ├── 20150927215504_add_customer_reference_to_addresses.rb │ ├── 20150928194320_add_drive_distance_to_trips.rb │ ├── 20151002192228_add_mobility_device_accommodations_to_trips.rb │ ├── 20151006213353_add_phone_number_to_drivers.rb │ ├── 20151006222637_add_is_driver_associated_to_addresses.rb │ ├── 20151007183041_create_booking_users.rb │ ├── 20151007194255_add_deleted_at_to_booking_users.rb │ ├── 20151007205406_add_url_to_booking_users.rb │ ├── 20151007210204_add_token_to_customers.rb │ ├── 20151008153619_enable_uuid_extension.rb │ ├── 20151008153741_change_token_column_type_to_uuid.rb │ ├── 20151008194507_change_customer_token_to_string.rb │ ├── 20151019181344_rename_provider_ethnicities.rb │ ├── 20151020210844_add_description_to_trip_results.rb │ ├── 20151102213525_drop_default_from_a_in_district_column.rb │ ├── 20151118225032_add_columns_to_lookup_tables.rb │ ├── 20160701151558_add_initial_mileage_to_vehicles.rb │ ├── 20170325193943_add_is_user_associated_to_addresses.rb │ ├── 20170325194119_add_more_fields_to_users.rb │ ├── 20170327183900_add_customer_nonsharable_to_providers.rb │ ├── 20170327190825_add_inactivated_date_to_providers.rb │ ├── 20170330145943_add_alt_address_id_to_drivers.rb │ ├── 20170330174557_create_images.rb │ ├── 20170331174215_add_alt_phone_number_to_drivers.rb │ ├── 20170404182808_add_date_range_to_repeating_trips.rb │ ├── 20170404183016_add_date_range_to_repeating_runs.rb │ ├── 20170404184512_add_advance_day_scheduling_to_providers.rb │ ├── 20170405200926_create_customer_address_types.rb │ ├── 20170405201148_add_deleted_at_to_customer_address_types.rb │ ├── 20170407175858_add_type_to_addresses.rb │ ├── 20170412152843_add_fields_to_repeating_trips.rb │ ├── 20170413205215_add_comments_to_repeating_trips.rb │ ├── 20170413205331_add_comments_to_repeating_runs.rb │ ├── 20170414170128_add_repeating_run_to_repeating_trips.rb │ ├── 20170428154133_add_cab_enabled_to_providers.rb │ ├── 20170501213640_add_unpaid_driver_break_time_to_repeating_runs.rb │ ├── 20170503192537_add_eligible_age_to_providers.rb │ ├── 20170508160816_add_garage_address_to_vehicle.rb │ ├── 20170510145034_add_garage_phone_number_to_vehicle.rb │ ├── 20170516152512_create_activities.rb │ ├── 20170517160112_add_initial_mileage_change_reason_to_vehicles.rb │ ├── 20170517181854_add_run_tracking_to_providers.rb │ ├── 20170517191545_add_tracking_fields_to_trips.rb │ ├── 20170519175021_create_emergency_contacts.rb │ ├── 20170519190343_add_scheduled_through_to_repeating_runs.rb │ ├── 20170522163137_add_deleted_at_to_emergency_contact.rb │ ├── 20170522180407_add_scheduled_through_to_repeating_trips.rb │ ├── 20170524152920_create_travel_trainings.rb │ ├── 20170526182317_create_funding_authorization_numbers.rb │ ├── 20170527212202_add_place_notes_to_trips.rb │ ├── 20170601185441_add_place_notes_to_repeating_trips.rb │ ├── 20170601205119_add_inactivated_dates_to_drivers.rb │ ├── 20170602165555_add_inactivated_dates_to_vehicle.rb │ ├── 20170602202932_create_verification_questions.rb │ ├── 20170603222138_create_driver_requirement_templates.rb │ ├── 20170604220728_add_legal_to_driver_compliance.rb │ ├── 20170605154423_create_vehicle_warranty_templates.rb │ ├── 20170605154811_create_provider_lookup_tables.rb │ ├── 20170605164722_add_provider_id_to_funding_sources.rb │ ├── 20170606172733_add_reoccuring_to_driver_requirement_templates.rb │ ├── 20170606175031_add_deleted_at_to_driver_requirement_templates.rb │ ├── 20170606175102_add_requirement_template_reference_to_driver_compliances.rb │ ├── 20170607201930_create_vehicle_maintenance_schedule_types.rb │ ├── 20170607202015_create_vehicle_maintenance_schedules.rb │ ├── 20170608143015_add_provider_id_to_vehicle_maintenance_schedule_types.rb │ ├── 20170608213123_add_vehicle_maintenance_schedule_type_id_to_vehicles.rb │ ├── 20170608220748_add_vehicle_maintenance_schedule_id_to_vehicle_maintenance_compliances.rb │ ├── 20170609135940_remove_unique_index_to_document_associations.rb │ ├── 20170614172325_add_inactive_fields_to_customers.rb │ ├── 20170618231357_add_fields_to_providers.rb │ ├── 20170620191112_add_comments_to_customers.rb │ ├── 20170624130910_create_vehicle_requirement_templates.rb │ ├── 20170624133401_create_vehicle_compliances.rb │ ├── 20170625200226_create_address_groups.rb │ ├── 20170625200421_add_address_group_to_addresses.rb │ ├── 20170705134627_create_ada_questions.rb │ ├── 20170705144124_create_customer_ada_questions.rb │ ├── 20170705152843_add_ada_ineligible_reason_to_customers.rb │ ├── 20170721121909_add_is_stand_by_to_trips.rb │ ├── 20170725191244_add_manifest_order_to_runs.rb │ ├── 20170725191423_add_manifest_order_to_repeating_runs.rb │ ├── 20170726184037_add_driver_notified_to_trips.rb │ ├── 20170802212800_create_weekday_assignments.rb │ ├── 20170809222718_create_repeating_run_manifest_orders.rb │ ├── 20170919202237_add_cancelled_to_runs.rb │ ├── 20170920191021_add_code_to_customers.rb │ ├── 20170921181949_create_run_distances.rb │ ├── 20170927153219_add_garage_to_runs.rb │ ├── 20170929204716_create_capacity_types.rb │ ├── 20170929213738_create_vehicle_types.rb │ ├── 20170929214020_create_vehicle_capacities.rb │ ├── 20171001141424_add_vehicle_type_to_vehicles.rb │ ├── 20171011201136_rename_vehicle_capacities.rb │ ├── 20171013185208_add_version_to_custom_report.rb │ ├── 20171031153307_add_uncomplete_reason_to_runs.rb │ ├── 20171101195547_create_vehicle_capacity_configurations.rb │ ├── 20171103153810_create_ridership_mobility_mappings.rb │ ├── 20171108203912_add_occupancy_fields_to_trips.rb │ ├── 20171108204027_add_occupancy_fields_to_repeating_trips.rb │ ├── 20171122162440_create_planned_leaves.rb │ ├── 20171122183659_create_daily_operating_hours.rb │ ├── 20171124193127_add_fields_to_operating_hours.rb │ ├── 20171128213438_add_driver_availability_settings_to_providers.rb │ ├── 20171206164011_add_time_string_to_runs.rb │ ├── 20171216221909_create_saved_custom_reports.rb │ ├── 20171222151126_add_ntd_reportable_field.rb │ ├── 20171222152038_add_reportable_default.rb │ ├── 20180102200133_create_vehicle_monthly_trackings.rb │ ├── 20180102225807_add_passenger_miles_to_run_distance.rb │ ├── 20180103172125_add_eta_columns.rb │ ├── 20180105173603_create_itineraries.rb │ ├── 20180107042410_create_repeating_itineraries.rb │ ├── 20180122215028_add_ntd_stats_to_run_distance.rb │ ├── 20180122230400_add_wday_to_repeating_itinerary.rb │ ├── 20180123045647_change_lookup_table_column_name.rb │ ├── 20180123203711_add_depart_time_to_itineraries.rb │ ├── 20180123212519_change_early_pickup_allowed_field_type.rb │ ├── 20180124003730_change_repeating_trip_early_pickup_allowed.rb │ ├── 20180125210854_add_linking_trip_id_to_repeating_trips.rb │ ├── 20180202203233_add_ntd_reportable_to_funding_sources.rb │ ├── 20180213170123_add_authentication_token_to_users.rb │ ├── 20180309164904_add_status_code_to_itineraries.rb │ ├── 20180322195456_create_vehicle_inspections.rb │ ├── 20180323150613_create_run_vehicle_inspections.rb │ ├── 20180324164552_create_fares.rb │ ├── 20180324164641_add_fare_references.rb │ ├── 20180324174113_add_fare_amount_to_trip.rb │ ├── 20180326144304_create_gps_locations.rb │ ├── 20180327010525_remove_fixed_fare_from_fare.rb │ ├── 20180327164006_add_fare_collected_time_to_trips.rb │ ├── 20180328194209_tweak_columns_in_gps_locations.rb │ ├── 20180504185500_create_public_itineraries.rb │ ├── 20180504194927_add_manifest_published_at_to_runs.rb │ ├── 20180507200426_add_manifest_changed_to_runs.rb │ ├── 20180508160025_add_deleted_at_to_itineraries.rb │ ├── 20180524144222_create_message_templates.rb │ ├── 20180524184400_create_messages.rb │ ├── 20180529214015_add_driver_id_to_messages.rb │ ├── 20180701195328_create_chat_read_receipts.rb │ ├── 20180701220839_add_run_id_to_message.rb │ ├── 20180805183603_add_fields_to_vehicle_inspections.rb │ ├── 20180818025821_rename_field.rb │ └── 20190302211128_add_is5310_reportable_to_vehicles.rb ├── schema.rb ├── seeds.rb ├── tasks │ ├── categorize_addresses.rb │ ├── find_missing_translation_keys.rb │ ├── migrate_v1_service_level.rb │ ├── migrate_v1_trip_purpose.rb │ ├── migrate_v1_trip_result.rb │ ├── seed_address_groups.rb │ ├── seed_custom_reports.rb │ ├── seed_customer_address_codes.rb │ ├── seed_eligibilities.rb │ ├── seed_ethnicities.rb │ ├── seed_lookup_table_configurations.rb │ ├── seed_mobilities.rb │ ├── seed_provider_lookup_table_configurations.rb │ ├── seed_service_levels.rb │ ├── seed_trip_purposes.rb │ ├── seed_trip_results.rb │ └── seed_v2_custom_reports.rb └── trimet.wkt ├── doc └── README_FOR_APP ├── docker-compose.yml ├── docker ├── .env ├── app │ └── Dockerfile └── web │ ├── Dockerfile │ └── nginx.conf ├── lib ├── assets │ ├── .keep │ └── javascripts │ │ └── idletimeout.js ├── capistrano │ └── tasks │ │ ├── rails_console.rake │ │ ├── restart.rake │ │ └── seed.rake ├── legacy_helper.rb └── tasks │ ├── .gitkeep │ ├── .keep │ ├── demo.rake │ ├── fake_drivers.rake │ ├── legacy.rake │ ├── locales.rake │ ├── ridepilot.rake │ ├── scheduler.rake │ ├── sql.rake │ ├── test.rake │ └── utility.rake ├── log └── .keep ├── public ├── 403.html ├── 404.html ├── 422.html ├── 500.html ├── Guide │ ├── 1_Introduction.htm │ ├── 2_UserTypes.htm │ ├── 3_AccessingRidePilot.htm │ ├── 4_Login.htm │ ├── 5_UserInterface.htm │ ├── 6_Help.htm │ ├── 7_Tabs.htm │ ├── 8_Processes.htm │ ├── css │ │ ├── chmprocessor.css │ │ ├── layout-default-latest.css │ │ └── redmond │ │ │ ├── images │ │ │ ├── animated-overlay.gif │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ ├── ui-bg_flat_55_fbec88_40x100.png │ │ │ ├── ui-bg_glass_75_d0e5f5_1x400.png │ │ │ ├── ui-bg_glass_85_dfeffc_1x400.png │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ ├── ui-bg_gloss-wave_55_5c9ccc_500x100.png │ │ │ ├── ui-bg_inset-hard_100_f5f8f9_1x100.png │ │ │ ├── ui-bg_inset-hard_100_fcfdfd_1x100.png │ │ │ ├── ui-icons_217bc0_256x240.png │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ ├── ui-icons_469bdd_256x240.png │ │ │ ├── ui-icons_6da8d5_256x240.png │ │ │ ├── ui-icons_cd0a0a_256x240.png │ │ │ ├── ui-icons_d8e7f3_256x240.png │ │ │ └── ui-icons_f9bd01_256x240.png │ │ │ ├── jquery-ui-1.10.3.custom.css │ │ │ └── jquery-ui-1.10.3.custom.min.css │ ├── document-print.png │ ├── embeddedstyles.css │ ├── go-home.png │ ├── go-next.png │ ├── go-previous.png │ ├── guide_files │ │ ├── image001.png │ │ ├── image002.png │ │ ├── image003.jpg │ │ ├── image004.jpg │ │ ├── image005.jpg │ │ ├── image006.png │ │ ├── image007.png │ │ ├── image008.jpg │ │ ├── image009.jpg │ │ ├── image010.jpg │ │ ├── image011.jpg │ │ ├── image012.jpg │ │ ├── image013.jpg │ │ ├── image014.jpg │ │ ├── image015.jpg │ │ ├── image016.png │ │ ├── image017.png │ │ ├── image018.png │ │ ├── image019.png │ │ ├── image020.jpg │ │ ├── image021.png │ │ ├── image022.png │ │ ├── image023.jpg │ │ ├── image024.jpg │ │ ├── image025.png │ │ ├── image026.png │ │ ├── image027.png │ │ ├── image028.png │ │ ├── image029.png │ │ ├── image030.png │ │ ├── image031.png │ │ ├── image032.png │ │ ├── image033.png │ │ ├── image034.png │ │ ├── image035.png │ │ ├── image036.png │ │ ├── image037.png │ │ ├── image038.png │ │ ├── image039.jpg │ │ ├── image040.png │ │ ├── image041.png │ │ ├── image042.jpg │ │ ├── image043.jpg │ │ ├── image044.jpg │ │ ├── image045.png │ │ ├── image046.png │ │ ├── image047.png │ │ ├── image048.jpg │ │ ├── image049.jpg │ │ ├── image050.png │ │ ├── image051.jpg │ │ ├── image052.jpg │ │ ├── image053.jpg │ │ ├── image054.jpg │ │ ├── image055.jpg │ │ ├── image056.jpg │ │ ├── image057.jpg │ │ ├── image058.jpg │ │ ├── image059.jpg │ │ ├── image060.jpg │ │ ├── image061.jpg │ │ ├── image062.png │ │ ├── image063.jpg │ │ ├── image064.jpg │ │ ├── image065.jpg │ │ ├── image066.jpg │ │ ├── image067.jpg │ │ ├── image068.jpg │ │ ├── image069.jpg │ │ ├── image070.jpg │ │ ├── image071.jpg │ │ ├── image072.jpg │ │ ├── image073.jpg │ │ ├── image074.jpg │ │ ├── image075.jpg │ │ ├── image076.jpg │ │ ├── image077.jpg │ │ ├── image078.jpg │ │ ├── image079.jpg │ │ ├── image080.jpg │ │ ├── image081.jpg │ │ ├── image082.jpg │ │ ├── image083.jpg │ │ ├── image084.jpg │ │ ├── image085.jpg │ │ ├── image086.png │ │ ├── image087.jpg │ │ ├── image088.jpg │ │ ├── image089.jpg │ │ ├── image090.jpg │ │ ├── image091.jpg │ │ ├── image092.jpg │ │ ├── image093.jpg │ │ ├── image094.jpg │ │ ├── image095.jpg │ │ ├── image096.png │ │ ├── image097.png │ │ ├── image098.jpg │ │ ├── image099.png │ │ ├── image100.jpg │ │ ├── image101.png │ │ ├── image102.jpg │ │ ├── image103.png │ │ ├── image104.jpg │ │ ├── image105.jpg │ │ ├── image106.jpg │ │ ├── image107.jpg │ │ ├── image108.jpg │ │ ├── image109.png │ │ ├── image110.png │ │ ├── image111.jpg │ │ ├── image112.jpg │ │ ├── image113.jpg │ │ ├── image114.jpg │ │ ├── image115.jpg │ │ ├── image116.png │ │ ├── image117.jpg │ │ ├── image118.jpg │ │ ├── image119.jpg │ │ ├── image120.jpg │ │ ├── image121.jpg │ │ ├── image122.png │ │ ├── image123.jpg │ │ ├── image124.jpg │ │ ├── image125.jpg │ │ ├── image126.jpg │ │ ├── image127.jpg │ │ ├── image128.jpg │ │ ├── image129.jpg │ │ ├── image130.png │ │ ├── image131.jpg │ │ ├── image132.jpg │ │ ├── image133.jpg │ │ ├── image134.jpg │ │ ├── image135.jpg │ │ ├── image136.jpg │ │ ├── image137.jpg │ │ ├── image138.png │ │ ├── image139.jpg │ │ ├── image140.png │ │ ├── image141.jpg │ │ ├── image142.png │ │ ├── image143.jpg │ │ ├── image144.jpg │ │ ├── image145.jpg │ │ ├── image146.png │ │ ├── image147.png │ │ ├── image148.png │ │ ├── image149.jpg │ │ ├── image150.png │ │ ├── image151.jpg │ │ ├── image152.png │ │ ├── image153.jpg │ │ ├── image154.png │ │ ├── image155.png │ │ ├── image156.jpg │ │ ├── image157.png │ │ ├── image158.jpg │ │ ├── image159.jpg │ │ ├── image160.jpg │ │ ├── image161.jpg │ │ ├── image162.jpg │ │ ├── image163.jpg │ │ ├── image164.jpg │ │ ├── image165.jpg │ │ ├── image166.jpg │ │ ├── image167.png │ │ ├── image168.png │ │ ├── image169.jpg │ │ ├── image170.png │ │ ├── image171.jpg │ │ ├── image172.jpg │ │ ├── image173.jpg │ │ ├── image174.jpg │ │ ├── image175.png │ │ ├── image176.jpg │ │ ├── image177.png │ │ ├── image178.png │ │ ├── image179.png │ │ ├── image180.jpg │ │ ├── image181.png │ │ ├── image182.jpg │ │ ├── image183.jpg │ │ ├── image184.png │ │ ├── image185.jpg │ │ ├── image186.jpg │ │ ├── image187.png │ │ ├── image188.png │ │ ├── image189.png │ │ ├── image190.png │ │ ├── image191.png │ │ ├── image192.png │ │ ├── image193.png │ │ ├── image194.jpg │ │ ├── image195.png │ │ ├── image196.png │ │ ├── image197.png │ │ ├── image198.png │ │ ├── image199.png │ │ ├── image200.png │ │ ├── image201.png │ │ ├── image202.png │ │ ├── image203.png │ │ ├── image204.png │ │ ├── image205.png │ │ ├── image206.png │ │ ├── image207.png │ │ ├── image208.jpg │ │ ├── image209.png │ │ ├── image210.png │ │ ├── image211.png │ │ ├── image212.png │ │ ├── image213.png │ │ ├── image214.png │ │ ├── image215.png │ │ ├── image216.png │ │ ├── image217.png │ │ ├── image218.png │ │ ├── image219.png │ │ ├── image220.png │ │ ├── image221.png │ │ ├── image222.png │ │ ├── image223.png │ │ ├── image224.png │ │ ├── image225.png │ │ ├── image226.png │ │ ├── image227.png │ │ ├── image228.jpg │ │ ├── image229.png │ │ ├── image230.jpg │ │ ├── image231.jpg │ │ ├── image232.jpg │ │ ├── image233.jpg │ │ ├── image234.jpg │ │ ├── image235.png │ │ ├── image236.png │ │ ├── image237.png │ │ ├── image238.jpg │ │ ├── image239.jpg │ │ ├── image240.jpg │ │ ├── image241.jpg │ │ ├── image242.png │ │ ├── image243.jpg │ │ ├── image244.png │ │ ├── image245.jpg │ │ ├── image246.jpg │ │ ├── image247.png │ │ ├── image248.jpg │ │ ├── image249.jpg │ │ ├── image250.jpg │ │ ├── image251.png │ │ ├── image252.png │ │ ├── image253.png │ │ ├── image254.png │ │ ├── image255.jpg │ │ ├── image256.jpg │ │ ├── image257.jpg │ │ ├── image258.jpg │ │ ├── image259.jpg │ │ ├── image260.jpg │ │ ├── image261.jpg │ │ ├── image262.png │ │ ├── image263.png │ │ ├── image264.png │ │ ├── image265.jpg │ │ ├── image266.jpg │ │ ├── image267.png │ │ ├── image268.jpg │ │ ├── image269.jpg │ │ ├── image270.jpg │ │ ├── image271.png │ │ ├── image272.png │ │ ├── image273.png │ │ ├── image274.jpg │ │ ├── image275.png │ │ ├── image276.png │ │ ├── image277.png │ │ ├── image278.jpg │ │ ├── image279.jpg │ │ ├── image280.png │ │ ├── image281.jpg │ │ ├── image282.png │ │ ├── image283.jpg │ │ ├── image284.jpg │ │ ├── image285.png │ │ ├── image286.png │ │ ├── image287.jpg │ │ ├── image288.png │ │ ├── image289.png │ │ ├── image290.jpg │ │ ├── image291.jpg │ │ ├── image292.png │ │ ├── image293.jpg │ │ ├── image294.jpg │ │ ├── image295.jpg │ │ ├── image296.png │ │ ├── image297.jpg │ │ ├── image298.png │ │ ├── image299.jpg │ │ ├── image300.jpg │ │ ├── image301.png │ │ ├── image302.jpg │ │ ├── image303.png │ │ ├── image304.png │ │ ├── image305.jpg │ │ ├── image306.png │ │ ├── image307.png │ │ ├── image308.jpg │ │ ├── image309.jpg │ │ ├── image310.png │ │ ├── image311.png │ │ ├── image312.jpg │ │ ├── image313.png │ │ ├── image314.png │ │ ├── image315.jpg │ │ ├── image316.png │ │ ├── image317.jpg │ │ ├── image318.jpg │ │ ├── image319.png │ │ ├── image320.png │ │ ├── image321.jpg │ │ ├── image322.png │ │ ├── image323.jpg │ │ ├── image324.png │ │ ├── image325.jpg │ │ ├── image326.png │ │ ├── image327.jpg │ │ ├── image328.jpg │ │ ├── image329.png │ │ ├── image330.jpg │ │ ├── image331.jpg │ │ ├── image332.jpg │ │ ├── image333.jpg │ │ ├── image334.png │ │ ├── image335.png │ │ ├── image336.jpg │ │ ├── image337.png │ │ └── image338.jpg │ ├── help-browser.png │ ├── index.html │ ├── js │ │ ├── chmprocessor.js │ │ ├── jquery-1.9.1.js │ │ ├── jquery-ui-1.10.3.custom.min.js │ │ ├── jquery.hotkeys.js │ │ ├── jquery.jstree.js │ │ ├── jquery.layout-latest.min.js │ │ └── themes │ │ │ ├── apple │ │ │ ├── bg.jpg │ │ │ ├── d.png │ │ │ ├── dot_for_ie.gif │ │ │ ├── style.css │ │ │ └── throbber.gif │ │ │ ├── classic │ │ │ ├── d.gif │ │ │ ├── d.png │ │ │ ├── dot_for_ie.gif │ │ │ ├── style.css │ │ │ └── throbber.gif │ │ │ ├── default-rtl │ │ │ ├── d.gif │ │ │ ├── d.png │ │ │ ├── dots.gif │ │ │ ├── style.css │ │ │ └── throbber.gif │ │ │ └── default │ │ │ ├── d.gif │ │ │ ├── d.png │ │ │ ├── style.css │ │ │ └── throbber.gif │ └── start.htm ├── cad_avl_data_archives │ └── 3427_2018_3.csv ├── favicon.ico ├── ntd_template.xlsx ├── robots.txt ├── uta-logo.svg ├── uta_logo.png └── uta_logo_header.png ├── spec ├── config │ └── app.yml ├── controllers │ ├── address_groups_controller_spec.rb │ ├── addresses_controller_spec.rb │ ├── api │ │ ├── v1 │ │ │ └── customers_controller_spec.rb │ │ └── v2 │ │ │ ├── base_controller_spec.rb │ │ │ ├── passwords_controller_spec.rb │ │ │ └── sessions_controller_spec.rb │ ├── cab_trips_controller_spec.rb │ ├── customers_controller_spec.rb │ ├── device_pool_drivers_controller_spec.rb │ ├── device_pools_controller_spec.rb │ ├── documents_controller_spec.rb │ ├── driver_compliances_controller_spec.rb │ ├── driver_histories_controller_spec.rb │ ├── drivers_controller_spec.rb │ ├── home_controller_spec.rb │ ├── lookup_tables_controller_spec.rb │ ├── monthlies_controller_spec.rb │ ├── provider_common_addresses_controller_spec.rb │ ├── providers_controller_spec.rb │ ├── recurring_driver_compliances_controller_spec.rb │ ├── recurring_vehicle_maintenance_compliances_controller_spec.rb │ ├── reports │ │ └── cctc_summary_report_controller_spec.rb │ ├── runs_controller_spec.rb │ ├── trips_controller_spec.rb │ ├── users_controller_spec.rb │ ├── vehicle_maintenance_compliances_controller_spec.rb │ ├── vehicle_maintenance_events_controller_spec.rb │ ├── vehicle_warranties_controller_spec.rb │ └── vehicles_controller_spec.rb ├── factories │ ├── ada_questions.rb │ ├── address_groups.rb │ ├── address_upload_flags.rb │ ├── addresses.rb │ ├── booking_users.rb │ ├── capacity_types.rb │ ├── custom_reports.rb │ ├── customer_ada_questions.rb │ ├── customer_eligibilities.rb │ ├── customers.rb │ ├── daily_operating_hours.rb │ ├── device_pool_drivers.rb │ ├── device_pools.rb │ ├── document_associations.rb │ ├── documents.rb │ ├── donations.rb │ ├── driver_compliances.rb │ ├── driver_histories.rb │ ├── driver_requirement_templates.rb │ ├── drivers.rb │ ├── eligibilities.rb │ ├── emergency_contacts.rb │ ├── field_configs.rb │ ├── funding_authorization_numbers.rb │ ├── funding_sources.rb │ ├── gps_locations.rb │ ├── hidden_lookup_table_values.rb │ ├── itineraries.rb │ ├── lookup_tables.rb │ ├── messages.rb │ ├── mobilities.rb │ ├── monthlies.rb │ ├── operating_hours.rb │ ├── planned_leaves.rb │ ├── provider_ethnicities.rb │ ├── provider_lookup_tables.rb │ ├── provider_reports.rb │ ├── providers.rb │ ├── recurring_driver_compliances.rb │ ├── recurring_vehicle_maintenance_compliances.rb │ ├── regions.rb │ ├── repeating_itineraries.rb │ ├── repeating_run_manifest_orders.rb │ ├── repeating_runs.rb │ ├── repeating_trips.rb │ ├── ridership_mobility_mappings.rb │ ├── roles.rb │ ├── run_distances.rb │ ├── runs.rb │ ├── saved_custom_reports.rb │ ├── service_levels.rb │ ├── travel_trainings.rb │ ├── trip_purposes.rb │ ├── trip_results.rb │ ├── trips.rb │ ├── users.rb │ ├── vehicle_capacities.rb │ ├── vehicle_capacity_configurations.rb │ ├── vehicle_compliances.rb │ ├── vehicle_inspections.rb │ ├── vehicle_maintenance_compliances.rb │ ├── vehicle_maintenance_events.rb │ ├── vehicle_maintenance_schedule_types.rb │ ├── vehicle_maintenance_schedules.rb │ ├── vehicle_monthly_trackings.rb │ ├── vehicle_requirement_templates.rb │ ├── vehicle_types.rb │ ├── vehicle_warranties.rb │ ├── vehicle_warranty_templates.rb │ ├── vehicles.rb │ ├── verification_questions.rb │ └── weekday_assignments.rb ├── features │ ├── application_settings_spec.rb │ ├── cab_trips_spec.rb │ ├── customers_spec.rb │ ├── driver_compliances_spec.rb │ ├── driver_documents_spec.rb │ ├── driver_histories_spec.rb │ ├── lookup_tables_spec.rb │ ├── reports_spec.rb │ ├── users_spec.rb │ ├── vehicle_documents_spec.rb │ ├── vehicle_maintenance_compliances_spec.rb │ ├── vehicle_maintenance_events_spec.rb │ └── vehicle_warranties_spec.rb ├── models │ ├── ada_question_spec.rb │ ├── address_group_spec.rb │ ├── address_spec.rb │ ├── application_setting_spec.rb │ ├── capacity_type_spec.rb │ ├── customer_ada_question_spec.rb │ ├── customer_spec.rb │ ├── daily_operating_hour_spec.rb │ ├── document_association_spec.rb │ ├── document_spec.rb │ ├── driver_compliance_spec.rb │ ├── driver_history_spec.rb │ ├── driver_requirement_template_spec.rb │ ├── driver_spec.rb │ ├── eligibility_spec.rb │ ├── emergency_contact_spec.rb │ ├── ethnicity_spec.rb │ ├── field_config_spec.rb │ ├── funding_authorization_number_spec.rb │ ├── funding_source_spec.rb │ ├── gps_location_partition_spec.rb │ ├── gps_location_spec.rb │ ├── hidden_lookup_table_values_spec.rb │ ├── itinerary_spec.rb │ ├── lookup_table_spec.rb │ ├── message_spec.rb │ ├── monthly_spec.rb │ ├── operating_hour_spec.rb │ ├── planned_leave_spec.rb │ ├── provider_lookup_table_spec.rb │ ├── provider_report_spec.rb │ ├── provider_spec.rb │ ├── recurring_driver_compliance_spec.rb │ ├── recurring_vehicle_maintenance_compliance_spec.rb │ ├── repeating_itinerary_spec.rb │ ├── repeating_run_manifest_order_spec.rb │ ├── repeating_run_spec.rb │ ├── repeating_trip_spec.rb │ ├── ridership_mobility_mapping_spec.rb │ ├── run_distance_spec.rb │ ├── run_spec.rb │ ├── saved_custom_report_spec.rb │ ├── service_level_spec.rb │ ├── travel_training_spec.rb │ ├── trip_purpose_spec.rb │ ├── trip_result_spec.rb │ ├── trip_spec.rb │ ├── user_spec.rb │ ├── vehicle_capacity_configuration_spec.rb │ ├── vehicle_capacity_spec.rb │ ├── vehicle_compliance_spec.rb │ ├── vehicle_inspection_spec.rb │ ├── vehicle_maintenance_compliance_spec.rb │ ├── vehicle_maintenance_event_spec.rb │ ├── vehicle_maintenance_schedule_spec.rb │ ├── vehicle_maintenance_schedule_type_spec.rb │ ├── vehicle_monthly_tracking_spec.rb │ ├── vehicle_requirement_template_spec.rb │ ├── vehicle_spec.rb │ ├── vehicle_type_spec.rb │ ├── vehicle_warranty_spec.rb │ ├── vehicle_warranty_template_spec.rb │ ├── verification_question_spec.rb │ └── weekday_assignment_spec.rb ├── rails_helper.rb ├── routing │ ├── address_groups_routing_spec.rb │ ├── addresses_routing_spec.rb │ ├── cab_trips_routing_spec.rb │ ├── customers_routing_spec.rb │ ├── device_pool_drivers_routing_spec.rb │ ├── device_pools_routing_spec.rb │ ├── documents_routing_spec.rb │ ├── driver_compliances_routing_spec.rb │ ├── driver_histories_routing_spec.rb │ ├── drivers_routing_spec.rb │ ├── home_routing_spec.rb │ ├── monthlies_routing_spec.rb │ ├── provider_common_addresses_routing_spec.rb │ ├── providers_routing_spec.rb │ ├── recurring_driver_compliances_routing_spec.rb │ ├── recurring_vehicle_maintenance_compliances_routing_spec.rb │ ├── reports_routing_spec.rb │ ├── runs_routing_spec.rb │ ├── trips_routing_spec.rb │ ├── users_routing_spec.rb │ ├── vehicle_maintenance_compliances_routing_spec.rb │ ├── vehicle_maintenance_events_routing_spec.rb │ ├── vehicle_warranties_routing_spec.rb │ └── vehicles_routing_spec.rb ├── samples │ └── image.png ├── services │ ├── reimbursement_rate_calculator_spec.rb │ └── trip_filter_spec.rb ├── spec_helper.rb └── support │ ├── clean_test_files.rb │ ├── concerns │ ├── compliance_event_shared_examples.rb │ ├── document_associable_shared_examples.rb │ ├── recurring_compliance_event_scheduler_shared_examples.rb │ ├── recurring_compliance_event_shared_examples.rb │ ├── recurring_ride_coordinator_scheduler_shared_examples.rb │ └── recurring_ride_coordinator_shared_examples.rb │ ├── controller_macros.rb │ └── factory_bot.rb ├── test ├── fixtures │ ├── addresses.yml │ ├── customers.yml │ ├── mobilities.yml │ ├── providers.yml │ ├── roles.yml │ ├── trips.yml │ └── users.yml ├── functional │ └── trips_controller_test.rb ├── performance │ └── browsing_test.rb └── test_helper.rb └── vendor └── assets ├── javascripts ├── .keep ├── dateFormat.js ├── jquery-ui-timepicker-addon.js ├── jquery-ui.js ├── jquery-ui.min.js ├── jquery.colorPicker.js ├── jquery.jstree.js ├── jquery.layout.js ├── jquery.weekcalendar.js └── styledmarker.js └── stylesheets ├── .keep ├── html5reset-1.6.1.css ├── images ├── ui-bg_flat_0_aaaaaa_40x100.png ├── ui-bg_flat_75_ffffff_40x100.png ├── ui-bg_glass_55_fbf9ee_1x400.png ├── ui-bg_glass_65_ffffff_1x400.png ├── ui-bg_glass_75_dadada_1x400.png ├── ui-bg_glass_75_e6e6e6_1x400.png ├── ui-bg_glass_95_fef1ec_1x400.png ├── ui-bg_highlight-soft_75_cccccc_1x100.png ├── ui-icons_222222_256x240.png ├── ui-icons_2e83ff_256x240.png ├── ui-icons_454545_256x240.png ├── ui-icons_888888_256x240.png └── ui-icons_cd0a0a_256x240.png ├── jquery-layout-default.css ├── jquery-ui-1.8.9.custom.scss ├── jquery-ui-timepicker-addon.css ├── jquery.weekcalendar.scss └── jstree-apple ├── bg.jpg ├── d.png ├── dot_for_ie.gif ├── style.css.scss └── throbber.gif /.dockerignore: -------------------------------------------------------------------------------- 1 | .git 2 | .dockerignore 3 | .byebug_history 4 | log/* 5 | tmp/* -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --require spec_helper 3 | --format documentation -------------------------------------------------------------------------------- /.ruby-gemset: -------------------------------------------------------------------------------- 1 | ridepilot 2 | -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | ruby-2.4.5 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/Procfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/Rakefile -------------------------------------------------------------------------------- /app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/images/arrow-180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/assets/images/arrow-180.png -------------------------------------------------------------------------------- /app/assets/images/calendar-clock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/assets/images/calendar-clock.png -------------------------------------------------------------------------------- /app/assets/images/car--arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/assets/images/car--arrow.png -------------------------------------------------------------------------------- /app/assets/images/car--inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/assets/images/car--inactive.png -------------------------------------------------------------------------------- /app/assets/images/car--pencil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/assets/images/car--pencil.png -------------------------------------------------------------------------------- /app/assets/images/car--plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/assets/images/car--plus.png -------------------------------------------------------------------------------- /app/assets/images/car.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/assets/images/car.png -------------------------------------------------------------------------------- /app/assets/images/card--pencil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/assets/images/card--pencil.png -------------------------------------------------------------------------------- /app/assets/images/credit-card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/assets/images/credit-card.png -------------------------------------------------------------------------------- /app/assets/images/cross-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/assets/images/cross-button.png -------------------------------------------------------------------------------- /app/assets/images/dashboard--plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/assets/images/dashboard--plus.png -------------------------------------------------------------------------------- /app/assets/images/magnifier-zoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/assets/images/magnifier-zoom.png -------------------------------------------------------------------------------- /app/assets/images/pencil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/assets/images/pencil.png -------------------------------------------------------------------------------- /app/assets/images/plus-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/assets/images/plus-button.png -------------------------------------------------------------------------------- /app/assets/images/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/assets/images/plus.png -------------------------------------------------------------------------------- /app/assets/images/report--plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/assets/images/report--plus.png -------------------------------------------------------------------------------- /app/assets/images/report.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/assets/images/report.png -------------------------------------------------------------------------------- /app/assets/images/reports-stack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/assets/images/reports-stack.png -------------------------------------------------------------------------------- /app/assets/images/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/assets/images/spinner.gif -------------------------------------------------------------------------------- /app/assets/images/tick-circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/assets/images/tick-circle.png -------------------------------------------------------------------------------- /app/assets/images/user--plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/assets/images/user--plus.png -------------------------------------------------------------------------------- /app/assets/images/user-worker-boss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/assets/images/user-worker-boss.png -------------------------------------------------------------------------------- /app/assets/images/user-worker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/assets/images/user-worker.png -------------------------------------------------------------------------------- /app/assets/images/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/assets/images/user.png -------------------------------------------------------------------------------- /app/assets/images/users.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/assets/images/users.png -------------------------------------------------------------------------------- /app/assets/images/wrench--pencil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/assets/images/wrench--pencil.png -------------------------------------------------------------------------------- /app/assets/images/wrench--plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/assets/images/wrench--plus.png -------------------------------------------------------------------------------- /app/assets/images/wrench.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/assets/images/wrench.png -------------------------------------------------------------------------------- /app/assets/javascripts/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/assets/javascripts/application.js -------------------------------------------------------------------------------- /app/assets/javascripts/bootbox.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/assets/javascripts/bootbox.min.js -------------------------------------------------------------------------------- /app/assets/javascripts/cable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/assets/javascripts/cable.js -------------------------------------------------------------------------------- /app/assets/javascripts/selectize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/assets/javascripts/selectize.js -------------------------------------------------------------------------------- /app/assets/stylesheets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/stylesheets/dispatch.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/assets/stylesheets/dispatch.css -------------------------------------------------------------------------------- /app/assets/stylesheets/pdf.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/assets/stylesheets/pdf.css -------------------------------------------------------------------------------- /app/assets/stylesheets/selectize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/assets/stylesheets/selectize.css -------------------------------------------------------------------------------- /app/assets/stylesheets/v1_theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/assets/stylesheets/v1_theme.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/v1_theme_split2.css: -------------------------------------------------------------------------------- 1 | /* 2 | *= require 'v1_theme' 3 | */ -------------------------------------------------------------------------------- /app/assets/stylesheets/v2_theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/assets/stylesheets/v2_theme.scss -------------------------------------------------------------------------------- /app/channels/alert_channel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/channels/alert_channel.rb -------------------------------------------------------------------------------- /app/channels/chat_alert_channel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/channels/chat_alert_channel.rb -------------------------------------------------------------------------------- /app/channels/chat_channel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/channels/chat_channel.rb -------------------------------------------------------------------------------- /app/channels/driver_alert_channel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/channels/driver_alert_channel.rb -------------------------------------------------------------------------------- /app/channels/manifest_channel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/channels/manifest_channel.rb -------------------------------------------------------------------------------- /app/controllers/api/api_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/controllers/api/api_controller.rb -------------------------------------------------------------------------------- /app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/controllers/drivers_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/controllers/drivers_controller.rb -------------------------------------------------------------------------------- /app/controllers/home_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/controllers/home_controller.rb -------------------------------------------------------------------------------- /app/controllers/messages_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/controllers/messages_controller.rb -------------------------------------------------------------------------------- /app/controllers/reports_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/controllers/reports_controller.rb -------------------------------------------------------------------------------- /app/controllers/runs_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/controllers/runs_controller.rb -------------------------------------------------------------------------------- /app/controllers/trips_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/controllers/trips_controller.rb -------------------------------------------------------------------------------- /app/controllers/users_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/controllers/users_controller.rb -------------------------------------------------------------------------------- /app/controllers/vehicles_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/controllers/vehicles_controller.rb -------------------------------------------------------------------------------- /app/helpers/address_groups_helper.rb: -------------------------------------------------------------------------------- 1 | module AddressGroupsHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/application_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/helpers/application_helper.rb -------------------------------------------------------------------------------- /app/helpers/availability_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/helpers/availability_helper.rb -------------------------------------------------------------------------------- /app/helpers/dispatch_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/helpers/dispatch_helper.rb -------------------------------------------------------------------------------- /app/helpers/reporting/report_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/helpers/reporting/report_helper.rb -------------------------------------------------------------------------------- /app/helpers/reports_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/helpers/reports_helper.rb -------------------------------------------------------------------------------- /app/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/mailers/new_user_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/mailers/new_user_mailer.rb -------------------------------------------------------------------------------- /app/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/ability.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/models/ability.rb -------------------------------------------------------------------------------- /app/models/ada_question.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/models/ada_question.rb -------------------------------------------------------------------------------- /app/models/address.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/models/address.rb -------------------------------------------------------------------------------- /app/models/address_group.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/models/address_group.rb -------------------------------------------------------------------------------- /app/models/address_upload_flag.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/models/address_upload_flag.rb -------------------------------------------------------------------------------- /app/models/application_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/models/application_record.rb -------------------------------------------------------------------------------- /app/models/application_setting.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/models/application_setting.rb -------------------------------------------------------------------------------- /app/models/booking_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/models/booking_user.rb -------------------------------------------------------------------------------- /app/models/capacity.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/models/capacity.rb -------------------------------------------------------------------------------- /app/models/capacity_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/models/capacity_type.rb -------------------------------------------------------------------------------- /app/models/chat_read_receipt.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/models/chat_read_receipt.rb -------------------------------------------------------------------------------- /app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/concerns/available.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/models/concerns/available.rb -------------------------------------------------------------------------------- /app/models/concerns/compliance_core.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/models/concerns/compliance_core.rb -------------------------------------------------------------------------------- /app/models/concerns/inactivateable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/models/concerns/inactivateable.rb -------------------------------------------------------------------------------- /app/models/concerns/itinerary_core.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/models/concerns/itinerary_core.rb -------------------------------------------------------------------------------- /app/models/concerns/lookupable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/models/concerns/lookupable.rb -------------------------------------------------------------------------------- /app/models/concerns/operatable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/models/concerns/operatable.rb -------------------------------------------------------------------------------- /app/models/concerns/run_core.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/models/concerns/run_core.rb -------------------------------------------------------------------------------- /app/models/concerns/trip_core.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/models/concerns/trip_core.rb -------------------------------------------------------------------------------- /app/models/custom_report.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/models/custom_report.rb -------------------------------------------------------------------------------- /app/models/customer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/models/customer.rb -------------------------------------------------------------------------------- /app/models/customer_ada_question.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/models/customer_ada_question.rb -------------------------------------------------------------------------------- /app/models/customer_address.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/models/customer_address.rb -------------------------------------------------------------------------------- /app/models/customer_address_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/models/customer_address_type.rb -------------------------------------------------------------------------------- /app/models/customer_common_address.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/models/customer_common_address.rb -------------------------------------------------------------------------------- /app/models/customer_eligibility.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/models/customer_eligibility.rb -------------------------------------------------------------------------------- /app/models/daily_operating_hour.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/models/daily_operating_hour.rb -------------------------------------------------------------------------------- /app/models/device_pool.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/models/device_pool.rb -------------------------------------------------------------------------------- /app/models/device_pool_driver.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/models/device_pool_driver.rb -------------------------------------------------------------------------------- /app/models/document.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/models/document.rb -------------------------------------------------------------------------------- /app/models/document_association.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/models/document_association.rb -------------------------------------------------------------------------------- /app/models/donation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/models/donation.rb -------------------------------------------------------------------------------- /app/models/driver.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/models/driver.rb -------------------------------------------------------------------------------- /app/models/driver_address.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/models/driver_address.rb -------------------------------------------------------------------------------- /app/models/driver_compliance.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/models/driver_compliance.rb -------------------------------------------------------------------------------- /app/models/driver_history.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/models/driver_history.rb -------------------------------------------------------------------------------- /app/models/driver_message_template.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/models/driver_message_template.rb -------------------------------------------------------------------------------- /app/models/eligibility.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/models/eligibility.rb -------------------------------------------------------------------------------- /app/models/emergency_alert.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/models/emergency_alert.rb -------------------------------------------------------------------------------- /app/models/emergency_contact.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/models/emergency_contact.rb -------------------------------------------------------------------------------- /app/models/ethnicity.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/models/ethnicity.rb -------------------------------------------------------------------------------- /app/models/fare.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/models/fare.rb -------------------------------------------------------------------------------- /app/models/field_config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/models/field_config.rb -------------------------------------------------------------------------------- /app/models/funding_source.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/models/funding_source.rb -------------------------------------------------------------------------------- /app/models/garage_address.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/models/garage_address.rb -------------------------------------------------------------------------------- /app/models/geocoded_address.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/models/geocoded_address.rb -------------------------------------------------------------------------------- /app/models/gps_location.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/models/gps_location.rb -------------------------------------------------------------------------------- /app/models/gps_location_partition.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/models/gps_location_partition.rb -------------------------------------------------------------------------------- /app/models/guest.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/models/guest.rb -------------------------------------------------------------------------------- /app/models/image.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/models/image.rb -------------------------------------------------------------------------------- /app/models/itinerary.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/models/itinerary.rb -------------------------------------------------------------------------------- /app/models/lookup_table.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/models/lookup_table.rb -------------------------------------------------------------------------------- /app/models/message.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/models/message.rb -------------------------------------------------------------------------------- /app/models/message_template.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/models/message_template.rb -------------------------------------------------------------------------------- /app/models/mobility.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/models/mobility.rb -------------------------------------------------------------------------------- /app/models/mobility_capacity.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/models/mobility_capacity.rb -------------------------------------------------------------------------------- /app/models/monthly.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/models/monthly.rb -------------------------------------------------------------------------------- /app/models/operating_hour.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/models/operating_hour.rb -------------------------------------------------------------------------------- /app/models/planned_leave.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/models/planned_leave.rb -------------------------------------------------------------------------------- /app/models/provider.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/models/provider.rb -------------------------------------------------------------------------------- /app/models/provider_common_address.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/models/provider_common_address.rb -------------------------------------------------------------------------------- /app/models/provider_lookup_table.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/models/provider_lookup_table.rb -------------------------------------------------------------------------------- /app/models/provider_mailing_address.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/models/provider_mailing_address.rb -------------------------------------------------------------------------------- /app/models/provider_report.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/models/provider_report.rb -------------------------------------------------------------------------------- /app/models/public_itinerary.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/models/public_itinerary.rb -------------------------------------------------------------------------------- /app/models/region.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/models/region.rb -------------------------------------------------------------------------------- /app/models/repeating_itinerary.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/models/repeating_itinerary.rb -------------------------------------------------------------------------------- /app/models/repeating_run.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/models/repeating_run.rb -------------------------------------------------------------------------------- /app/models/repeating_trip.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/models/repeating_trip.rb -------------------------------------------------------------------------------- /app/models/role.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/models/role.rb -------------------------------------------------------------------------------- /app/models/routine_message.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/models/routine_message.rb -------------------------------------------------------------------------------- /app/models/run.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/models/run.rb -------------------------------------------------------------------------------- /app/models/run_distance.rb: -------------------------------------------------------------------------------- 1 | class RunDistance < ApplicationRecord 2 | belongs_to :run 3 | end 4 | -------------------------------------------------------------------------------- /app/models/run_vehicle_inspection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/models/run_vehicle_inspection.rb -------------------------------------------------------------------------------- /app/models/saved_custom_report.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/models/saved_custom_report.rb -------------------------------------------------------------------------------- /app/models/service_level.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/models/service_level.rb -------------------------------------------------------------------------------- /app/models/temp_address.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/models/temp_address.rb -------------------------------------------------------------------------------- /app/models/tracker_action_log.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/models/tracker_action_log.rb -------------------------------------------------------------------------------- /app/models/travel_training.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/models/travel_training.rb -------------------------------------------------------------------------------- /app/models/trip.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/models/trip.rb -------------------------------------------------------------------------------- /app/models/trip_purpose.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/models/trip_purpose.rb -------------------------------------------------------------------------------- /app/models/trip_result.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/models/trip_result.rb -------------------------------------------------------------------------------- /app/models/trip_ridership_mobility.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/models/trip_ridership_mobility.rb -------------------------------------------------------------------------------- /app/models/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/models/user.rb -------------------------------------------------------------------------------- /app/models/user_address.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/models/user_address.rb -------------------------------------------------------------------------------- /app/models/vehicle.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/models/vehicle.rb -------------------------------------------------------------------------------- /app/models/vehicle_capacity.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/models/vehicle_capacity.rb -------------------------------------------------------------------------------- /app/models/vehicle_compliance.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/models/vehicle_compliance.rb -------------------------------------------------------------------------------- /app/models/vehicle_inspection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/models/vehicle_inspection.rb -------------------------------------------------------------------------------- /app/models/vehicle_monthly_tracking.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/models/vehicle_monthly_tracking.rb -------------------------------------------------------------------------------- /app/models/vehicle_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/models/vehicle_type.rb -------------------------------------------------------------------------------- /app/models/vehicle_warranty.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/models/vehicle_warranty.rb -------------------------------------------------------------------------------- /app/models/verification_question.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/models/verification_question.rb -------------------------------------------------------------------------------- /app/models/weekday_assignment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/models/weekday_assignment.rb -------------------------------------------------------------------------------- /app/services/geocoding_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/services/geocoding_service.rb -------------------------------------------------------------------------------- /app/services/google_place_parser.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/services/google_place_parser.rb -------------------------------------------------------------------------------- /app/services/ntd_report.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/services/ntd_report.rb -------------------------------------------------------------------------------- /app/services/run_filter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/services/run_filter.rb -------------------------------------------------------------------------------- /app/services/run_stats_calculator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/services/run_stats_calculator.rb -------------------------------------------------------------------------------- /app/services/trip_filter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/services/trip_filter.rb -------------------------------------------------------------------------------- /app/services/trip_scheduler.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/services/trip_scheduler.rb -------------------------------------------------------------------------------- /app/services/utility.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/services/utility.rb -------------------------------------------------------------------------------- /app/views/address_groups/new.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/views/address_groups/new.html.haml -------------------------------------------------------------------------------- /app/views/addresses/_results.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/views/addresses/_results.html.haml -------------------------------------------------------------------------------- /app/views/addresses/edit.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/views/addresses/edit.html.haml -------------------------------------------------------------------------------- /app/views/cab_trips/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/views/cab_trips/index.html.erb -------------------------------------------------------------------------------- /app/views/customers/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/views/customers/_form.html.erb -------------------------------------------------------------------------------- /app/views/customers/_trips.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/views/customers/_trips.html.erb -------------------------------------------------------------------------------- /app/views/customers/edit.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/views/customers/edit.html.haml -------------------------------------------------------------------------------- /app/views/customers/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/views/customers/index.html.haml -------------------------------------------------------------------------------- /app/views/customers/new.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/views/customers/new.html.haml -------------------------------------------------------------------------------- /app/views/customers/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/views/customers/show.html.haml -------------------------------------------------------------------------------- /app/views/customers/verify_code.js.erb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/views/device_pools/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/views/device_pools/_form.html.erb -------------------------------------------------------------------------------- /app/views/device_pools/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/views/device_pools/edit.html.erb -------------------------------------------------------------------------------- /app/views/device_pools/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/views/device_pools/new.html.erb -------------------------------------------------------------------------------- /app/views/devise/sessions/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/views/devise/sessions/new.html.erb -------------------------------------------------------------------------------- /app/views/devise/shared/_links.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/views/devise/shared/_links.erb -------------------------------------------------------------------------------- /app/views/devise/unlocks/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/views/devise/unlocks/new.html.erb -------------------------------------------------------------------------------- /app/views/dispatchers/eta.js.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/views/dispatchers/eta.js.haml -------------------------------------------------------------------------------- /app/views/dispatchers/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/views/dispatchers/index.html.haml -------------------------------------------------------------------------------- /app/views/dispatchers/run_trips.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/views/dispatchers/run_trips.js.erb -------------------------------------------------------------------------------- /app/views/dispatchers/schedule.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/views/dispatchers/schedule.js.erb -------------------------------------------------------------------------------- /app/views/documents/_form.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/views/documents/_form.html.haml -------------------------------------------------------------------------------- /app/views/documents/destroy.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/views/documents/destroy.js.erb -------------------------------------------------------------------------------- /app/views/documents/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/views/documents/edit.html.erb -------------------------------------------------------------------------------- /app/views/documents/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/views/documents/new.html.erb -------------------------------------------------------------------------------- /app/views/driver_histories/edit.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/views/driver_histories/edit.js.erb -------------------------------------------------------------------------------- /app/views/driver_histories/new.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/views/driver_histories/new.js.erb -------------------------------------------------------------------------------- /app/views/driver_histories/show.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/views/driver_histories/show.js.erb -------------------------------------------------------------------------------- /app/views/drivers/_driver.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/views/drivers/_driver.html.haml -------------------------------------------------------------------------------- /app/views/drivers/_form.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/views/drivers/_form.html.haml -------------------------------------------------------------------------------- /app/views/drivers/assign_runs.js.erb: -------------------------------------------------------------------------------- 1 | window.location.reload(); -------------------------------------------------------------------------------- /app/views/drivers/edit.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/views/drivers/edit.html.haml -------------------------------------------------------------------------------- /app/views/drivers/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/views/drivers/index.html.haml -------------------------------------------------------------------------------- /app/views/drivers/new.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/views/drivers/new.html.haml -------------------------------------------------------------------------------- /app/views/drivers/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/views/drivers/show.html.haml -------------------------------------------------------------------------------- /app/views/drivers/unassign_runs.js.erb: -------------------------------------------------------------------------------- 1 | window.location.reload(); -------------------------------------------------------------------------------- /app/views/home/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/views/home/index.html.haml -------------------------------------------------------------------------------- /app/views/layouts/_footer.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/views/layouts/_footer.html.haml -------------------------------------------------------------------------------- /app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /app/views/layouts/pdf.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/views/layouts/pdf.html.haml -------------------------------------------------------------------------------- /app/views/lookup_tables/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/views/lookup_tables/show.html.haml -------------------------------------------------------------------------------- /app/views/messages/_alert.html.haml: -------------------------------------------------------------------------------- 1 | :javascript 2 | show_alert_dialog("Emergency Alert!!"); -------------------------------------------------------------------------------- /app/views/monthlies/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/views/monthlies/_form.html.erb -------------------------------------------------------------------------------- /app/views/monthlies/_report.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/views/monthlies/_report.html.erb -------------------------------------------------------------------------------- /app/views/monthlies/edit.html.erb: -------------------------------------------------------------------------------- 1 | <%= render :partial=>"form" %> 2 | -------------------------------------------------------------------------------- /app/views/monthlies/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/views/monthlies/index.html.erb -------------------------------------------------------------------------------- /app/views/monthlies/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/views/monthlies/new.html.erb -------------------------------------------------------------------------------- /app/views/operating_hours/add.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/views/operating_hours/add.js.erb -------------------------------------------------------------------------------- /app/views/operating_hours/new.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/views/operating_hours/new.js.erb -------------------------------------------------------------------------------- /app/views/planned_leaves/create.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/views/planned_leaves/create.js.erb -------------------------------------------------------------------------------- /app/views/planned_leaves/edit.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/views/planned_leaves/edit.js.erb -------------------------------------------------------------------------------- /app/views/planned_leaves/new.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/views/planned_leaves/new.js.erb -------------------------------------------------------------------------------- /app/views/planned_leaves/update.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/views/planned_leaves/update.js.erb -------------------------------------------------------------------------------- /app/views/providers/_drivers.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/views/providers/_drivers.html.haml -------------------------------------------------------------------------------- /app/views/providers/_form.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/views/providers/_form.html.haml -------------------------------------------------------------------------------- /app/views/providers/_general.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/views/providers/_general.html.erb -------------------------------------------------------------------------------- /app/views/providers/_profile.html.haml: -------------------------------------------------------------------------------- 1 | = render 'form' -------------------------------------------------------------------------------- /app/views/providers/_sidebar.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/views/providers/_sidebar.html.haml -------------------------------------------------------------------------------- /app/views/providers/_title.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/views/providers/_title.html.haml -------------------------------------------------------------------------------- /app/views/providers/_users.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/views/providers/_users.html.erb -------------------------------------------------------------------------------- /app/views/providers/addresses.html.haml: -------------------------------------------------------------------------------- 1 | = render 'template', partial_name: 'addresses' -------------------------------------------------------------------------------- /app/views/providers/customers.html.haml: -------------------------------------------------------------------------------- 1 | = render 'template', partial_name: 'customers' -------------------------------------------------------------------------------- /app/views/providers/drivers.html.haml: -------------------------------------------------------------------------------- 1 | = render 'template', partial_name: 'drivers' -------------------------------------------------------------------------------- /app/views/providers/edit.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/views/providers/edit.html.haml -------------------------------------------------------------------------------- /app/views/providers/general.html.haml: -------------------------------------------------------------------------------- 1 | = render 'template', partial_name: 'general' -------------------------------------------------------------------------------- /app/views/providers/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/views/providers/index.html.haml -------------------------------------------------------------------------------- /app/views/providers/new.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/views/providers/new.html.haml -------------------------------------------------------------------------------- /app/views/providers/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/views/providers/show.html.haml -------------------------------------------------------------------------------- /app/views/providers/users.html.haml: -------------------------------------------------------------------------------- 1 | = render 'template', partial_name: 'users' -------------------------------------------------------------------------------- /app/views/providers/vehicles.html.haml: -------------------------------------------------------------------------------- 1 | = render 'template', partial_name: 'vehicles' -------------------------------------------------------------------------------- /app/views/repeating_runs/new.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/views/repeating_runs/new.html.haml -------------------------------------------------------------------------------- /app/views/reports/_footer.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/views/reports/_footer.html.erb -------------------------------------------------------------------------------- /app/views/reports/_header.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/views/reports/_header.html.erb -------------------------------------------------------------------------------- /app/views/reports/cab.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/views/reports/cab.html.erb -------------------------------------------------------------------------------- /app/views/reports/daily_trips.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/views/reports/daily_trips.html.erb -------------------------------------------------------------------------------- /app/views/reports/donations.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/views/reports/donations.html.erb -------------------------------------------------------------------------------- /app/views/reports/forms/_ntd.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/views/reports/forms/_ntd.html.haml -------------------------------------------------------------------------------- /app/views/reports/get_run_list.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/views/reports/get_run_list.js.erb -------------------------------------------------------------------------------- /app/views/reports/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/views/reports/index.html.erb -------------------------------------------------------------------------------- /app/views/reports/manifest.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/views/reports/manifest.html.haml -------------------------------------------------------------------------------- /app/views/reports/monthlies.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/views/reports/monthlies.html.erb -------------------------------------------------------------------------------- /app/views/reports/ntd.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/views/reports/ntd.html.haml -------------------------------------------------------------------------------- /app/views/reports/pdf_header.pdf.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/views/reports/pdf_header.pdf.haml -------------------------------------------------------------------------------- /app/views/reports/save_as.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/views/reports/save_as.js.erb -------------------------------------------------------------------------------- /app/views/reports/show.csv.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/views/reports/show.csv.haml -------------------------------------------------------------------------------- /app/views/reports/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/views/reports/show.html.haml -------------------------------------------------------------------------------- /app/views/reports/show.pdf.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/views/reports/show.pdf.haml -------------------------------------------------------------------------------- /app/views/runs/_driver_panel.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/views/runs/_driver_panel.html.haml -------------------------------------------------------------------------------- /app/views/runs/_filters.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/views/runs/_filters.html.haml -------------------------------------------------------------------------------- /app/views/runs/_form.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/views/runs/_form.html.haml -------------------------------------------------------------------------------- /app/views/runs/_form_header.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/views/runs/_form_header.html.haml -------------------------------------------------------------------------------- /app/views/runs/_list.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/views/runs/_list.html.haml -------------------------------------------------------------------------------- /app/views/runs/_no_runs.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/views/runs/_no_runs.html.erb -------------------------------------------------------------------------------- /app/views/runs/_row.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/views/runs/_row.html.haml -------------------------------------------------------------------------------- /app/views/runs/_trip.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/views/runs/_trip.html.erb -------------------------------------------------------------------------------- /app/views/runs/_trip_list.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/views/runs/_trip_list.html.haml -------------------------------------------------------------------------------- /app/views/runs/assign_driver.js.erb: -------------------------------------------------------------------------------- 1 | window.location.reload(); -------------------------------------------------------------------------------- /app/views/runs/edit.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/views/runs/edit.html.haml -------------------------------------------------------------------------------- /app/views/runs/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/views/runs/index.html.haml -------------------------------------------------------------------------------- /app/views/runs/new.html.haml: -------------------------------------------------------------------------------- 1 | = render 'form', edit_mode: :new 2 | -------------------------------------------------------------------------------- /app/views/runs/reload_drivers.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/views/runs/reload_drivers.js.erb -------------------------------------------------------------------------------- /app/views/runs/reload_vehicles.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/views/runs/reload_vehicles.js.erb -------------------------------------------------------------------------------- /app/views/runs/runs.js.erb: -------------------------------------------------------------------------------- 1 | <% if params[:from_dispath] == 'true' %> 2 | 3 | <% end %> -------------------------------------------------------------------------------- /app/views/runs/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/views/runs/show.html.haml -------------------------------------------------------------------------------- /app/views/runs/unassign_driver.js.erb: -------------------------------------------------------------------------------- 1 | window.location.reload(); -------------------------------------------------------------------------------- /app/views/trips/_calendar.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/views/trips/_calendar.html.haml -------------------------------------------------------------------------------- /app/views/trips/_customer.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/views/trips/_customer.html.haml -------------------------------------------------------------------------------- /app/views/trips/_day_row.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/views/trips/_day_row.html.erb -------------------------------------------------------------------------------- /app/views/trips/_fare_panel.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/views/trips/_fare_panel.html.haml -------------------------------------------------------------------------------- /app/views/trips/_filters.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/views/trips/_filters.html.haml -------------------------------------------------------------------------------- /app/views/trips/_form.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/views/trips/_form.html.haml -------------------------------------------------------------------------------- /app/views/trips/_form_header.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/views/trips/_form_header.html.haml -------------------------------------------------------------------------------- /app/views/trips/_form_js.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/views/trips/_form_js.html.haml -------------------------------------------------------------------------------- /app/views/trips/_javascript.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/views/trips/_javascript.html.erb -------------------------------------------------------------------------------- /app/views/trips/_list.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/views/trips/_list.html.haml -------------------------------------------------------------------------------- /app/views/trips/_log_panel.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/views/trips/_log_panel.html.haml -------------------------------------------------------------------------------- /app/views/trips/_notes_panel.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/views/trips/_notes_panel.html.haml -------------------------------------------------------------------------------- /app/views/trips/_other_panel.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/views/trips/_other_panel.html.haml -------------------------------------------------------------------------------- /app/views/trips/_row.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/views/trips/_row.html.haml -------------------------------------------------------------------------------- /app/views/trips/_trip_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/views/trips/_trip_form.html.erb -------------------------------------------------------------------------------- /app/views/trips/callback.js.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/views/trips/callback.js.haml -------------------------------------------------------------------------------- /app/views/trips/change_result.js.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/views/trips/change_result.js.haml -------------------------------------------------------------------------------- /app/views/trips/edit.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/views/trips/edit.html.haml -------------------------------------------------------------------------------- /app/views/trips/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/views/trips/index.html.haml -------------------------------------------------------------------------------- /app/views/trips/new.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/views/trips/new.html.haml -------------------------------------------------------------------------------- /app/views/trips/notify_driver.js.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/views/trips/notify_driver.js.haml -------------------------------------------------------------------------------- /app/views/trips/reconcile_cab.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/views/trips/reconcile_cab.html.erb -------------------------------------------------------------------------------- /app/views/trips/report.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/views/trips/report.html.haml -------------------------------------------------------------------------------- /app/views/trips/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/views/trips/show.html.haml -------------------------------------------------------------------------------- /app/views/trips/unscheduled.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/views/trips/unscheduled.html.erb -------------------------------------------------------------------------------- /app/views/users/_form.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/views/users/_form.html.haml -------------------------------------------------------------------------------- /app/views/users/_form_header.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/views/users/_form_header.html.haml -------------------------------------------------------------------------------- /app/views/users/edit.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/views/users/edit.html.haml -------------------------------------------------------------------------------- /app/views/users/new_user.html.erb: -------------------------------------------------------------------------------- 1 | <%= render 'form', edit_mode: :new %> -------------------------------------------------------------------------------- /app/views/users/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/views/users/show.html.haml -------------------------------------------------------------------------------- /app/views/vehicle_types/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/views/vehicle_types/_form.html.erb -------------------------------------------------------------------------------- /app/views/vehicle_types/create.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/views/vehicle_types/create.js.erb -------------------------------------------------------------------------------- /app/views/vehicle_types/destroy.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/views/vehicle_types/destroy.js.erb -------------------------------------------------------------------------------- /app/views/vehicle_types/edit.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/views/vehicle_types/edit.js.erb -------------------------------------------------------------------------------- /app/views/vehicle_types/new.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/views/vehicle_types/new.js.erb -------------------------------------------------------------------------------- /app/views/vehicle_types/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/views/vehicle_types/show.html.haml -------------------------------------------------------------------------------- /app/views/vehicle_types/update.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/views/vehicle_types/update.js.erb -------------------------------------------------------------------------------- /app/views/vehicles/_form.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/views/vehicles/_form.html.haml -------------------------------------------------------------------------------- /app/views/vehicles/_vehicle.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/views/vehicles/_vehicle.html.haml -------------------------------------------------------------------------------- /app/views/vehicles/edit.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/views/vehicles/edit.html.haml -------------------------------------------------------------------------------- /app/views/vehicles/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/views/vehicles/index.html.haml -------------------------------------------------------------------------------- /app/views/vehicles/new.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/views/vehicles/new.html.haml -------------------------------------------------------------------------------- /app/views/vehicles/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/views/vehicles/show.html.haml -------------------------------------------------------------------------------- /app/worker/address_upload_worker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/worker/address_upload_worker.rb -------------------------------------------------------------------------------- /app/worker/chat_worker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/worker/chat_worker.rb -------------------------------------------------------------------------------- /app/worker/emergency_alert_worker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/worker/emergency_alert_worker.rb -------------------------------------------------------------------------------- /app/worker/eta_update_worker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/app/worker/eta_update_worker.rb -------------------------------------------------------------------------------- /bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/bin/bundle -------------------------------------------------------------------------------- /bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/bin/rails -------------------------------------------------------------------------------- /bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/bin/rake -------------------------------------------------------------------------------- /bin/rspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/bin/rspec -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/bin/setup -------------------------------------------------------------------------------- /bin/spring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/bin/spring -------------------------------------------------------------------------------- /bin/update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/bin/update -------------------------------------------------------------------------------- /bin/yarn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/bin/yarn -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/config.ru -------------------------------------------------------------------------------- /config/app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/config/app.yml -------------------------------------------------------------------------------- /config/app_config_template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/config/app_config_template.yml -------------------------------------------------------------------------------- /config/application.example.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/config/application.example.yml -------------------------------------------------------------------------------- /config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/config/application.rb -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/config/boot.rb -------------------------------------------------------------------------------- /config/cable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/config/cable.yml -------------------------------------------------------------------------------- /config/database.yml.docker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/config/database.yml.docker -------------------------------------------------------------------------------- /config/database.yml.example.pg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/config/database.yml.example.pg -------------------------------------------------------------------------------- /config/database.yml.travis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/config/database.yml.travis -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/config/environment.rb -------------------------------------------------------------------------------- /config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/config/environments/development.rb -------------------------------------------------------------------------------- /config/environments/integration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/config/environments/integration.rb -------------------------------------------------------------------------------- /config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/config/environments/production.rb -------------------------------------------------------------------------------- /config/environments/qa.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/config/environments/qa.rb -------------------------------------------------------------------------------- /config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/config/environments/test.rb -------------------------------------------------------------------------------- /config/initializers/action_cable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/config/initializers/action_cable.rb -------------------------------------------------------------------------------- /config/initializers/assets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/config/initializers/assets.rb -------------------------------------------------------------------------------- /config/initializers/aws.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/config/initializers/aws.rb -------------------------------------------------------------------------------- /config/initializers/cad_avl.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/config/initializers/cad_avl.rb -------------------------------------------------------------------------------- /config/initializers/devise.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/config/initializers/devise.rb -------------------------------------------------------------------------------- /config/initializers/figaro.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/config/initializers/figaro.rb -------------------------------------------------------------------------------- /config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/config/initializers/inflections.rb -------------------------------------------------------------------------------- /config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /config/initializers/paper_trail.rb: -------------------------------------------------------------------------------- 1 | PaperTrail.config.track_associations = false -------------------------------------------------------------------------------- /config/initializers/paperclip.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/config/initializers/paperclip.rb -------------------------------------------------------------------------------- /config/initializers/ruby_xl.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/config/initializers/ruby_xl.rb -------------------------------------------------------------------------------- /config/initializers/session_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/config/initializers/session_store.rb -------------------------------------------------------------------------------- /config/initializers/sidekiq.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/config/initializers/sidekiq.rb -------------------------------------------------------------------------------- /config/initializers/smtp_mail.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/config/initializers/smtp_mail.rb -------------------------------------------------------------------------------- /config/initializers/version.rb: -------------------------------------------------------------------------------- 1 | Ridepilot::Application.config.version = '2.1.12' 2 | -------------------------------------------------------------------------------- /config/initializers/wicked_pdf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/config/initializers/wicked_pdf.rb -------------------------------------------------------------------------------- /config/initializers/will_paginate.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/config/initializers/will_paginate.rb -------------------------------------------------------------------------------- /config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /config/locales/devise.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/config/locales/devise.en.yml -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/config/locales/en.yml -------------------------------------------------------------------------------- /config/locales/rails_defaults_en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/config/locales/rails_defaults_en.yml -------------------------------------------------------------------------------- /config/puma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/config/puma.rb -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/config/routes.rb -------------------------------------------------------------------------------- /config/schedule.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/config/schedule.rb -------------------------------------------------------------------------------- /config/secrets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/config/secrets.yml -------------------------------------------------------------------------------- /config/sidekiq.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/config/sidekiq.yml -------------------------------------------------------------------------------- /config/spring.rb: -------------------------------------------------------------------------------- 1 | Spring.watch "config/application.yml" -------------------------------------------------------------------------------- /config/storage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/config/storage.yml -------------------------------------------------------------------------------- /config/unicorn.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/config/unicorn.rb -------------------------------------------------------------------------------- /db/data_schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/db/data_schema.rb -------------------------------------------------------------------------------- /db/legacy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/db/legacy.rb -------------------------------------------------------------------------------- /db/migrate/20110301215657_init_db.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/db/migrate/20110301215657_init_db.rb -------------------------------------------------------------------------------- /db/migrate/20110302210024_providers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/db/migrate/20110302210024_providers.rb -------------------------------------------------------------------------------- /db/migrate/20110304000356_defaults.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/db/migrate/20110304000356_defaults.rb -------------------------------------------------------------------------------- /db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/db/schema.rb -------------------------------------------------------------------------------- /db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/db/seeds.rb -------------------------------------------------------------------------------- /db/tasks/categorize_addresses.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/db/tasks/categorize_addresses.rb -------------------------------------------------------------------------------- /db/tasks/migrate_v1_service_level.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/db/tasks/migrate_v1_service_level.rb -------------------------------------------------------------------------------- /db/tasks/migrate_v1_trip_purpose.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/db/tasks/migrate_v1_trip_purpose.rb -------------------------------------------------------------------------------- /db/tasks/migrate_v1_trip_result.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/db/tasks/migrate_v1_trip_result.rb -------------------------------------------------------------------------------- /db/tasks/seed_address_groups.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/db/tasks/seed_address_groups.rb -------------------------------------------------------------------------------- /db/tasks/seed_custom_reports.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/db/tasks/seed_custom_reports.rb -------------------------------------------------------------------------------- /db/tasks/seed_eligibilities.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/db/tasks/seed_eligibilities.rb -------------------------------------------------------------------------------- /db/tasks/seed_ethnicities.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/db/tasks/seed_ethnicities.rb -------------------------------------------------------------------------------- /db/tasks/seed_mobilities.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/db/tasks/seed_mobilities.rb -------------------------------------------------------------------------------- /db/tasks/seed_service_levels.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/db/tasks/seed_service_levels.rb -------------------------------------------------------------------------------- /db/tasks/seed_trip_purposes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/db/tasks/seed_trip_purposes.rb -------------------------------------------------------------------------------- /db/tasks/seed_trip_results.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/db/tasks/seed_trip_results.rb -------------------------------------------------------------------------------- /db/tasks/seed_v2_custom_reports.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/db/tasks/seed_v2_custom_reports.rb -------------------------------------------------------------------------------- /db/trimet.wkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/db/trimet.wkt -------------------------------------------------------------------------------- /doc/README_FOR_APP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/doc/README_FOR_APP -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docker/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/docker/.env -------------------------------------------------------------------------------- /docker/app/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/docker/app/Dockerfile -------------------------------------------------------------------------------- /docker/web/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/docker/web/Dockerfile -------------------------------------------------------------------------------- /docker/web/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/docker/web/nginx.conf -------------------------------------------------------------------------------- /lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/assets/javascripts/idletimeout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/lib/assets/javascripts/idletimeout.js -------------------------------------------------------------------------------- /lib/capistrano/tasks/restart.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/lib/capistrano/tasks/restart.rake -------------------------------------------------------------------------------- /lib/capistrano/tasks/seed.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/lib/capistrano/tasks/seed.rake -------------------------------------------------------------------------------- /lib/legacy_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/lib/legacy_helper.rb -------------------------------------------------------------------------------- /lib/tasks/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/tasks/demo.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/lib/tasks/demo.rake -------------------------------------------------------------------------------- /lib/tasks/fake_drivers.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/lib/tasks/fake_drivers.rake -------------------------------------------------------------------------------- /lib/tasks/legacy.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/lib/tasks/legacy.rake -------------------------------------------------------------------------------- /lib/tasks/locales.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/lib/tasks/locales.rake -------------------------------------------------------------------------------- /lib/tasks/ridepilot.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/lib/tasks/ridepilot.rake -------------------------------------------------------------------------------- /lib/tasks/scheduler.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/lib/tasks/scheduler.rake -------------------------------------------------------------------------------- /lib/tasks/sql.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/lib/tasks/sql.rake -------------------------------------------------------------------------------- /lib/tasks/test.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/lib/tasks/test.rake -------------------------------------------------------------------------------- /lib/tasks/utility.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/lib/tasks/utility.rake -------------------------------------------------------------------------------- /log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/403.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/403.html -------------------------------------------------------------------------------- /public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/404.html -------------------------------------------------------------------------------- /public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/422.html -------------------------------------------------------------------------------- /public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/500.html -------------------------------------------------------------------------------- /public/Guide/1_Introduction.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/1_Introduction.htm -------------------------------------------------------------------------------- /public/Guide/2_UserTypes.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/2_UserTypes.htm -------------------------------------------------------------------------------- /public/Guide/3_AccessingRidePilot.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/3_AccessingRidePilot.htm -------------------------------------------------------------------------------- /public/Guide/4_Login.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/4_Login.htm -------------------------------------------------------------------------------- /public/Guide/5_UserInterface.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/5_UserInterface.htm -------------------------------------------------------------------------------- /public/Guide/6_Help.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/6_Help.htm -------------------------------------------------------------------------------- /public/Guide/7_Tabs.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/7_Tabs.htm -------------------------------------------------------------------------------- /public/Guide/8_Processes.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/8_Processes.htm -------------------------------------------------------------------------------- /public/Guide/css/chmprocessor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/css/chmprocessor.css -------------------------------------------------------------------------------- /public/Guide/document-print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/document-print.png -------------------------------------------------------------------------------- /public/Guide/embeddedstyles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/embeddedstyles.css -------------------------------------------------------------------------------- /public/Guide/go-home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/go-home.png -------------------------------------------------------------------------------- /public/Guide/go-next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/go-next.png -------------------------------------------------------------------------------- /public/Guide/go-previous.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/go-previous.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image001.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image002.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image003.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image003.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image004.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image004.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image005.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image005.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image006.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image007.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image008.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image008.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image009.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image009.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image010.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image010.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image011.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image011.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image012.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image012.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image013.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image013.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image014.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image014.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image015.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image015.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image016.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image017.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image018.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image018.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image019.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image019.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image020.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image020.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image021.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image021.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image022.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image022.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image023.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image023.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image024.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image024.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image025.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image025.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image026.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image026.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image027.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image027.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image028.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image028.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image029.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image029.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image030.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image030.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image031.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image031.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image032.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image032.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image033.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image033.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image034.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image034.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image035.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image035.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image036.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image036.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image037.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image037.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image038.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image038.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image039.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image039.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image040.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image040.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image041.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image041.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image042.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image042.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image043.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image043.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image044.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image044.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image045.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image045.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image046.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image046.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image047.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image047.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image048.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image048.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image049.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image049.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image050.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image050.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image051.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image051.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image052.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image052.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image053.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image053.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image054.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image054.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image055.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image055.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image056.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image056.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image057.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image057.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image058.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image058.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image059.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image059.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image060.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image060.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image061.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image061.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image062.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image062.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image063.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image063.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image064.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image064.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image065.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image065.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image066.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image066.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image067.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image067.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image068.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image068.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image069.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image069.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image070.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image070.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image071.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image071.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image072.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image072.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image073.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image073.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image074.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image074.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image075.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image075.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image076.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image076.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image077.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image077.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image078.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image078.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image079.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image079.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image080.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image080.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image081.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image081.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image082.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image082.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image083.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image083.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image084.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image084.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image085.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image085.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image086.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image086.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image087.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image087.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image088.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image088.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image089.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image089.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image090.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image090.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image091.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image091.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image092.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image092.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image093.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image093.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image094.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image094.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image095.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image095.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image096.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image096.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image097.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image097.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image098.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image098.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image099.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image099.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image100.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image100.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image101.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image101.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image102.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image102.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image103.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image103.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image104.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image104.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image105.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image105.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image106.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image106.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image107.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image107.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image108.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image108.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image109.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image109.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image110.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image110.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image111.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image111.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image112.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image112.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image113.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image113.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image114.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image114.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image115.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image115.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image116.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image116.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image117.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image117.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image118.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image118.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image119.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image119.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image120.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image120.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image121.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image121.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image122.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image122.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image123.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image123.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image124.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image124.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image125.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image125.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image126.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image126.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image127.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image127.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image128.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image129.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image129.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image130.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image130.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image131.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image131.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image132.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image132.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image133.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image133.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image134.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image134.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image135.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image135.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image136.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image136.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image137.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image137.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image138.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image138.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image139.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image139.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image140.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image140.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image141.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image141.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image142.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image142.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image143.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image143.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image144.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image144.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image145.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image145.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image146.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image146.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image147.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image147.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image148.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image148.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image149.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image149.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image150.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image151.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image151.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image152.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image153.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image153.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image154.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image154.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image155.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image155.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image156.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image156.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image157.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image157.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image158.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image158.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image159.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image159.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image160.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image160.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image161.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image161.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image162.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image162.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image163.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image163.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image164.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image164.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image165.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image165.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image166.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image166.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image167.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image168.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image168.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image169.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image169.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image170.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image170.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image171.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image171.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image172.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image172.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image173.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image173.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image174.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image174.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image175.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image175.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image176.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image176.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image177.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image177.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image178.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image178.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image179.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image179.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image180.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image180.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image181.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image181.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image182.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image182.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image183.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image183.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image184.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image184.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image185.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image185.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image186.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image186.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image187.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image187.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image188.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image188.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image189.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image189.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image190.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image190.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image191.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image191.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image192.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image193.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image193.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image194.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image194.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image195.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image195.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image196.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image196.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image197.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image197.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image198.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image198.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image199.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image199.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image200.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image201.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image201.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image202.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image202.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image203.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image203.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image204.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image204.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image205.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image205.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image206.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image206.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image207.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image207.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image208.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image208.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image209.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image209.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image210.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image210.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image211.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image211.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image212.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image212.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image213.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image213.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image214.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image214.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image215.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image215.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image216.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image216.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image217.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image217.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image218.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image218.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image219.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image219.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image220.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image220.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image221.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image221.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image222.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image222.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image223.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image223.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image224.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image224.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image225.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image225.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image226.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image226.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image227.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image227.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image228.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image228.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image229.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image229.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image230.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image230.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image231.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image231.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image232.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image232.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image233.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image233.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image234.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image234.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image235.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image235.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image236.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image236.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image237.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image237.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image238.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image238.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image239.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image239.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image240.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image240.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image241.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image241.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image242.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image242.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image243.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image243.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image244.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image244.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image245.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image245.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image246.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image246.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image247.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image247.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image248.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image248.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image249.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image249.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image250.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image250.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image251.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image251.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image252.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image252.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image253.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image253.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image254.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image254.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image255.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image255.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image256.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image256.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image257.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image257.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image258.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image258.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image259.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image259.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image260.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image260.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image261.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image261.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image262.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image262.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image263.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image263.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image264.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image264.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image265.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image265.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image266.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image266.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image267.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image267.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image268.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image268.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image269.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image269.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image270.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image270.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image271.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image271.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image272.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image272.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image273.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image273.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image274.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image274.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image275.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image275.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image276.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image276.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image277.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image277.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image278.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image278.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image279.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image279.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image280.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image280.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image281.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image281.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image282.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image282.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image283.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image283.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image284.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image284.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image285.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image285.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image286.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image286.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image287.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image287.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image288.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image288.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image289.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image289.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image290.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image290.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image291.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image291.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image292.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image292.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image293.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image293.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image294.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image294.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image295.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image295.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image296.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image296.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image297.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image297.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image298.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image298.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image299.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image299.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image300.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image300.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image301.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image301.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image302.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image302.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image303.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image303.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image304.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image304.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image305.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image305.jpg -------------------------------------------------------------------------------- /public/Guide/guide_files/image306.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image306.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image307.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image307.png -------------------------------------------------------------------------------- /public/Guide/guide_files/image308.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/guide_files/image308.jpg -------------------------------------------------------------------------------- /public/Guide/help-browser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/help-browser.png -------------------------------------------------------------------------------- /public/Guide/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/index.html -------------------------------------------------------------------------------- /public/Guide/js/chmprocessor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/js/chmprocessor.js -------------------------------------------------------------------------------- /public/Guide/js/jquery-1.9.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/js/jquery-1.9.1.js -------------------------------------------------------------------------------- /public/Guide/js/jquery.hotkeys.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/js/jquery.hotkeys.js -------------------------------------------------------------------------------- /public/Guide/js/jquery.jstree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/js/jquery.jstree.js -------------------------------------------------------------------------------- /public/Guide/js/themes/apple/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/js/themes/apple/bg.jpg -------------------------------------------------------------------------------- /public/Guide/js/themes/apple/d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/js/themes/apple/d.png -------------------------------------------------------------------------------- /public/Guide/start.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/Guide/start.htm -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/ntd_template.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/ntd_template.xlsx -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/robots.txt -------------------------------------------------------------------------------- /public/uta-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/uta-logo.svg -------------------------------------------------------------------------------- /public/uta_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/uta_logo.png -------------------------------------------------------------------------------- /public/uta_logo_header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/public/uta_logo_header.png -------------------------------------------------------------------------------- /spec/config/app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/spec/config/app.yml -------------------------------------------------------------------------------- /spec/factories/ada_questions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/spec/factories/ada_questions.rb -------------------------------------------------------------------------------- /spec/factories/address_groups.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/spec/factories/address_groups.rb -------------------------------------------------------------------------------- /spec/factories/addresses.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/spec/factories/addresses.rb -------------------------------------------------------------------------------- /spec/factories/booking_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/spec/factories/booking_users.rb -------------------------------------------------------------------------------- /spec/factories/capacity_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/spec/factories/capacity_types.rb -------------------------------------------------------------------------------- /spec/factories/custom_reports.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/spec/factories/custom_reports.rb -------------------------------------------------------------------------------- /spec/factories/customers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/spec/factories/customers.rb -------------------------------------------------------------------------------- /spec/factories/device_pools.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/spec/factories/device_pools.rb -------------------------------------------------------------------------------- /spec/factories/documents.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/spec/factories/documents.rb -------------------------------------------------------------------------------- /spec/factories/donations.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/spec/factories/donations.rb -------------------------------------------------------------------------------- /spec/factories/driver_histories.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/spec/factories/driver_histories.rb -------------------------------------------------------------------------------- /spec/factories/drivers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/spec/factories/drivers.rb -------------------------------------------------------------------------------- /spec/factories/eligibilities.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/spec/factories/eligibilities.rb -------------------------------------------------------------------------------- /spec/factories/field_configs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/spec/factories/field_configs.rb -------------------------------------------------------------------------------- /spec/factories/funding_sources.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/spec/factories/funding_sources.rb -------------------------------------------------------------------------------- /spec/factories/gps_locations.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/spec/factories/gps_locations.rb -------------------------------------------------------------------------------- /spec/factories/itineraries.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/spec/factories/itineraries.rb -------------------------------------------------------------------------------- /spec/factories/lookup_tables.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/spec/factories/lookup_tables.rb -------------------------------------------------------------------------------- /spec/factories/messages.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/spec/factories/messages.rb -------------------------------------------------------------------------------- /spec/factories/mobilities.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/spec/factories/mobilities.rb -------------------------------------------------------------------------------- /spec/factories/monthlies.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/spec/factories/monthlies.rb -------------------------------------------------------------------------------- /spec/factories/operating_hours.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/spec/factories/operating_hours.rb -------------------------------------------------------------------------------- /spec/factories/planned_leaves.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/spec/factories/planned_leaves.rb -------------------------------------------------------------------------------- /spec/factories/provider_reports.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/spec/factories/provider_reports.rb -------------------------------------------------------------------------------- /spec/factories/providers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/spec/factories/providers.rb -------------------------------------------------------------------------------- /spec/factories/regions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/spec/factories/regions.rb -------------------------------------------------------------------------------- /spec/factories/repeating_runs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/spec/factories/repeating_runs.rb -------------------------------------------------------------------------------- /spec/factories/repeating_trips.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/spec/factories/repeating_trips.rb -------------------------------------------------------------------------------- /spec/factories/roles.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/spec/factories/roles.rb -------------------------------------------------------------------------------- /spec/factories/run_distances.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/spec/factories/run_distances.rb -------------------------------------------------------------------------------- /spec/factories/runs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/spec/factories/runs.rb -------------------------------------------------------------------------------- /spec/factories/service_levels.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/spec/factories/service_levels.rb -------------------------------------------------------------------------------- /spec/factories/travel_trainings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/spec/factories/travel_trainings.rb -------------------------------------------------------------------------------- /spec/factories/trip_purposes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/spec/factories/trip_purposes.rb -------------------------------------------------------------------------------- /spec/factories/trip_results.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/spec/factories/trip_results.rb -------------------------------------------------------------------------------- /spec/factories/trips.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/spec/factories/trips.rb -------------------------------------------------------------------------------- /spec/factories/users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/spec/factories/users.rb -------------------------------------------------------------------------------- /spec/factories/vehicle_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/spec/factories/vehicle_types.rb -------------------------------------------------------------------------------- /spec/factories/vehicles.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/spec/factories/vehicles.rb -------------------------------------------------------------------------------- /spec/features/cab_trips_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/spec/features/cab_trips_spec.rb -------------------------------------------------------------------------------- /spec/features/customers_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/spec/features/customers_spec.rb -------------------------------------------------------------------------------- /spec/features/lookup_tables_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/spec/features/lookup_tables_spec.rb -------------------------------------------------------------------------------- /spec/features/reports_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/spec/features/reports_spec.rb -------------------------------------------------------------------------------- /spec/features/users_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/spec/features/users_spec.rb -------------------------------------------------------------------------------- /spec/models/ada_question_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/spec/models/ada_question_spec.rb -------------------------------------------------------------------------------- /spec/models/address_group_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/spec/models/address_group_spec.rb -------------------------------------------------------------------------------- /spec/models/address_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/spec/models/address_spec.rb -------------------------------------------------------------------------------- /spec/models/capacity_type_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/spec/models/capacity_type_spec.rb -------------------------------------------------------------------------------- /spec/models/customer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/spec/models/customer_spec.rb -------------------------------------------------------------------------------- /spec/models/document_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/spec/models/document_spec.rb -------------------------------------------------------------------------------- /spec/models/driver_history_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/spec/models/driver_history_spec.rb -------------------------------------------------------------------------------- /spec/models/driver_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/spec/models/driver_spec.rb -------------------------------------------------------------------------------- /spec/models/eligibility_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/spec/models/eligibility_spec.rb -------------------------------------------------------------------------------- /spec/models/ethnicity_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/spec/models/ethnicity_spec.rb -------------------------------------------------------------------------------- /spec/models/field_config_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/spec/models/field_config_spec.rb -------------------------------------------------------------------------------- /spec/models/funding_source_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/spec/models/funding_source_spec.rb -------------------------------------------------------------------------------- /spec/models/gps_location_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/spec/models/gps_location_spec.rb -------------------------------------------------------------------------------- /spec/models/itinerary_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/spec/models/itinerary_spec.rb -------------------------------------------------------------------------------- /spec/models/lookup_table_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/spec/models/lookup_table_spec.rb -------------------------------------------------------------------------------- /spec/models/message_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/spec/models/message_spec.rb -------------------------------------------------------------------------------- /spec/models/monthly_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/spec/models/monthly_spec.rb -------------------------------------------------------------------------------- /spec/models/operating_hour_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/spec/models/operating_hour_spec.rb -------------------------------------------------------------------------------- /spec/models/planned_leave_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/spec/models/planned_leave_spec.rb -------------------------------------------------------------------------------- /spec/models/provider_report_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/spec/models/provider_report_spec.rb -------------------------------------------------------------------------------- /spec/models/provider_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/spec/models/provider_spec.rb -------------------------------------------------------------------------------- /spec/models/repeating_run_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/spec/models/repeating_run_spec.rb -------------------------------------------------------------------------------- /spec/models/repeating_trip_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/spec/models/repeating_trip_spec.rb -------------------------------------------------------------------------------- /spec/models/run_distance_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/spec/models/run_distance_spec.rb -------------------------------------------------------------------------------- /spec/models/run_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/spec/models/run_spec.rb -------------------------------------------------------------------------------- /spec/models/service_level_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/spec/models/service_level_spec.rb -------------------------------------------------------------------------------- /spec/models/travel_training_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/spec/models/travel_training_spec.rb -------------------------------------------------------------------------------- /spec/models/trip_purpose_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/spec/models/trip_purpose_spec.rb -------------------------------------------------------------------------------- /spec/models/trip_result_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/spec/models/trip_result_spec.rb -------------------------------------------------------------------------------- /spec/models/trip_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/spec/models/trip_spec.rb -------------------------------------------------------------------------------- /spec/models/user_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/spec/models/user_spec.rb -------------------------------------------------------------------------------- /spec/models/vehicle_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/spec/models/vehicle_spec.rb -------------------------------------------------------------------------------- /spec/models/vehicle_type_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/spec/models/vehicle_type_spec.rb -------------------------------------------------------------------------------- /spec/rails_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/spec/rails_helper.rb -------------------------------------------------------------------------------- /spec/routing/home_routing_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/spec/routing/home_routing_spec.rb -------------------------------------------------------------------------------- /spec/routing/runs_routing_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/spec/routing/runs_routing_spec.rb -------------------------------------------------------------------------------- /spec/routing/trips_routing_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/spec/routing/trips_routing_spec.rb -------------------------------------------------------------------------------- /spec/routing/users_routing_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/spec/routing/users_routing_spec.rb -------------------------------------------------------------------------------- /spec/samples/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/spec/samples/image.png -------------------------------------------------------------------------------- /spec/services/trip_filter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/spec/services/trip_filter_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/support/clean_test_files.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/spec/support/clean_test_files.rb -------------------------------------------------------------------------------- /spec/support/controller_macros.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/spec/support/controller_macros.rb -------------------------------------------------------------------------------- /spec/support/factory_bot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/spec/support/factory_bot.rb -------------------------------------------------------------------------------- /test/fixtures/addresses.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/test/fixtures/addresses.yml -------------------------------------------------------------------------------- /test/fixtures/customers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/test/fixtures/customers.yml -------------------------------------------------------------------------------- /test/fixtures/mobilities.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/test/fixtures/mobilities.yml -------------------------------------------------------------------------------- /test/fixtures/providers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/test/fixtures/providers.yml -------------------------------------------------------------------------------- /test/fixtures/roles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/test/fixtures/roles.yml -------------------------------------------------------------------------------- /test/fixtures/trips.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/test/fixtures/trips.yml -------------------------------------------------------------------------------- /test/fixtures/users.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/test/fixtures/users.yml -------------------------------------------------------------------------------- /test/performance/browsing_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/test/performance/browsing_test.rb -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camsys/ridepilot/HEAD/test/test_helper.rb -------------------------------------------------------------------------------- /vendor/assets/javascripts/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/assets/stylesheets/.keep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------