├── .codeclimate.yml ├── .env.dev.template ├── .env.example ├── .eslintrc.yml ├── .gitignore ├── .gitlab-ci.yml ├── .jscsrc ├── .jshintignore ├── .jshintrc ├── .rspec ├── .rubocop.yml ├── .ruby-version ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Capfile ├── Dockerfile.cron ├── Dockerfile.dev ├── Dockerfile.prod ├── Gemfile ├── Gemfile.lock ├── Guardfile ├── LICENSE ├── Procfile ├── README.md ├── Rakefile ├── app.json ├── app ├── assets │ ├── fonts │ │ └── open-sans │ │ │ ├── Apache License Version 2.txt │ │ │ ├── OpenSans-Bold-webfont.eot │ │ │ ├── OpenSans-Bold-webfont.svg │ │ │ ├── OpenSans-Bold-webfont.ttf │ │ │ ├── OpenSans-Bold-webfont.woff │ │ │ ├── OpenSans-BoldItalic-webfont.eot │ │ │ ├── OpenSans-BoldItalic-webfont.svg │ │ │ ├── OpenSans-BoldItalic-webfont.ttf │ │ │ ├── OpenSans-BoldItalic-webfont.woff │ │ │ ├── OpenSans-ExtraBold-webfont.eot │ │ │ ├── OpenSans-ExtraBold-webfont.svg │ │ │ ├── OpenSans-ExtraBold-webfont.ttf │ │ │ ├── OpenSans-ExtraBold-webfont.woff │ │ │ ├── OpenSans-ExtraBoldItalic-webfont.eot │ │ │ ├── OpenSans-ExtraBoldItalic-webfont.svg │ │ │ ├── OpenSans-ExtraBoldItalic-webfont.ttf │ │ │ ├── OpenSans-ExtraBoldItalic-webfont.woff │ │ │ ├── OpenSans-Italic-webfont.eot │ │ │ ├── OpenSans-Italic-webfont.svg │ │ │ ├── OpenSans-Italic-webfont.ttf │ │ │ ├── OpenSans-Italic-webfont.woff │ │ │ ├── OpenSans-Light-webfont.eot │ │ │ ├── OpenSans-Light-webfont.svg │ │ │ ├── OpenSans-Light-webfont.ttf │ │ │ ├── OpenSans-Light-webfont.woff │ │ │ ├── OpenSans-LightItalic-webfont.eot │ │ │ ├── OpenSans-LightItalic-webfont.svg │ │ │ ├── OpenSans-LightItalic-webfont.ttf │ │ │ ├── OpenSans-LightItalic-webfont.woff │ │ │ ├── OpenSans-Regular-webfont.eot │ │ │ ├── OpenSans-Regular-webfont.svg │ │ │ ├── OpenSans-Regular-webfont.ttf │ │ │ ├── OpenSans-Regular-webfont.woff │ │ │ ├── OpenSans-Semibold-webfont.eot │ │ │ ├── OpenSans-Semibold-webfont.svg │ │ │ ├── OpenSans-Semibold-webfont.ttf │ │ │ ├── OpenSans-Semibold-webfont.woff │ │ │ ├── OpenSans-SemiboldItalic-webfont.eot │ │ │ ├── OpenSans-SemiboldItalic-webfont.svg │ │ │ ├── OpenSans-SemiboldItalic-webfont.ttf │ │ │ ├── OpenSans-SemiboldItalic-webfont.woff │ │ │ └── stylesheet.scss │ ├── images │ │ ├── favicon.ico │ │ ├── no-image-260.gif │ │ ├── no-image.gif │ │ ├── res_logo.svg │ │ └── res_logo_2015.ai │ ├── javascripts │ │ ├── application.js │ │ ├── cart_pause-resume.js │ │ ├── datepickers.js │ │ ├── deactivation.js │ │ ├── manage_reservation.js │ │ ├── reservations.js │ │ └── variables.js.erb │ └── stylesheets │ │ ├── _bootstrap_and_overrides.scss │ │ ├── _bootstrap_overrides.scss │ │ ├── _global.scss │ │ ├── _jquery_overrides.scss.erb │ │ ├── _mixins.scss │ │ ├── _select2_customizations.scss │ │ ├── _variables.scss │ │ ├── app_configs │ │ └── _edit.scss │ │ ├── application.scss │ │ ├── autocomplete.scss │ │ ├── blackouts │ │ └── _new_recurring.scss │ │ ├── catalog │ │ └── _index.scss │ │ ├── equipment_models │ │ ├── _show.scss │ │ └── _table.scss │ │ ├── layouts │ │ ├── _application.scss │ │ ├── _footer.scss │ │ └── _navbar.scss │ │ ├── print.scss │ │ ├── reservations │ │ ├── _cart_dates.scss │ │ ├── _cart_sidebar.scss │ │ ├── _index.scss │ │ ├── _manage.scss │ │ ├── _new.scss │ │ └── _show.scss │ │ └── users │ │ ├── _import_success.scss │ │ └── _show.scss ├── controllers │ ├── announcements_controller.rb │ ├── app_configs_controller.rb │ ├── application_controller.rb │ ├── blackouts_controller.rb │ ├── catalog_controller.rb │ ├── categories_controller.rb │ ├── concerns │ │ └── calendarable.rb │ ├── contact_controller.rb │ ├── equipment_items_controller.rb │ ├── equipment_models_controller.rb │ ├── import_equipment_controller.rb │ ├── import_users_controller.rb │ ├── reports_controller.rb │ ├── requirements_controller.rb │ ├── reservations_controller.rb │ ├── status_controller.rb │ └── users_controller.rb ├── decorators │ ├── application_decorator.rb │ ├── category_decorator.rb │ ├── equipment_item_decorator.rb │ └── equipment_model_decorator.rb ├── helpers │ ├── announcements_helper.rb │ ├── app_configs_helper.rb │ ├── application_helper.rb │ ├── categories_helper.rb │ ├── contact_helper.rb │ ├── equipment_items_helper.rb │ ├── equipment_models_helper.rb │ ├── layout_helper.rb │ ├── reports_helper.rb │ ├── requirements_helper.rb │ ├── reservations_helper.rb │ ├── user_mailer_helper.rb │ └── users_helper.rb ├── inputs │ └── deleted_input.rb ├── jobs │ ├── application_job.rb │ ├── daily_tasks_job.rb │ ├── delete_missed_reservations_job.rb │ ├── delete_old_blackouts_job.rb │ ├── deny_missed_requests_job.rb │ ├── email_checkin_reminder_job.rb │ ├── email_checkout_reminder_job.rb │ ├── email_missed_reservations_job.rb │ ├── email_notes_to_admins_job.rb │ ├── email_overdue_reminder_job.rb │ ├── flag_missed_job.rb │ ├── flag_overdue_job.rb │ ├── hourly_tasks_job.rb │ └── reservation_job.rb ├── mailers │ ├── admin_mailer.rb │ ├── devise_mailer.rb │ ├── notifications_mailer.rb │ └── user_mailer.rb ├── models │ ├── ability.rb │ ├── announcement.rb │ ├── app_config.rb │ ├── application_record.rb │ ├── blackout.rb │ ├── cart.rb │ ├── cart_validations.rb │ ├── category.rb │ ├── checkin_procedure.rb │ ├── checkout_procedure.rb │ ├── concerns │ │ ├── linkable.rb │ │ └── soft_deletable.rb │ ├── equipment_item.rb │ ├── equipment_model.rb │ ├── message.rb │ ├── report.rb │ ├── requirement.rb │ ├── reservation.rb │ ├── reservation_validations.rb │ └── user.rb ├── queries │ ├── query_base.rb │ └── reservations │ │ ├── affected_by_blackout_query.rb │ │ ├── affected_by_recurring_blackout_query.rb │ │ ├── checkoutable_query.rb │ │ ├── consecutive_with_query.rb │ │ ├── for_cat_query.rb │ │ ├── future_query.rb │ │ ├── notes_unsent_query.rb │ │ ├── overlaps_with_date_range_query.rb │ │ ├── reservations_query_base.rb │ │ ├── starts_on_days_query.rb │ │ └── upcoming_query.rb └── views │ ├── admin_mailer │ ├── _reservation_note.html.erb │ ├── notes_reservation_notification.html.erb │ ├── overdue_checked_in_fine_admin.html.erb │ ├── request_filed.html.erb │ └── reservation_created_admin.html.erb │ ├── announcements │ ├── _form.html.erb │ ├── edit.html.erb │ ├── hide.js.erb │ ├── index.html.erb │ └── new.html.erb │ ├── app_configs │ ├── _form.erb │ └── edit.html.erb │ ├── application │ ├── _res_calendar.html.erb │ ├── calendar.html.erb │ └── calendar.json.jbuilder │ ├── application_setup │ └── index.html.erb │ ├── blackouts │ ├── _blackout_array.html.erb │ ├── _form.html.erb │ ├── _table.html.erb │ ├── edit.html.erb │ ├── index.html.erb │ ├── new.html.erb │ ├── new_recurring.html.erb │ └── show.html.erb │ ├── cart_js │ ├── cart_dates_reload.js.erb │ ├── reload_all.js.erb │ ├── reservation_form.js.erb │ └── update_cart.js.erb │ ├── catalog │ ├── _catalog_listing.html.erb │ ├── _equipment_model_div.html.erb │ ├── _no_equipment.html.erb │ ├── cat_pagination.js.erb │ ├── index.html.erb │ └── search_results.html.erb │ ├── categories │ ├── _form.html.erb │ ├── _table.html.erb │ ├── edit.html.erb │ ├── index.html.erb │ ├── new.html.erb │ └── show.html.erb │ ├── contact │ └── new.html.erb │ ├── devise │ ├── mailer │ │ └── reset_password_instructions.html.erb │ ├── passwords │ │ ├── edit.html.erb │ │ └── new.html.erb │ └── sessions │ │ └── new.html.erb │ ├── equipment_items │ ├── _form.html.erb │ ├── _table.html.erb │ ├── edit.html.erb │ ├── index.html.erb │ ├── new.html.erb │ └── show.html.erb │ ├── equipment_models │ ├── _add_to_cart.html.erb │ ├── _calendar.html.erb │ ├── _checkin_procedure_fields.html.erb │ ├── _checkout_procedure_fields.html.erb │ ├── _equipment_items_table.html.erb │ ├── _form.html.erb │ ├── _pending_reservations_table.erb │ ├── _table.html.erb │ ├── edit.html.erb │ ├── index.html.erb │ ├── new.html.erb │ └── show.html.erb │ ├── import_equipment │ ├── _import_cat_table.html.erb │ ├── _import_item_table.html.erb │ ├── _import_model_table.html.erb │ ├── import.html.erb │ └── imported.html.erb │ ├── import_users │ ├── _import_table.html.erb │ ├── import.html.erb │ └── imported.html.erb │ ├── kaminari │ ├── _first_page.html.erb │ ├── _gap.html.erb │ ├── _last_page.html.erb │ ├── _next_page.html.erb │ ├── _page.html.erb │ ├── _paginator.html.erb │ └── _prev_page.html.erb │ ├── layouts │ ├── _announcements.html.erb │ ├── _content.html.erb │ ├── _content_with_sidebar.html.erb │ ├── _flash_alerts.html.erb │ ├── _footer.html.erb │ ├── _head.html.erb │ ├── _navbar.html.erb │ ├── _sidebar.html.erb │ ├── _sidebar_with_search.html.erb │ ├── application.html.erb │ ├── application_with_search_sidebar.html.erb │ └── application_with_sidebar.html.erb │ ├── notifications_mailer │ └── new_message.text.erb │ ├── rails_admin │ └── main │ │ └── force_delete.html.haml │ ├── reports │ ├── _data_tables.html.erb │ ├── _report_dates.html.erb │ ├── _report_row.html.erb │ ├── _res_stat_set.html.erb │ ├── index.csv.erb │ ├── index.html.erb │ ├── subreport.csv.erb │ └── subreport.html.erb │ ├── requirements │ ├── _form.html.erb │ ├── edit.html.erb │ ├── index.html.erb │ ├── new.html.erb │ └── show.html.erb │ ├── reservations │ ├── _cart_dates.html.erb │ ├── _cart_sidebar.html.erb │ ├── _check_in_form.html.erb │ ├── _check_out_form.html.erb │ ├── _date_filter.html.erb │ ├── _due_date_box.html.erb │ ├── _edit_reservation_form.html.erb │ ├── _form.html.erb │ ├── _index_nav.html.erb │ ├── _index_nav_tab.html.erb │ ├── _list_items_in_cart.html.erb │ ├── _new_request.html.erb │ ├── _new_reservation.html.erb │ ├── _reservation_details.html.erb │ ├── _reservations_list.html.erb │ ├── _top_buttons.html.erb │ ├── _user_reservations_list.html.erb │ ├── current_reservations.html.erb │ ├── edit.html.erb │ ├── index.html.erb │ ├── manage.html.erb │ ├── new.html.erb │ ├── receipt.html.erb │ ├── review.html.erb │ └── show.html.erb │ ├── shared │ ├── _markdown_button.html.erb │ ├── _markdown_help.html.erb │ └── markdown_help_js.js.erb │ ├── terms_of_service │ ├── _user_accepted.html.erb │ └── index.html.erb │ ├── user_mailer │ ├── _checked_out.html.erb │ ├── _denied.html.erb │ ├── _due_today.html.erb │ ├── _missed.html.erb │ ├── _overdue.html.erb │ ├── _request_approved.html.erb │ ├── _request_expired.html.erb │ ├── _requested.html.erb │ ├── _returned.html.erb │ ├── _returned_overdue.html.erb │ ├── _starts_today.html.erb │ └── reservation_status_update.html.erb │ └── users │ ├── _current_equipment.html.erb │ ├── _find_user.html.erb │ ├── _form.html.erb │ ├── _history_table.html.erb │ ├── _quick_new.html.erb │ ├── _short_form.html.erb │ ├── _table.html.erb │ ├── calendar.html.erb │ ├── create_success.js.erb │ ├── edit.html.erb │ ├── index.html.erb │ ├── load_form_errors.js.erb │ ├── new.html.erb │ ├── quick_new.js.erb │ └── show.html.erb ├── bin ├── bundle ├── rails ├── rake ├── rspec ├── setup ├── spring ├── update └── yarn ├── config.ru ├── config ├── application.rb ├── boot.rb ├── cable.yml ├── database.development.yml ├── database.gitlab.yml ├── database.travis.yml ├── database.yml.example.fedora ├── database.yml.example.osx ├── database.yml.example.osx.pg ├── database.yml.example.production ├── database.yml.example.ubuntu ├── deploy.rb ├── deploy │ ├── production.rb │ └── staging.rb ├── environment.rb ├── environments │ ├── development.rb │ ├── production.rb │ └── test.rb ├── initializers │ ├── 00_devise.rb │ ├── assets.rb │ ├── authentication.rb │ ├── backtrace_silencers.rb │ ├── content_security_policy.rb │ ├── cookies_serializer.rb │ ├── days_of_the_week.rb │ ├── factory_girl.rb │ ├── filter_parameter_logging.rb │ ├── inflections.rb │ ├── kaminari_config.rb │ ├── mime_types.rb │ ├── new_rails_defaults.rb │ ├── party_foul.rb.example │ ├── rails_admin.rb │ ├── secret_token.rb │ ├── session_store.rb │ ├── setup_mail.rb │ ├── simple_form.rb │ ├── simple_form_bootstrap.rb │ ├── timeout.rb.example │ └── wrap_parameters.rb ├── locales │ ├── devise.en.yml │ ├── en.yml │ └── simple_form.en.yml ├── puma.rb ├── routes.rb ├── schedule.rb ├── secrets.yml.example ├── spring.rb ├── storage.yml └── unicorn.rb ├── db ├── default_messages │ ├── deleted_missed_email │ ├── overdue_email │ ├── tos_text │ ├── upcoming_checkin_email │ └── upcoming_checkout_email ├── migrate │ ├── 20090930234012_create_users.rb │ ├── 20091001181809_create_categories.rb │ ├── 20091001205833_create_equipment_models.rb │ ├── 20091001215110_create_equipment_objects.rb │ ├── 20091001234857_create_documents.rb │ ├── 20091002165901_create_reservations.rb │ ├── 20091002184322_create_sessions.rb │ ├── 20091006222033_create_accessories_equipment_models.rb │ ├── 20091023172207_add_checkin_and_checkout_procedures_to_equipment_model.rb │ ├── 20110401155438_change_checkin_checkout_procedures_to_text.rb │ ├── 20111206171041_add_sort_to_categories.rb │ ├── 20120528174217_add_equipment_references_to_reservations.rb │ ├── 20120528214306_create_settings.rb │ ├── 20120604201512_add_view_as_attribute.rb │ ├── 20120605165432_add_deleted_date_to_users.rb │ ├── 20120607175319_add_notes_to_reservation_table.rb │ ├── 20120612164714_equipment_models_associated_equipment_models.rb │ ├── 20120612170727_create_requirements.rb │ ├── 20120613150237_create_checkin_procedures.rb │ ├── 20120613150246_create_checkout_procedures.rb │ ├── 20120613153342_add_notes_sent_status_to_reservation.rb │ ├── 20120614183257_add_attachment_photo_to_equipment_models.rb │ ├── 20120614202421_add_attachment_documentation_to_equipment_models.rb │ ├── 20120619213311_clean_up_check_in_out_procedures.rb │ ├── 20120621140258_add_times_renewed_to_reservations.rb │ ├── 20120621161037_add_renewal_prefs.rb │ ├── 20120621174747_add_renewal_prefs_categories.rb │ ├── 20120626155902_add_app_config_table.rb │ ├── 20120627124555_create_black_outs.rb │ ├── 20120627185735_add_settings_to_app_config.rb │ ├── 20120629190015_drop_documents_table.rb │ ├── 20120705204903_drop_settings_table.rb │ ├── 20120705210315_add_email_active_for_app_configs.rb │ ├── 20120710135541_create_users_requirements.rb │ ├── 20120711204254_add_terms_of_service_to_app_configs.rb │ ├── 20120711225430_add_tos_accepted_to_user.rb │ ├── 20120712202128_add_contact_link_email_to_app_configs.rb │ ├── 20120717140824_add_set_id_to_blackouts.rb │ ├── 20120717204910_drop_accessories_table.rb │ ├── 20120717205310_create_cart_reservation.rb │ ├── 20120718004311_add_favicon_to_app_configs.rb │ ├── 20120724144133_add_multiple_models_to_each_requirement.rb │ ├── 20120724184424_add_description_to_requirements.rb │ ├── 20130310095143_add_delete_missed_reservations_to_app_configs.rb │ ├── 20130310095507_add_missed_reservation_deleted_email_body_to_app_configs.rb │ ├── 20130310101907_add_send_notifications_for_deleted_missed_reservations_to_app_configs.rb │ ├── 20130310101908_remove_overdue_checkout_attriutes_from_app_configs.rb │ ├── 20130310101909_add_checkout_persons_can_edit_to_app_configs.rb │ ├── 20130327193420_change_deleted_at_to_date_time.rb │ ├── 20130617030854_create_announcements.rb │ ├── 20130627211001_rename_blackout_attributes.rb │ ├── 20130628000001_add_new_columns.rb │ ├── 20130628152148_combine_type_columns_in_users_table.rb │ ├── 20130628154151_remove_view_as_attributes_from_user.rb │ ├── 20130708215903_add_viewed_to_app_configs.rb │ ├── 20130717084037_add_checkout_person_can_override_to_app_configs.rb │ ├── 20130815225046_add_deleted_at_to_checkin_and_checkout_procedures.rb │ ├── 20140306014551_add_default_value_to_users_nickname.rb │ ├── 20140403011914_add_csv_import_to_equipment_stuff.rb │ ├── 20140605230158_create_versions.rb │ ├── 20140610134345_add_approval_status_column_to_reservations.rb │ ├── 20140611142208_create_admin_notes.rb │ ├── 20140611142209_move_admin_notes_to_comments.rb │ ├── 20140617164155_set_user_viewmode_to_role.rb │ ├── 20140618173229_add_deactivation_reason_to_equipment_objects.rb │ ├── 20140702014415_remove_cart_reservations.rb │ ├── 20140710205359_remove_equipment_model_id_from_blackouts.rb │ ├── 20140714135920_add_blackout_expire_time_to_app_configs.rb │ ├── 20140715164121_remove_deleted_at_from_users.rb │ ├── 20140718170250_add_user_login_index_to_users.rb │ ├── 20140718195128_add_max_checkout_length_to_equipment_models.rb │ ├── 20140724194636_drop_active_admin_comments.rb │ ├── 20140727232238_add_request_text_to_app_configs.rb │ ├── 20140826040900_add_enable_renewals_to_app_config.rb │ ├── 20140904235608_default_notes_unsent_to_false.rb │ ├── 20140909230819_set_sane_config_defaults.rb │ ├── 20140916025809_set_default_view_mode_to_normal.rb │ ├── 20140930233633_add_missing_phone_to_users.rb │ ├── 20141001000934_add_notes_to_equipment_objects.rb │ ├── 20141012145135_rename_login_to_username_for_users.rb │ ├── 20141014041026_add_encrypted_password_to_users.rb │ ├── 20141026050048_add_recoverable_to_user.rb │ ├── 20141125025619_add_enable_new_users_to_app_configs.rb │ ├── 20141126050547_add_res_exp_time_to_app_configs.rb │ ├── 20141126061515_remove_delete_missed_reservations_from_app_configs.rb │ ├── 20141219172429_add_enable_guests_to_app_configs.rb │ ├── 20150206002111_add_upcoming_checkout_email_active_to_app_config.rb │ ├── 20150206003233_add_upcoming_checkout_email_body_to_app_config.rb │ ├── 20150213001312_change_fields_to_dates.rb │ ├── 20150223001537_add_default_to_upcoming_checkout_email.rb │ ├── 20150227032011_add_equipment_objects_count_to_equipment_models.rb │ ├── 20150304042433_rename_equipment_objects.rb │ ├── 20150322234652_add_status_to_reservation.rb │ ├── 20150323000707_add_overdue_to_reservation.rb │ ├── 20150323003850_add_flags_to_reservation.rb │ ├── 20150323013431_add_cas_login_to_users.rb │ ├── 20150327012721_add_rememberable_to_users.rb │ ├── 20150405012126_remove_approval_status_from_reservation.rb │ ├── 20150719040438_add_notify_admin_on_create_to_app_config.rb │ ├── 20150719050013_add_disable_user_emails_to_app_configs.rb │ ├── 20150719052612_add_late_fee_max_to_equipment_models.rb │ ├── 20160304025530_add_overdue_count_to_equipment_models.rb │ ├── 20160311070200_add_autodeactivate_on_archive_to_app_config.rb │ ├── 20160610135455_add_requests_affect_availability_to_app_config.rb │ ├── 20180624231458_fix_overdue_count.rb │ ├── 20191111190101_create_active_storage_tables.active_storage.rb │ ├── 20191112210445_convert_to_active_storage.rb │ └── 20200123142405_remove_paperclip_columns.rb ├── schema.rb ├── seed_images │ ├── 664px-Mini-VGA_cropped.jpg │ ├── Canon28mm.jpg │ ├── Canon50mm.jpg │ ├── MKE400.jpg │ ├── MackieSRM150.jpg │ ├── Nikon_P80.jpg │ ├── adesso-cyberpad.jpg │ ├── beachtek-dxa-5da.jpg │ ├── beachtek-dxa2t.jpg │ ├── canon_hv20_1.jpg │ ├── canonspeedlite270ex copy.jpg │ ├── canonspeedlite270ex.jpg │ ├── epson-powerlite.jpg │ ├── epsonprojector.jpg │ ├── kensington-wirelesspresenter.jpg │ ├── korg-nanokontrol.jpg │ ├── korg-nanopad.jpg │ ├── nikon-d60.jpg │ ├── nikoncoolpixp80_2.jpg │ ├── olympus_ls_10_2-org.jpg │ ├── panasonichdc-tm300.jpg │ ├── sweetwater-XLR20.jpg │ └── wacomtablet.jpg └── seeds.rb ├── doc └── reservations_erd.pdf ├── docker-compose.yml ├── entrypoint-cron.sh ├── entrypoint-prod.sh ├── entrypoint.sh ├── lib ├── activation_helper.rb ├── autocomplete.rb ├── blackout_updater.rb ├── capistrano │ └── tasks │ │ └── deployment_tasks.rake ├── class_from_string.rb ├── csv_export.rb ├── csv_import.rb ├── development_mail_interceptor.rb ├── equipment_import.rb ├── extras │ └── simple_form_extensions.rb ├── job_helpers │ └── email_job_helper.rb ├── ldap_helper.rb ├── people_api_helper.rb ├── rails_extensions.rb ├── searchable.rb ├── seed │ ├── app_config_generator.rb │ ├── automatic_seed.rb │ ├── blackout_generator.rb │ ├── category_generator.rb │ ├── equipment_item_generator.rb │ ├── equipment_model_generator.rb │ ├── generator.rb │ ├── procedure_generator.rb │ ├── prompted_seed.rb │ ├── requirement_generator.rb │ ├── reservation_generator.rb │ ├── reservation_generator_helper.rb │ └── user_generator.rb ├── tasks │ ├── active_storage.rake │ ├── scheduler.rake │ ├── setup_application.rake │ └── style_checker.rake └── templates │ └── erb │ └── scaffold │ └── _form.html.erb ├── package.json ├── public ├── 404.html ├── 422.html ├── 500.html └── robots.txt ├── script └── rails ├── spec ├── controllers │ ├── announcements_controller_spec.rb │ ├── app_configs_controller_spec.rb │ ├── application_controller_spec.rb │ ├── blackouts_controller_spec.rb │ ├── catalog_controller_spec.rb │ ├── categories_controller_spec.rb │ ├── contact_controller_spec.rb │ ├── equipment_items_controller_spec.rb │ ├── equipment_models_controller_spec.rb │ ├── import_users_controller_spec.rb │ ├── reports_controller_spec.rb │ ├── requirements_controller_spec.rb │ ├── reservations_controller_spec.rb │ └── users_controller_spec.rb ├── factories │ ├── _sequences.rb │ ├── announcements.rb │ ├── app_configs.rb │ ├── blackouts.rb │ ├── carts.rb │ ├── categories.rb │ ├── checkin_procedures.rb │ ├── checkout_procedures.rb │ ├── equipment_items.rb │ ├── equipment_models.rb │ ├── messages.rb │ ├── requirements.rb │ ├── reservations.rb │ └── users.rb ├── features │ ├── announcements_spec.rb │ ├── auth_spec.rb │ ├── blackout_spec.rb │ ├── catalog_requirements_spec.rb │ ├── eq_model_deactivation_spec.rb │ ├── eq_model_editing_spec.rb │ ├── eq_model_spec.rb │ ├── equipment_model_calendar_spec.rb │ ├── equipment_model_views_spec.rb │ ├── flash_spec.rb │ ├── guest_spec.rb │ ├── import_users_spec.rb │ ├── profile_spec.rb │ ├── rails_admin_spec.rb │ ├── receipt_spec.rb │ ├── reservations_archive_spec.rb │ ├── reservations_handling_spec.rb │ ├── reservations_spec.rb │ ├── task_buttons_spec.rb │ └── users_spec.rb ├── fixtures │ ├── cr_line_endings_users.csv │ ├── extra_columns_users.csv │ ├── header_spaces_users.csv │ ├── invalid_utf8_users.csv │ ├── users_to_ban.csv │ └── valid_users.csv ├── helpers │ ├── announcements_helper_spec.rb │ ├── application_helper_spec.rb │ ├── email_helper_spec.rb │ ├── equipment_model_helper_spec.rb │ ├── requirements_helper_spec.rb │ ├── reservations_helper_spec.rb │ ├── user_mailer_helper_spec.rb │ └── users_helper_spec.rb ├── jobs │ ├── daily_tasks_job_spec.rb │ ├── delete_missed_reservations_job_spec.rb │ ├── delete_old_blackouts_job_spec.rb │ ├── deny_missed_requests_job_spec.rb │ ├── email_checkin_reminder_job_spec.rb │ ├── email_checkout_reminder_job_spec.rb │ ├── email_missed_reservations_job_spec.rb │ ├── email_notes_to_admins_job_spec.rb │ ├── email_overdue_reminder_job_spec.rb │ ├── flag_missed_job_spec.rb │ ├── flag_overdue_job_spec.rb │ └── hourly_tasks_job_spec.rb ├── lib │ ├── blackout_updater_spec.rb │ ├── class_from_string_spec.rb │ ├── csv_export_spec.rb │ ├── csv_import_spec.rb │ ├── generator_spec.rb │ └── ldap_helper_spec.rb ├── mailers │ ├── admin_mailer_spec.rb │ └── user_mailer_spec.rb ├── models │ ├── announcement_spec.rb │ ├── app_config_spec.rb │ ├── blackout_spec.rb │ ├── cart_spec.rb │ ├── category_spec.rb │ ├── checkin_procedure_spec.rb │ ├── checkout_procedure_spec.rb │ ├── equipment_item_spec.rb │ ├── equipment_model_spec.rb │ ├── message_spec.rb │ ├── report_spec.rb │ ├── requirement_spec.rb │ ├── reservation_spec.rb │ └── user_spec.rb ├── queries │ └── reservations │ │ └── affected_by_recurring_blackout_query.rb ├── spec_helper.rb └── support │ ├── app_config_helpers.rb │ ├── calendarable.rb │ ├── capybara_form_helper.rb │ ├── capybara_silence_puma.rb │ ├── chromedriver.rb │ ├── controller_helpers.rb │ ├── env_helpers.rb │ ├── factory_girl.rb │ ├── feature_helpers.rb │ ├── mockers │ ├── category_mock.rb │ ├── equipment_item_mock.rb │ ├── equipment_model_mock.rb │ ├── mocker.rb │ ├── reservation_mock.rb │ └── user_mock.rb │ ├── shared_contexts │ └── rake.rb │ ├── shared_examples │ ├── concerns │ │ ├── linkable.rb │ │ └── soft_deletable.rb │ ├── controller_examples.rb │ ├── email_job.rb │ └── flag_job.rb │ └── warden_setup.rb ├── test └── vendor └── assets ├── images ├── glyphicons-halflings-white.png └── glyphicons-halflings.png ├── javascripts ├── dataTables_numhtml_detect.js ├── dataTables_numhtml_sort.js ├── datatables.min.js ├── jquery.dotdotdot.js └── jquery.sticky.js └── stylesheets ├── datatables.min.css ├── jquery-ui-1.10.3.custom.css ├── jquery-ui-1.10.3.theme.css └── jquery.ui.1.10.3.ie.css /.codeclimate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/.codeclimate.yml -------------------------------------------------------------------------------- /.env.dev.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/.env.dev.template -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/.env.example -------------------------------------------------------------------------------- /.eslintrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/.eslintrc.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.jscsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/.jscsrc -------------------------------------------------------------------------------- /.jshintignore: -------------------------------------------------------------------------------- 1 | !(app|lib) 2 | vendor 3 | -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/.jshintrc -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --format Fuubar 3 | -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 2.6.5 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Capfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/Capfile -------------------------------------------------------------------------------- /Dockerfile.cron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/Dockerfile.cron -------------------------------------------------------------------------------- /Dockerfile.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/Dockerfile.dev -------------------------------------------------------------------------------- /Dockerfile.prod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/Dockerfile.prod -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /Guardfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/Guardfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/Procfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/Rakefile -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app.json -------------------------------------------------------------------------------- /app/assets/fonts/open-sans/Apache License Version 2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/assets/fonts/open-sans/Apache License Version 2.txt -------------------------------------------------------------------------------- /app/assets/fonts/open-sans/OpenSans-Bold-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/assets/fonts/open-sans/OpenSans-Bold-webfont.eot -------------------------------------------------------------------------------- /app/assets/fonts/open-sans/OpenSans-Bold-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/assets/fonts/open-sans/OpenSans-Bold-webfont.svg -------------------------------------------------------------------------------- /app/assets/fonts/open-sans/OpenSans-Bold-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/assets/fonts/open-sans/OpenSans-Bold-webfont.ttf -------------------------------------------------------------------------------- /app/assets/fonts/open-sans/OpenSans-Bold-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/assets/fonts/open-sans/OpenSans-Bold-webfont.woff -------------------------------------------------------------------------------- /app/assets/fonts/open-sans/OpenSans-BoldItalic-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/assets/fonts/open-sans/OpenSans-BoldItalic-webfont.eot -------------------------------------------------------------------------------- /app/assets/fonts/open-sans/OpenSans-BoldItalic-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/assets/fonts/open-sans/OpenSans-BoldItalic-webfont.svg -------------------------------------------------------------------------------- /app/assets/fonts/open-sans/OpenSans-BoldItalic-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/assets/fonts/open-sans/OpenSans-BoldItalic-webfont.ttf -------------------------------------------------------------------------------- /app/assets/fonts/open-sans/OpenSans-BoldItalic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/assets/fonts/open-sans/OpenSans-BoldItalic-webfont.woff -------------------------------------------------------------------------------- /app/assets/fonts/open-sans/OpenSans-ExtraBold-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/assets/fonts/open-sans/OpenSans-ExtraBold-webfont.eot -------------------------------------------------------------------------------- /app/assets/fonts/open-sans/OpenSans-ExtraBold-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/assets/fonts/open-sans/OpenSans-ExtraBold-webfont.svg -------------------------------------------------------------------------------- /app/assets/fonts/open-sans/OpenSans-ExtraBold-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/assets/fonts/open-sans/OpenSans-ExtraBold-webfont.ttf -------------------------------------------------------------------------------- /app/assets/fonts/open-sans/OpenSans-ExtraBold-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/assets/fonts/open-sans/OpenSans-ExtraBold-webfont.woff -------------------------------------------------------------------------------- /app/assets/fonts/open-sans/OpenSans-ExtraBoldItalic-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/assets/fonts/open-sans/OpenSans-ExtraBoldItalic-webfont.eot -------------------------------------------------------------------------------- /app/assets/fonts/open-sans/OpenSans-ExtraBoldItalic-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/assets/fonts/open-sans/OpenSans-ExtraBoldItalic-webfont.svg -------------------------------------------------------------------------------- /app/assets/fonts/open-sans/OpenSans-ExtraBoldItalic-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/assets/fonts/open-sans/OpenSans-ExtraBoldItalic-webfont.ttf -------------------------------------------------------------------------------- /app/assets/fonts/open-sans/OpenSans-ExtraBoldItalic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/assets/fonts/open-sans/OpenSans-ExtraBoldItalic-webfont.woff -------------------------------------------------------------------------------- /app/assets/fonts/open-sans/OpenSans-Italic-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/assets/fonts/open-sans/OpenSans-Italic-webfont.eot -------------------------------------------------------------------------------- /app/assets/fonts/open-sans/OpenSans-Italic-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/assets/fonts/open-sans/OpenSans-Italic-webfont.svg -------------------------------------------------------------------------------- /app/assets/fonts/open-sans/OpenSans-Italic-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/assets/fonts/open-sans/OpenSans-Italic-webfont.ttf -------------------------------------------------------------------------------- /app/assets/fonts/open-sans/OpenSans-Italic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/assets/fonts/open-sans/OpenSans-Italic-webfont.woff -------------------------------------------------------------------------------- /app/assets/fonts/open-sans/OpenSans-Light-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/assets/fonts/open-sans/OpenSans-Light-webfont.eot -------------------------------------------------------------------------------- /app/assets/fonts/open-sans/OpenSans-Light-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/assets/fonts/open-sans/OpenSans-Light-webfont.svg -------------------------------------------------------------------------------- /app/assets/fonts/open-sans/OpenSans-Light-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/assets/fonts/open-sans/OpenSans-Light-webfont.ttf -------------------------------------------------------------------------------- /app/assets/fonts/open-sans/OpenSans-Light-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/assets/fonts/open-sans/OpenSans-Light-webfont.woff -------------------------------------------------------------------------------- /app/assets/fonts/open-sans/OpenSans-LightItalic-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/assets/fonts/open-sans/OpenSans-LightItalic-webfont.eot -------------------------------------------------------------------------------- /app/assets/fonts/open-sans/OpenSans-LightItalic-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/assets/fonts/open-sans/OpenSans-LightItalic-webfont.svg -------------------------------------------------------------------------------- /app/assets/fonts/open-sans/OpenSans-LightItalic-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/assets/fonts/open-sans/OpenSans-LightItalic-webfont.ttf -------------------------------------------------------------------------------- /app/assets/fonts/open-sans/OpenSans-LightItalic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/assets/fonts/open-sans/OpenSans-LightItalic-webfont.woff -------------------------------------------------------------------------------- /app/assets/fonts/open-sans/OpenSans-Regular-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/assets/fonts/open-sans/OpenSans-Regular-webfont.eot -------------------------------------------------------------------------------- /app/assets/fonts/open-sans/OpenSans-Regular-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/assets/fonts/open-sans/OpenSans-Regular-webfont.svg -------------------------------------------------------------------------------- /app/assets/fonts/open-sans/OpenSans-Regular-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/assets/fonts/open-sans/OpenSans-Regular-webfont.ttf -------------------------------------------------------------------------------- /app/assets/fonts/open-sans/OpenSans-Regular-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/assets/fonts/open-sans/OpenSans-Regular-webfont.woff -------------------------------------------------------------------------------- /app/assets/fonts/open-sans/OpenSans-Semibold-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/assets/fonts/open-sans/OpenSans-Semibold-webfont.eot -------------------------------------------------------------------------------- /app/assets/fonts/open-sans/OpenSans-Semibold-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/assets/fonts/open-sans/OpenSans-Semibold-webfont.svg -------------------------------------------------------------------------------- /app/assets/fonts/open-sans/OpenSans-Semibold-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/assets/fonts/open-sans/OpenSans-Semibold-webfont.ttf -------------------------------------------------------------------------------- /app/assets/fonts/open-sans/OpenSans-Semibold-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/assets/fonts/open-sans/OpenSans-Semibold-webfont.woff -------------------------------------------------------------------------------- /app/assets/fonts/open-sans/OpenSans-SemiboldItalic-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/assets/fonts/open-sans/OpenSans-SemiboldItalic-webfont.eot -------------------------------------------------------------------------------- /app/assets/fonts/open-sans/OpenSans-SemiboldItalic-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/assets/fonts/open-sans/OpenSans-SemiboldItalic-webfont.svg -------------------------------------------------------------------------------- /app/assets/fonts/open-sans/OpenSans-SemiboldItalic-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/assets/fonts/open-sans/OpenSans-SemiboldItalic-webfont.ttf -------------------------------------------------------------------------------- /app/assets/fonts/open-sans/OpenSans-SemiboldItalic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/assets/fonts/open-sans/OpenSans-SemiboldItalic-webfont.woff -------------------------------------------------------------------------------- /app/assets/fonts/open-sans/stylesheet.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/assets/fonts/open-sans/stylesheet.scss -------------------------------------------------------------------------------- /app/assets/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/assets/images/favicon.ico -------------------------------------------------------------------------------- /app/assets/images/no-image-260.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/assets/images/no-image-260.gif -------------------------------------------------------------------------------- /app/assets/images/no-image.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/assets/images/no-image.gif -------------------------------------------------------------------------------- /app/assets/images/res_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/assets/images/res_logo.svg -------------------------------------------------------------------------------- /app/assets/images/res_logo_2015.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/assets/images/res_logo_2015.ai -------------------------------------------------------------------------------- /app/assets/javascripts/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/assets/javascripts/application.js -------------------------------------------------------------------------------- /app/assets/javascripts/cart_pause-resume.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/assets/javascripts/cart_pause-resume.js -------------------------------------------------------------------------------- /app/assets/javascripts/datepickers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/assets/javascripts/datepickers.js -------------------------------------------------------------------------------- /app/assets/javascripts/deactivation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/assets/javascripts/deactivation.js -------------------------------------------------------------------------------- /app/assets/javascripts/manage_reservation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/assets/javascripts/manage_reservation.js -------------------------------------------------------------------------------- /app/assets/javascripts/reservations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/assets/javascripts/reservations.js -------------------------------------------------------------------------------- /app/assets/javascripts/variables.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/assets/javascripts/variables.js.erb -------------------------------------------------------------------------------- /app/assets/stylesheets/_bootstrap_and_overrides.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/assets/stylesheets/_bootstrap_and_overrides.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/_bootstrap_overrides.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/assets/stylesheets/_bootstrap_overrides.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/_global.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/assets/stylesheets/_global.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/_jquery_overrides.scss.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/assets/stylesheets/_jquery_overrides.scss.erb -------------------------------------------------------------------------------- /app/assets/stylesheets/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/assets/stylesheets/_mixins.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/_select2_customizations.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/assets/stylesheets/_select2_customizations.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/assets/stylesheets/_variables.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/app_configs/_edit.scss: -------------------------------------------------------------------------------- 1 | #app_config_reset_tos_for_users { width: auto; } 2 | -------------------------------------------------------------------------------- /app/assets/stylesheets/application.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/assets/stylesheets/application.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/autocomplete.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/assets/stylesheets/autocomplete.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/blackouts/_new_recurring.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/assets/stylesheets/blackouts/_new_recurring.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/catalog/_index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/assets/stylesheets/catalog/_index.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/equipment_models/_show.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/assets/stylesheets/equipment_models/_show.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/equipment_models/_table.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/assets/stylesheets/equipment_models/_table.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/layouts/_application.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/assets/stylesheets/layouts/_application.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/layouts/_footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/assets/stylesheets/layouts/_footer.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/layouts/_navbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/assets/stylesheets/layouts/_navbar.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/print.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/assets/stylesheets/print.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/reservations/_cart_dates.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/assets/stylesheets/reservations/_cart_dates.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/reservations/_cart_sidebar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/assets/stylesheets/reservations/_cart_sidebar.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/reservations/_index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/assets/stylesheets/reservations/_index.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/reservations/_manage.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/assets/stylesheets/reservations/_manage.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/reservations/_new.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/assets/stylesheets/reservations/_new.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/reservations/_show.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/assets/stylesheets/reservations/_show.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/users/_import_success.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/assets/stylesheets/users/_import_success.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/users/_show.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/assets/stylesheets/users/_show.scss -------------------------------------------------------------------------------- /app/controllers/announcements_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/controllers/announcements_controller.rb -------------------------------------------------------------------------------- /app/controllers/app_configs_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/controllers/app_configs_controller.rb -------------------------------------------------------------------------------- /app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/blackouts_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/controllers/blackouts_controller.rb -------------------------------------------------------------------------------- /app/controllers/catalog_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/controllers/catalog_controller.rb -------------------------------------------------------------------------------- /app/controllers/categories_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/controllers/categories_controller.rb -------------------------------------------------------------------------------- /app/controllers/concerns/calendarable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/controllers/concerns/calendarable.rb -------------------------------------------------------------------------------- /app/controllers/contact_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/controllers/contact_controller.rb -------------------------------------------------------------------------------- /app/controllers/equipment_items_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/controllers/equipment_items_controller.rb -------------------------------------------------------------------------------- /app/controllers/equipment_models_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/controllers/equipment_models_controller.rb -------------------------------------------------------------------------------- /app/controllers/import_equipment_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/controllers/import_equipment_controller.rb -------------------------------------------------------------------------------- /app/controllers/import_users_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/controllers/import_users_controller.rb -------------------------------------------------------------------------------- /app/controllers/reports_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/controllers/reports_controller.rb -------------------------------------------------------------------------------- /app/controllers/requirements_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/controllers/requirements_controller.rb -------------------------------------------------------------------------------- /app/controllers/reservations_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/controllers/reservations_controller.rb -------------------------------------------------------------------------------- /app/controllers/status_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/controllers/status_controller.rb -------------------------------------------------------------------------------- /app/controllers/users_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/controllers/users_controller.rb -------------------------------------------------------------------------------- /app/decorators/application_decorator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/decorators/application_decorator.rb -------------------------------------------------------------------------------- /app/decorators/category_decorator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/decorators/category_decorator.rb -------------------------------------------------------------------------------- /app/decorators/equipment_item_decorator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/decorators/equipment_item_decorator.rb -------------------------------------------------------------------------------- /app/decorators/equipment_model_decorator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/decorators/equipment_model_decorator.rb -------------------------------------------------------------------------------- /app/helpers/announcements_helper.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | module AnnouncementsHelper 3 | end 4 | -------------------------------------------------------------------------------- /app/helpers/app_configs_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/helpers/app_configs_helper.rb -------------------------------------------------------------------------------- /app/helpers/application_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/helpers/application_helper.rb -------------------------------------------------------------------------------- /app/helpers/categories_helper.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | module CategoriesHelper 3 | end 4 | -------------------------------------------------------------------------------- /app/helpers/contact_helper.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | module ContactHelper 3 | end 4 | -------------------------------------------------------------------------------- /app/helpers/equipment_items_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/helpers/equipment_items_helper.rb -------------------------------------------------------------------------------- /app/helpers/equipment_models_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/helpers/equipment_models_helper.rb -------------------------------------------------------------------------------- /app/helpers/layout_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/helpers/layout_helper.rb -------------------------------------------------------------------------------- /app/helpers/reports_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/helpers/reports_helper.rb -------------------------------------------------------------------------------- /app/helpers/requirements_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/helpers/requirements_helper.rb -------------------------------------------------------------------------------- /app/helpers/reservations_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/helpers/reservations_helper.rb -------------------------------------------------------------------------------- /app/helpers/user_mailer_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/helpers/user_mailer_helper.rb -------------------------------------------------------------------------------- /app/helpers/users_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/helpers/users_helper.rb -------------------------------------------------------------------------------- /app/inputs/deleted_input.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/inputs/deleted_input.rb -------------------------------------------------------------------------------- /app/jobs/application_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/jobs/application_job.rb -------------------------------------------------------------------------------- /app/jobs/daily_tasks_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/jobs/daily_tasks_job.rb -------------------------------------------------------------------------------- /app/jobs/delete_missed_reservations_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/jobs/delete_missed_reservations_job.rb -------------------------------------------------------------------------------- /app/jobs/delete_old_blackouts_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/jobs/delete_old_blackouts_job.rb -------------------------------------------------------------------------------- /app/jobs/deny_missed_requests_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/jobs/deny_missed_requests_job.rb -------------------------------------------------------------------------------- /app/jobs/email_checkin_reminder_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/jobs/email_checkin_reminder_job.rb -------------------------------------------------------------------------------- /app/jobs/email_checkout_reminder_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/jobs/email_checkout_reminder_job.rb -------------------------------------------------------------------------------- /app/jobs/email_missed_reservations_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/jobs/email_missed_reservations_job.rb -------------------------------------------------------------------------------- /app/jobs/email_notes_to_admins_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/jobs/email_notes_to_admins_job.rb -------------------------------------------------------------------------------- /app/jobs/email_overdue_reminder_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/jobs/email_overdue_reminder_job.rb -------------------------------------------------------------------------------- /app/jobs/flag_missed_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/jobs/flag_missed_job.rb -------------------------------------------------------------------------------- /app/jobs/flag_overdue_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/jobs/flag_overdue_job.rb -------------------------------------------------------------------------------- /app/jobs/hourly_tasks_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/jobs/hourly_tasks_job.rb -------------------------------------------------------------------------------- /app/jobs/reservation_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/jobs/reservation_job.rb -------------------------------------------------------------------------------- /app/mailers/admin_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/mailers/admin_mailer.rb -------------------------------------------------------------------------------- /app/mailers/devise_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/mailers/devise_mailer.rb -------------------------------------------------------------------------------- /app/mailers/notifications_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/mailers/notifications_mailer.rb -------------------------------------------------------------------------------- /app/mailers/user_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/mailers/user_mailer.rb -------------------------------------------------------------------------------- /app/models/ability.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/models/ability.rb -------------------------------------------------------------------------------- /app/models/announcement.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/models/announcement.rb -------------------------------------------------------------------------------- /app/models/app_config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/models/app_config.rb -------------------------------------------------------------------------------- /app/models/application_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/models/application_record.rb -------------------------------------------------------------------------------- /app/models/blackout.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/models/blackout.rb -------------------------------------------------------------------------------- /app/models/cart.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/models/cart.rb -------------------------------------------------------------------------------- /app/models/cart_validations.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/models/cart_validations.rb -------------------------------------------------------------------------------- /app/models/category.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/models/category.rb -------------------------------------------------------------------------------- /app/models/checkin_procedure.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/models/checkin_procedure.rb -------------------------------------------------------------------------------- /app/models/checkout_procedure.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/models/checkout_procedure.rb -------------------------------------------------------------------------------- /app/models/concerns/linkable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/models/concerns/linkable.rb -------------------------------------------------------------------------------- /app/models/concerns/soft_deletable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/models/concerns/soft_deletable.rb -------------------------------------------------------------------------------- /app/models/equipment_item.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/models/equipment_item.rb -------------------------------------------------------------------------------- /app/models/equipment_model.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/models/equipment_model.rb -------------------------------------------------------------------------------- /app/models/message.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/models/message.rb -------------------------------------------------------------------------------- /app/models/report.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/models/report.rb -------------------------------------------------------------------------------- /app/models/requirement.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/models/requirement.rb -------------------------------------------------------------------------------- /app/models/reservation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/models/reservation.rb -------------------------------------------------------------------------------- /app/models/reservation_validations.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/models/reservation_validations.rb -------------------------------------------------------------------------------- /app/models/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/models/user.rb -------------------------------------------------------------------------------- /app/queries/query_base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/queries/query_base.rb -------------------------------------------------------------------------------- /app/queries/reservations/affected_by_blackout_query.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/queries/reservations/affected_by_blackout_query.rb -------------------------------------------------------------------------------- /app/queries/reservations/affected_by_recurring_blackout_query.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/queries/reservations/affected_by_recurring_blackout_query.rb -------------------------------------------------------------------------------- /app/queries/reservations/checkoutable_query.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/queries/reservations/checkoutable_query.rb -------------------------------------------------------------------------------- /app/queries/reservations/consecutive_with_query.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/queries/reservations/consecutive_with_query.rb -------------------------------------------------------------------------------- /app/queries/reservations/for_cat_query.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/queries/reservations/for_cat_query.rb -------------------------------------------------------------------------------- /app/queries/reservations/future_query.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/queries/reservations/future_query.rb -------------------------------------------------------------------------------- /app/queries/reservations/notes_unsent_query.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/queries/reservations/notes_unsent_query.rb -------------------------------------------------------------------------------- /app/queries/reservations/overlaps_with_date_range_query.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/queries/reservations/overlaps_with_date_range_query.rb -------------------------------------------------------------------------------- /app/queries/reservations/reservations_query_base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/queries/reservations/reservations_query_base.rb -------------------------------------------------------------------------------- /app/queries/reservations/starts_on_days_query.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/queries/reservations/starts_on_days_query.rb -------------------------------------------------------------------------------- /app/queries/reservations/upcoming_query.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/queries/reservations/upcoming_query.rb -------------------------------------------------------------------------------- /app/views/admin_mailer/_reservation_note.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/admin_mailer/_reservation_note.html.erb -------------------------------------------------------------------------------- /app/views/admin_mailer/notes_reservation_notification.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/admin_mailer/notes_reservation_notification.html.erb -------------------------------------------------------------------------------- /app/views/admin_mailer/overdue_checked_in_fine_admin.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/admin_mailer/overdue_checked_in_fine_admin.html.erb -------------------------------------------------------------------------------- /app/views/admin_mailer/request_filed.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/admin_mailer/request_filed.html.erb -------------------------------------------------------------------------------- /app/views/admin_mailer/reservation_created_admin.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/admin_mailer/reservation_created_admin.html.erb -------------------------------------------------------------------------------- /app/views/announcements/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/announcements/_form.html.erb -------------------------------------------------------------------------------- /app/views/announcements/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/announcements/edit.html.erb -------------------------------------------------------------------------------- /app/views/announcements/hide.js.erb: -------------------------------------------------------------------------------- 1 | $('#announcement_<%= j params[:id] %>').remove(); -------------------------------------------------------------------------------- /app/views/announcements/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/announcements/index.html.erb -------------------------------------------------------------------------------- /app/views/announcements/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/announcements/new.html.erb -------------------------------------------------------------------------------- /app/views/app_configs/_form.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/app_configs/_form.erb -------------------------------------------------------------------------------- /app/views/app_configs/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/app_configs/edit.html.erb -------------------------------------------------------------------------------- /app/views/application/_res_calendar.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/application/_res_calendar.html.erb -------------------------------------------------------------------------------- /app/views/application/calendar.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/application/calendar.html.erb -------------------------------------------------------------------------------- /app/views/application/calendar.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/application/calendar.json.jbuilder -------------------------------------------------------------------------------- /app/views/application_setup/index.html.erb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/views/blackouts/_blackout_array.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/blackouts/_blackout_array.html.erb -------------------------------------------------------------------------------- /app/views/blackouts/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/blackouts/_form.html.erb -------------------------------------------------------------------------------- /app/views/blackouts/_table.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/blackouts/_table.html.erb -------------------------------------------------------------------------------- /app/views/blackouts/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/blackouts/edit.html.erb -------------------------------------------------------------------------------- /app/views/blackouts/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/blackouts/index.html.erb -------------------------------------------------------------------------------- /app/views/blackouts/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/blackouts/new.html.erb -------------------------------------------------------------------------------- /app/views/blackouts/new_recurring.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/blackouts/new_recurring.html.erb -------------------------------------------------------------------------------- /app/views/blackouts/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/blackouts/show.html.erb -------------------------------------------------------------------------------- /app/views/cart_js/cart_dates_reload.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/cart_js/cart_dates_reload.js.erb -------------------------------------------------------------------------------- /app/views/cart_js/reload_all.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/cart_js/reload_all.js.erb -------------------------------------------------------------------------------- /app/views/cart_js/reservation_form.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/cart_js/reservation_form.js.erb -------------------------------------------------------------------------------- /app/views/cart_js/update_cart.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/cart_js/update_cart.js.erb -------------------------------------------------------------------------------- /app/views/catalog/_catalog_listing.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/catalog/_catalog_listing.html.erb -------------------------------------------------------------------------------- /app/views/catalog/_equipment_model_div.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/catalog/_equipment_model_div.html.erb -------------------------------------------------------------------------------- /app/views/catalog/_no_equipment.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/catalog/_no_equipment.html.erb -------------------------------------------------------------------------------- /app/views/catalog/cat_pagination.js.erb: -------------------------------------------------------------------------------- 1 | location.reload(true); 2 | -------------------------------------------------------------------------------- /app/views/catalog/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/catalog/index.html.erb -------------------------------------------------------------------------------- /app/views/catalog/search_results.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/catalog/search_results.html.erb -------------------------------------------------------------------------------- /app/views/categories/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/categories/_form.html.erb -------------------------------------------------------------------------------- /app/views/categories/_table.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/categories/_table.html.erb -------------------------------------------------------------------------------- /app/views/categories/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/categories/edit.html.erb -------------------------------------------------------------------------------- /app/views/categories/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/categories/index.html.erb -------------------------------------------------------------------------------- /app/views/categories/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/categories/new.html.erb -------------------------------------------------------------------------------- /app/views/categories/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/categories/show.html.erb -------------------------------------------------------------------------------- /app/views/contact/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/contact/new.html.erb -------------------------------------------------------------------------------- /app/views/devise/mailer/reset_password_instructions.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/devise/mailer/reset_password_instructions.html.erb -------------------------------------------------------------------------------- /app/views/devise/passwords/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/devise/passwords/edit.html.erb -------------------------------------------------------------------------------- /app/views/devise/passwords/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/devise/passwords/new.html.erb -------------------------------------------------------------------------------- /app/views/devise/sessions/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/devise/sessions/new.html.erb -------------------------------------------------------------------------------- /app/views/equipment_items/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/equipment_items/_form.html.erb -------------------------------------------------------------------------------- /app/views/equipment_items/_table.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/equipment_items/_table.html.erb -------------------------------------------------------------------------------- /app/views/equipment_items/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/equipment_items/edit.html.erb -------------------------------------------------------------------------------- /app/views/equipment_items/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/equipment_items/index.html.erb -------------------------------------------------------------------------------- /app/views/equipment_items/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/equipment_items/new.html.erb -------------------------------------------------------------------------------- /app/views/equipment_items/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/equipment_items/show.html.erb -------------------------------------------------------------------------------- /app/views/equipment_models/_add_to_cart.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/equipment_models/_add_to_cart.html.erb -------------------------------------------------------------------------------- /app/views/equipment_models/_calendar.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/equipment_models/_calendar.html.erb -------------------------------------------------------------------------------- /app/views/equipment_models/_checkin_procedure_fields.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/equipment_models/_checkin_procedure_fields.html.erb -------------------------------------------------------------------------------- /app/views/equipment_models/_checkout_procedure_fields.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/equipment_models/_checkout_procedure_fields.html.erb -------------------------------------------------------------------------------- /app/views/equipment_models/_equipment_items_table.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/equipment_models/_equipment_items_table.html.erb -------------------------------------------------------------------------------- /app/views/equipment_models/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/equipment_models/_form.html.erb -------------------------------------------------------------------------------- /app/views/equipment_models/_pending_reservations_table.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/equipment_models/_pending_reservations_table.erb -------------------------------------------------------------------------------- /app/views/equipment_models/_table.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/equipment_models/_table.html.erb -------------------------------------------------------------------------------- /app/views/equipment_models/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/equipment_models/edit.html.erb -------------------------------------------------------------------------------- /app/views/equipment_models/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/equipment_models/index.html.erb -------------------------------------------------------------------------------- /app/views/equipment_models/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/equipment_models/new.html.erb -------------------------------------------------------------------------------- /app/views/equipment_models/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/equipment_models/show.html.erb -------------------------------------------------------------------------------- /app/views/import_equipment/_import_cat_table.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/import_equipment/_import_cat_table.html.erb -------------------------------------------------------------------------------- /app/views/import_equipment/_import_item_table.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/import_equipment/_import_item_table.html.erb -------------------------------------------------------------------------------- /app/views/import_equipment/_import_model_table.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/import_equipment/_import_model_table.html.erb -------------------------------------------------------------------------------- /app/views/import_equipment/import.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/import_equipment/import.html.erb -------------------------------------------------------------------------------- /app/views/import_equipment/imported.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/import_equipment/imported.html.erb -------------------------------------------------------------------------------- /app/views/import_users/_import_table.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/import_users/_import_table.html.erb -------------------------------------------------------------------------------- /app/views/import_users/import.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/import_users/import.html.erb -------------------------------------------------------------------------------- /app/views/import_users/imported.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/import_users/imported.html.erb -------------------------------------------------------------------------------- /app/views/kaminari/_first_page.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/kaminari/_first_page.html.erb -------------------------------------------------------------------------------- /app/views/kaminari/_gap.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/kaminari/_gap.html.erb -------------------------------------------------------------------------------- /app/views/kaminari/_last_page.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/kaminari/_last_page.html.erb -------------------------------------------------------------------------------- /app/views/kaminari/_next_page.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/kaminari/_next_page.html.erb -------------------------------------------------------------------------------- /app/views/kaminari/_page.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/kaminari/_page.html.erb -------------------------------------------------------------------------------- /app/views/kaminari/_paginator.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/kaminari/_paginator.html.erb -------------------------------------------------------------------------------- /app/views/kaminari/_prev_page.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/kaminari/_prev_page.html.erb -------------------------------------------------------------------------------- /app/views/layouts/_announcements.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/layouts/_announcements.html.erb -------------------------------------------------------------------------------- /app/views/layouts/_content.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/layouts/_content.html.erb -------------------------------------------------------------------------------- /app/views/layouts/_content_with_sidebar.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/layouts/_content_with_sidebar.html.erb -------------------------------------------------------------------------------- /app/views/layouts/_flash_alerts.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/layouts/_flash_alerts.html.erb -------------------------------------------------------------------------------- /app/views/layouts/_footer.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/layouts/_footer.html.erb -------------------------------------------------------------------------------- /app/views/layouts/_head.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/layouts/_head.html.erb -------------------------------------------------------------------------------- /app/views/layouts/_navbar.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/layouts/_navbar.html.erb -------------------------------------------------------------------------------- /app/views/layouts/_sidebar.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/layouts/_sidebar.html.erb -------------------------------------------------------------------------------- /app/views/layouts/_sidebar_with_search.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/layouts/_sidebar_with_search.html.erb -------------------------------------------------------------------------------- /app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /app/views/layouts/application_with_search_sidebar.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/layouts/application_with_search_sidebar.html.erb -------------------------------------------------------------------------------- /app/views/layouts/application_with_sidebar.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/layouts/application_with_sidebar.html.erb -------------------------------------------------------------------------------- /app/views/notifications_mailer/new_message.text.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/notifications_mailer/new_message.text.erb -------------------------------------------------------------------------------- /app/views/rails_admin/main/force_delete.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/rails_admin/main/force_delete.html.haml -------------------------------------------------------------------------------- /app/views/reports/_data_tables.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/reports/_data_tables.html.erb -------------------------------------------------------------------------------- /app/views/reports/_report_dates.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/reports/_report_dates.html.erb -------------------------------------------------------------------------------- /app/views/reports/_report_row.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/reports/_report_row.html.erb -------------------------------------------------------------------------------- /app/views/reports/_res_stat_set.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/reports/_res_stat_set.html.erb -------------------------------------------------------------------------------- /app/views/reports/index.csv.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/reports/index.csv.erb -------------------------------------------------------------------------------- /app/views/reports/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/reports/index.html.erb -------------------------------------------------------------------------------- /app/views/reports/subreport.csv.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/reports/subreport.csv.erb -------------------------------------------------------------------------------- /app/views/reports/subreport.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/reports/subreport.html.erb -------------------------------------------------------------------------------- /app/views/requirements/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/requirements/_form.html.erb -------------------------------------------------------------------------------- /app/views/requirements/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/requirements/edit.html.erb -------------------------------------------------------------------------------- /app/views/requirements/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/requirements/index.html.erb -------------------------------------------------------------------------------- /app/views/requirements/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/requirements/new.html.erb -------------------------------------------------------------------------------- /app/views/requirements/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/requirements/show.html.erb -------------------------------------------------------------------------------- /app/views/reservations/_cart_dates.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/reservations/_cart_dates.html.erb -------------------------------------------------------------------------------- /app/views/reservations/_cart_sidebar.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/reservations/_cart_sidebar.html.erb -------------------------------------------------------------------------------- /app/views/reservations/_check_in_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/reservations/_check_in_form.html.erb -------------------------------------------------------------------------------- /app/views/reservations/_check_out_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/reservations/_check_out_form.html.erb -------------------------------------------------------------------------------- /app/views/reservations/_date_filter.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/reservations/_date_filter.html.erb -------------------------------------------------------------------------------- /app/views/reservations/_due_date_box.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/reservations/_due_date_box.html.erb -------------------------------------------------------------------------------- /app/views/reservations/_edit_reservation_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/reservations/_edit_reservation_form.html.erb -------------------------------------------------------------------------------- /app/views/reservations/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/reservations/_form.html.erb -------------------------------------------------------------------------------- /app/views/reservations/_index_nav.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/reservations/_index_nav.html.erb -------------------------------------------------------------------------------- /app/views/reservations/_index_nav_tab.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/reservations/_index_nav_tab.html.erb -------------------------------------------------------------------------------- /app/views/reservations/_list_items_in_cart.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/reservations/_list_items_in_cart.html.erb -------------------------------------------------------------------------------- /app/views/reservations/_new_request.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/reservations/_new_request.html.erb -------------------------------------------------------------------------------- /app/views/reservations/_new_reservation.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/reservations/_new_reservation.html.erb -------------------------------------------------------------------------------- /app/views/reservations/_reservation_details.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/reservations/_reservation_details.html.erb -------------------------------------------------------------------------------- /app/views/reservations/_reservations_list.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/reservations/_reservations_list.html.erb -------------------------------------------------------------------------------- /app/views/reservations/_top_buttons.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/reservations/_top_buttons.html.erb -------------------------------------------------------------------------------- /app/views/reservations/_user_reservations_list.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/reservations/_user_reservations_list.html.erb -------------------------------------------------------------------------------- /app/views/reservations/current_reservations.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/reservations/current_reservations.html.erb -------------------------------------------------------------------------------- /app/views/reservations/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/reservations/edit.html.erb -------------------------------------------------------------------------------- /app/views/reservations/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/reservations/index.html.erb -------------------------------------------------------------------------------- /app/views/reservations/manage.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/reservations/manage.html.erb -------------------------------------------------------------------------------- /app/views/reservations/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/reservations/new.html.erb -------------------------------------------------------------------------------- /app/views/reservations/receipt.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/reservations/receipt.html.erb -------------------------------------------------------------------------------- /app/views/reservations/review.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/reservations/review.html.erb -------------------------------------------------------------------------------- /app/views/reservations/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/reservations/show.html.erb -------------------------------------------------------------------------------- /app/views/shared/_markdown_button.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/shared/_markdown_button.html.erb -------------------------------------------------------------------------------- /app/views/shared/_markdown_help.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/shared/_markdown_help.html.erb -------------------------------------------------------------------------------- /app/views/shared/markdown_help_js.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/shared/markdown_help_js.js.erb -------------------------------------------------------------------------------- /app/views/terms_of_service/_user_accepted.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/terms_of_service/_user_accepted.html.erb -------------------------------------------------------------------------------- /app/views/terms_of_service/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/terms_of_service/index.html.erb -------------------------------------------------------------------------------- /app/views/user_mailer/_checked_out.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/user_mailer/_checked_out.html.erb -------------------------------------------------------------------------------- /app/views/user_mailer/_denied.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/user_mailer/_denied.html.erb -------------------------------------------------------------------------------- /app/views/user_mailer/_due_today.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/user_mailer/_due_today.html.erb -------------------------------------------------------------------------------- /app/views/user_mailer/_missed.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/user_mailer/_missed.html.erb -------------------------------------------------------------------------------- /app/views/user_mailer/_overdue.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/user_mailer/_overdue.html.erb -------------------------------------------------------------------------------- /app/views/user_mailer/_request_approved.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/user_mailer/_request_approved.html.erb -------------------------------------------------------------------------------- /app/views/user_mailer/_request_expired.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/user_mailer/_request_expired.html.erb -------------------------------------------------------------------------------- /app/views/user_mailer/_requested.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/user_mailer/_requested.html.erb -------------------------------------------------------------------------------- /app/views/user_mailer/_returned.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/user_mailer/_returned.html.erb -------------------------------------------------------------------------------- /app/views/user_mailer/_returned_overdue.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/user_mailer/_returned_overdue.html.erb -------------------------------------------------------------------------------- /app/views/user_mailer/_starts_today.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/user_mailer/_starts_today.html.erb -------------------------------------------------------------------------------- /app/views/user_mailer/reservation_status_update.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/user_mailer/reservation_status_update.html.erb -------------------------------------------------------------------------------- /app/views/users/_current_equipment.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/users/_current_equipment.html.erb -------------------------------------------------------------------------------- /app/views/users/_find_user.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/users/_find_user.html.erb -------------------------------------------------------------------------------- /app/views/users/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/users/_form.html.erb -------------------------------------------------------------------------------- /app/views/users/_history_table.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/users/_history_table.html.erb -------------------------------------------------------------------------------- /app/views/users/_quick_new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/users/_quick_new.html.erb -------------------------------------------------------------------------------- /app/views/users/_short_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/users/_short_form.html.erb -------------------------------------------------------------------------------- /app/views/users/_table.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/users/_table.html.erb -------------------------------------------------------------------------------- /app/views/users/calendar.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/users/calendar.html.erb -------------------------------------------------------------------------------- /app/views/users/create_success.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/users/create_success.js.erb -------------------------------------------------------------------------------- /app/views/users/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/users/edit.html.erb -------------------------------------------------------------------------------- /app/views/users/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/users/index.html.erb -------------------------------------------------------------------------------- /app/views/users/load_form_errors.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/users/load_form_errors.js.erb -------------------------------------------------------------------------------- /app/views/users/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/users/new.html.erb -------------------------------------------------------------------------------- /app/views/users/quick_new.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/users/quick_new.js.erb -------------------------------------------------------------------------------- /app/views/users/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/app/views/users/show.html.erb -------------------------------------------------------------------------------- /bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/bin/bundle -------------------------------------------------------------------------------- /bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/bin/rails -------------------------------------------------------------------------------- /bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/bin/rake -------------------------------------------------------------------------------- /bin/rspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/bin/rspec -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/bin/setup -------------------------------------------------------------------------------- /bin/spring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/bin/spring -------------------------------------------------------------------------------- /bin/update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/bin/update -------------------------------------------------------------------------------- /bin/yarn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/bin/yarn -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/config.ru -------------------------------------------------------------------------------- /config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/config/application.rb -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/config/boot.rb -------------------------------------------------------------------------------- /config/cable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/config/cable.yml -------------------------------------------------------------------------------- /config/database.development.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/config/database.development.yml -------------------------------------------------------------------------------- /config/database.gitlab.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/config/database.gitlab.yml -------------------------------------------------------------------------------- /config/database.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/config/database.travis.yml -------------------------------------------------------------------------------- /config/database.yml.example.fedora: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/config/database.yml.example.fedora -------------------------------------------------------------------------------- /config/database.yml.example.osx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/config/database.yml.example.osx -------------------------------------------------------------------------------- /config/database.yml.example.osx.pg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/config/database.yml.example.osx.pg -------------------------------------------------------------------------------- /config/database.yml.example.production: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/config/database.yml.example.production -------------------------------------------------------------------------------- /config/database.yml.example.ubuntu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/config/database.yml.example.ubuntu -------------------------------------------------------------------------------- /config/deploy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/config/deploy.rb -------------------------------------------------------------------------------- /config/deploy/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/config/deploy/production.rb -------------------------------------------------------------------------------- /config/deploy/staging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/config/deploy/staging.rb -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/config/environment.rb -------------------------------------------------------------------------------- /config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/config/environments/development.rb -------------------------------------------------------------------------------- /config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/config/environments/production.rb -------------------------------------------------------------------------------- /config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/config/environments/test.rb -------------------------------------------------------------------------------- /config/initializers/00_devise.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/config/initializers/00_devise.rb -------------------------------------------------------------------------------- /config/initializers/assets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/config/initializers/assets.rb -------------------------------------------------------------------------------- /config/initializers/authentication.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/config/initializers/authentication.rb -------------------------------------------------------------------------------- /config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /config/initializers/content_security_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/config/initializers/content_security_policy.rb -------------------------------------------------------------------------------- /config/initializers/cookies_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/config/initializers/cookies_serializer.rb -------------------------------------------------------------------------------- /config/initializers/days_of_the_week.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/config/initializers/days_of_the_week.rb -------------------------------------------------------------------------------- /config/initializers/factory_girl.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/config/initializers/factory_girl.rb -------------------------------------------------------------------------------- /config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/config/initializers/filter_parameter_logging.rb -------------------------------------------------------------------------------- /config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/config/initializers/inflections.rb -------------------------------------------------------------------------------- /config/initializers/kaminari_config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/config/initializers/kaminari_config.rb -------------------------------------------------------------------------------- /config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /config/initializers/new_rails_defaults.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/config/initializers/new_rails_defaults.rb -------------------------------------------------------------------------------- /config/initializers/party_foul.rb.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/config/initializers/party_foul.rb.example -------------------------------------------------------------------------------- /config/initializers/rails_admin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/config/initializers/rails_admin.rb -------------------------------------------------------------------------------- /config/initializers/secret_token.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/config/initializers/secret_token.rb -------------------------------------------------------------------------------- /config/initializers/session_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/config/initializers/session_store.rb -------------------------------------------------------------------------------- /config/initializers/setup_mail.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/config/initializers/setup_mail.rb -------------------------------------------------------------------------------- /config/initializers/simple_form.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/config/initializers/simple_form.rb -------------------------------------------------------------------------------- /config/initializers/simple_form_bootstrap.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/config/initializers/simple_form_bootstrap.rb -------------------------------------------------------------------------------- /config/initializers/timeout.rb.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/config/initializers/timeout.rb.example -------------------------------------------------------------------------------- /config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /config/locales/devise.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/config/locales/devise.en.yml -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/config/locales/en.yml -------------------------------------------------------------------------------- /config/locales/simple_form.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/config/locales/simple_form.en.yml -------------------------------------------------------------------------------- /config/puma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/config/puma.rb -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/config/routes.rb -------------------------------------------------------------------------------- /config/schedule.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/config/schedule.rb -------------------------------------------------------------------------------- /config/secrets.yml.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/config/secrets.yml.example -------------------------------------------------------------------------------- /config/spring.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/config/spring.rb -------------------------------------------------------------------------------- /config/storage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/config/storage.yml -------------------------------------------------------------------------------- /config/unicorn.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/config/unicorn.rb -------------------------------------------------------------------------------- /db/default_messages/deleted_missed_email: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/default_messages/deleted_missed_email -------------------------------------------------------------------------------- /db/default_messages/overdue_email: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/default_messages/overdue_email -------------------------------------------------------------------------------- /db/default_messages/tos_text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/default_messages/tos_text -------------------------------------------------------------------------------- /db/default_messages/upcoming_checkin_email: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/default_messages/upcoming_checkin_email -------------------------------------------------------------------------------- /db/default_messages/upcoming_checkout_email: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/default_messages/upcoming_checkout_email -------------------------------------------------------------------------------- /db/migrate/20090930234012_create_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/migrate/20090930234012_create_users.rb -------------------------------------------------------------------------------- /db/migrate/20091001181809_create_categories.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/migrate/20091001181809_create_categories.rb -------------------------------------------------------------------------------- /db/migrate/20091001205833_create_equipment_models.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/migrate/20091001205833_create_equipment_models.rb -------------------------------------------------------------------------------- /db/migrate/20091001215110_create_equipment_objects.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/migrate/20091001215110_create_equipment_objects.rb -------------------------------------------------------------------------------- /db/migrate/20091001234857_create_documents.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/migrate/20091001234857_create_documents.rb -------------------------------------------------------------------------------- /db/migrate/20091002165901_create_reservations.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/migrate/20091002165901_create_reservations.rb -------------------------------------------------------------------------------- /db/migrate/20091002184322_create_sessions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/migrate/20091002184322_create_sessions.rb -------------------------------------------------------------------------------- /db/migrate/20091006222033_create_accessories_equipment_models.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/migrate/20091006222033_create_accessories_equipment_models.rb -------------------------------------------------------------------------------- /db/migrate/20091023172207_add_checkin_and_checkout_procedures_to_equipment_model.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/migrate/20091023172207_add_checkin_and_checkout_procedures_to_equipment_model.rb -------------------------------------------------------------------------------- /db/migrate/20110401155438_change_checkin_checkout_procedures_to_text.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/migrate/20110401155438_change_checkin_checkout_procedures_to_text.rb -------------------------------------------------------------------------------- /db/migrate/20111206171041_add_sort_to_categories.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/migrate/20111206171041_add_sort_to_categories.rb -------------------------------------------------------------------------------- /db/migrate/20120528174217_add_equipment_references_to_reservations.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/migrate/20120528174217_add_equipment_references_to_reservations.rb -------------------------------------------------------------------------------- /db/migrate/20120528214306_create_settings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/migrate/20120528214306_create_settings.rb -------------------------------------------------------------------------------- /db/migrate/20120604201512_add_view_as_attribute.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/migrate/20120604201512_add_view_as_attribute.rb -------------------------------------------------------------------------------- /db/migrate/20120605165432_add_deleted_date_to_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/migrate/20120605165432_add_deleted_date_to_users.rb -------------------------------------------------------------------------------- /db/migrate/20120607175319_add_notes_to_reservation_table.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/migrate/20120607175319_add_notes_to_reservation_table.rb -------------------------------------------------------------------------------- /db/migrate/20120612164714_equipment_models_associated_equipment_models.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/migrate/20120612164714_equipment_models_associated_equipment_models.rb -------------------------------------------------------------------------------- /db/migrate/20120612170727_create_requirements.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/migrate/20120612170727_create_requirements.rb -------------------------------------------------------------------------------- /db/migrate/20120613150237_create_checkin_procedures.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/migrate/20120613150237_create_checkin_procedures.rb -------------------------------------------------------------------------------- /db/migrate/20120613150246_create_checkout_procedures.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/migrate/20120613150246_create_checkout_procedures.rb -------------------------------------------------------------------------------- /db/migrate/20120613153342_add_notes_sent_status_to_reservation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/migrate/20120613153342_add_notes_sent_status_to_reservation.rb -------------------------------------------------------------------------------- /db/migrate/20120614183257_add_attachment_photo_to_equipment_models.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/migrate/20120614183257_add_attachment_photo_to_equipment_models.rb -------------------------------------------------------------------------------- /db/migrate/20120614202421_add_attachment_documentation_to_equipment_models.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/migrate/20120614202421_add_attachment_documentation_to_equipment_models.rb -------------------------------------------------------------------------------- /db/migrate/20120619213311_clean_up_check_in_out_procedures.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/migrate/20120619213311_clean_up_check_in_out_procedures.rb -------------------------------------------------------------------------------- /db/migrate/20120621140258_add_times_renewed_to_reservations.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/migrate/20120621140258_add_times_renewed_to_reservations.rb -------------------------------------------------------------------------------- /db/migrate/20120621161037_add_renewal_prefs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/migrate/20120621161037_add_renewal_prefs.rb -------------------------------------------------------------------------------- /db/migrate/20120621174747_add_renewal_prefs_categories.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/migrate/20120621174747_add_renewal_prefs_categories.rb -------------------------------------------------------------------------------- /db/migrate/20120626155902_add_app_config_table.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/migrate/20120626155902_add_app_config_table.rb -------------------------------------------------------------------------------- /db/migrate/20120627124555_create_black_outs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/migrate/20120627124555_create_black_outs.rb -------------------------------------------------------------------------------- /db/migrate/20120627185735_add_settings_to_app_config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/migrate/20120627185735_add_settings_to_app_config.rb -------------------------------------------------------------------------------- /db/migrate/20120629190015_drop_documents_table.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/migrate/20120629190015_drop_documents_table.rb -------------------------------------------------------------------------------- /db/migrate/20120705204903_drop_settings_table.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/migrate/20120705204903_drop_settings_table.rb -------------------------------------------------------------------------------- /db/migrate/20120705210315_add_email_active_for_app_configs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/migrate/20120705210315_add_email_active_for_app_configs.rb -------------------------------------------------------------------------------- /db/migrate/20120710135541_create_users_requirements.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/migrate/20120710135541_create_users_requirements.rb -------------------------------------------------------------------------------- /db/migrate/20120711204254_add_terms_of_service_to_app_configs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/migrate/20120711204254_add_terms_of_service_to_app_configs.rb -------------------------------------------------------------------------------- /db/migrate/20120711225430_add_tos_accepted_to_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/migrate/20120711225430_add_tos_accepted_to_user.rb -------------------------------------------------------------------------------- /db/migrate/20120712202128_add_contact_link_email_to_app_configs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/migrate/20120712202128_add_contact_link_email_to_app_configs.rb -------------------------------------------------------------------------------- /db/migrate/20120717140824_add_set_id_to_blackouts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/migrate/20120717140824_add_set_id_to_blackouts.rb -------------------------------------------------------------------------------- /db/migrate/20120717204910_drop_accessories_table.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/migrate/20120717204910_drop_accessories_table.rb -------------------------------------------------------------------------------- /db/migrate/20120717205310_create_cart_reservation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/migrate/20120717205310_create_cart_reservation.rb -------------------------------------------------------------------------------- /db/migrate/20120718004311_add_favicon_to_app_configs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/migrate/20120718004311_add_favicon_to_app_configs.rb -------------------------------------------------------------------------------- /db/migrate/20120724144133_add_multiple_models_to_each_requirement.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/migrate/20120724144133_add_multiple_models_to_each_requirement.rb -------------------------------------------------------------------------------- /db/migrate/20120724184424_add_description_to_requirements.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/migrate/20120724184424_add_description_to_requirements.rb -------------------------------------------------------------------------------- /db/migrate/20130310095143_add_delete_missed_reservations_to_app_configs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/migrate/20130310095143_add_delete_missed_reservations_to_app_configs.rb -------------------------------------------------------------------------------- /db/migrate/20130310095507_add_missed_reservation_deleted_email_body_to_app_configs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/migrate/20130310095507_add_missed_reservation_deleted_email_body_to_app_configs.rb -------------------------------------------------------------------------------- /db/migrate/20130310101907_add_send_notifications_for_deleted_missed_reservations_to_app_configs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/migrate/20130310101907_add_send_notifications_for_deleted_missed_reservations_to_app_configs.rb -------------------------------------------------------------------------------- /db/migrate/20130310101908_remove_overdue_checkout_attriutes_from_app_configs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/migrate/20130310101908_remove_overdue_checkout_attriutes_from_app_configs.rb -------------------------------------------------------------------------------- /db/migrate/20130310101909_add_checkout_persons_can_edit_to_app_configs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/migrate/20130310101909_add_checkout_persons_can_edit_to_app_configs.rb -------------------------------------------------------------------------------- /db/migrate/20130327193420_change_deleted_at_to_date_time.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/migrate/20130327193420_change_deleted_at_to_date_time.rb -------------------------------------------------------------------------------- /db/migrate/20130617030854_create_announcements.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/migrate/20130617030854_create_announcements.rb -------------------------------------------------------------------------------- /db/migrate/20130627211001_rename_blackout_attributes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/migrate/20130627211001_rename_blackout_attributes.rb -------------------------------------------------------------------------------- /db/migrate/20130628000001_add_new_columns.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/migrate/20130628000001_add_new_columns.rb -------------------------------------------------------------------------------- /db/migrate/20130628152148_combine_type_columns_in_users_table.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/migrate/20130628152148_combine_type_columns_in_users_table.rb -------------------------------------------------------------------------------- /db/migrate/20130628154151_remove_view_as_attributes_from_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/migrate/20130628154151_remove_view_as_attributes_from_user.rb -------------------------------------------------------------------------------- /db/migrate/20130708215903_add_viewed_to_app_configs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/migrate/20130708215903_add_viewed_to_app_configs.rb -------------------------------------------------------------------------------- /db/migrate/20130717084037_add_checkout_person_can_override_to_app_configs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/migrate/20130717084037_add_checkout_person_can_override_to_app_configs.rb -------------------------------------------------------------------------------- /db/migrate/20130815225046_add_deleted_at_to_checkin_and_checkout_procedures.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/migrate/20130815225046_add_deleted_at_to_checkin_and_checkout_procedures.rb -------------------------------------------------------------------------------- /db/migrate/20140306014551_add_default_value_to_users_nickname.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/migrate/20140306014551_add_default_value_to_users_nickname.rb -------------------------------------------------------------------------------- /db/migrate/20140403011914_add_csv_import_to_equipment_stuff.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/migrate/20140403011914_add_csv_import_to_equipment_stuff.rb -------------------------------------------------------------------------------- /db/migrate/20140605230158_create_versions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/migrate/20140605230158_create_versions.rb -------------------------------------------------------------------------------- /db/migrate/20140610134345_add_approval_status_column_to_reservations.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/migrate/20140610134345_add_approval_status_column_to_reservations.rb -------------------------------------------------------------------------------- /db/migrate/20140611142208_create_admin_notes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/migrate/20140611142208_create_admin_notes.rb -------------------------------------------------------------------------------- /db/migrate/20140611142209_move_admin_notes_to_comments.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/migrate/20140611142209_move_admin_notes_to_comments.rb -------------------------------------------------------------------------------- /db/migrate/20140617164155_set_user_viewmode_to_role.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/migrate/20140617164155_set_user_viewmode_to_role.rb -------------------------------------------------------------------------------- /db/migrate/20140618173229_add_deactivation_reason_to_equipment_objects.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/migrate/20140618173229_add_deactivation_reason_to_equipment_objects.rb -------------------------------------------------------------------------------- /db/migrate/20140702014415_remove_cart_reservations.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/migrate/20140702014415_remove_cart_reservations.rb -------------------------------------------------------------------------------- /db/migrate/20140710205359_remove_equipment_model_id_from_blackouts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/migrate/20140710205359_remove_equipment_model_id_from_blackouts.rb -------------------------------------------------------------------------------- /db/migrate/20140714135920_add_blackout_expire_time_to_app_configs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/migrate/20140714135920_add_blackout_expire_time_to_app_configs.rb -------------------------------------------------------------------------------- /db/migrate/20140715164121_remove_deleted_at_from_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/migrate/20140715164121_remove_deleted_at_from_users.rb -------------------------------------------------------------------------------- /db/migrate/20140718170250_add_user_login_index_to_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/migrate/20140718170250_add_user_login_index_to_users.rb -------------------------------------------------------------------------------- /db/migrate/20140718195128_add_max_checkout_length_to_equipment_models.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/migrate/20140718195128_add_max_checkout_length_to_equipment_models.rb -------------------------------------------------------------------------------- /db/migrate/20140724194636_drop_active_admin_comments.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/migrate/20140724194636_drop_active_admin_comments.rb -------------------------------------------------------------------------------- /db/migrate/20140727232238_add_request_text_to_app_configs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/migrate/20140727232238_add_request_text_to_app_configs.rb -------------------------------------------------------------------------------- /db/migrate/20140826040900_add_enable_renewals_to_app_config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/migrate/20140826040900_add_enable_renewals_to_app_config.rb -------------------------------------------------------------------------------- /db/migrate/20140904235608_default_notes_unsent_to_false.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/migrate/20140904235608_default_notes_unsent_to_false.rb -------------------------------------------------------------------------------- /db/migrate/20140909230819_set_sane_config_defaults.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/migrate/20140909230819_set_sane_config_defaults.rb -------------------------------------------------------------------------------- /db/migrate/20140916025809_set_default_view_mode_to_normal.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/migrate/20140916025809_set_default_view_mode_to_normal.rb -------------------------------------------------------------------------------- /db/migrate/20140930233633_add_missing_phone_to_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/migrate/20140930233633_add_missing_phone_to_users.rb -------------------------------------------------------------------------------- /db/migrate/20141001000934_add_notes_to_equipment_objects.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/migrate/20141001000934_add_notes_to_equipment_objects.rb -------------------------------------------------------------------------------- /db/migrate/20141012145135_rename_login_to_username_for_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/migrate/20141012145135_rename_login_to_username_for_users.rb -------------------------------------------------------------------------------- /db/migrate/20141014041026_add_encrypted_password_to_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/migrate/20141014041026_add_encrypted_password_to_users.rb -------------------------------------------------------------------------------- /db/migrate/20141026050048_add_recoverable_to_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/migrate/20141026050048_add_recoverable_to_user.rb -------------------------------------------------------------------------------- /db/migrate/20141125025619_add_enable_new_users_to_app_configs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/migrate/20141125025619_add_enable_new_users_to_app_configs.rb -------------------------------------------------------------------------------- /db/migrate/20141126050547_add_res_exp_time_to_app_configs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/migrate/20141126050547_add_res_exp_time_to_app_configs.rb -------------------------------------------------------------------------------- /db/migrate/20141126061515_remove_delete_missed_reservations_from_app_configs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/migrate/20141126061515_remove_delete_missed_reservations_from_app_configs.rb -------------------------------------------------------------------------------- /db/migrate/20141219172429_add_enable_guests_to_app_configs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/migrate/20141219172429_add_enable_guests_to_app_configs.rb -------------------------------------------------------------------------------- /db/migrate/20150206002111_add_upcoming_checkout_email_active_to_app_config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/migrate/20150206002111_add_upcoming_checkout_email_active_to_app_config.rb -------------------------------------------------------------------------------- /db/migrate/20150206003233_add_upcoming_checkout_email_body_to_app_config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/migrate/20150206003233_add_upcoming_checkout_email_body_to_app_config.rb -------------------------------------------------------------------------------- /db/migrate/20150213001312_change_fields_to_dates.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/migrate/20150213001312_change_fields_to_dates.rb -------------------------------------------------------------------------------- /db/migrate/20150223001537_add_default_to_upcoming_checkout_email.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/migrate/20150223001537_add_default_to_upcoming_checkout_email.rb -------------------------------------------------------------------------------- /db/migrate/20150227032011_add_equipment_objects_count_to_equipment_models.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/migrate/20150227032011_add_equipment_objects_count_to_equipment_models.rb -------------------------------------------------------------------------------- /db/migrate/20150304042433_rename_equipment_objects.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/migrate/20150304042433_rename_equipment_objects.rb -------------------------------------------------------------------------------- /db/migrate/20150322234652_add_status_to_reservation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/migrate/20150322234652_add_status_to_reservation.rb -------------------------------------------------------------------------------- /db/migrate/20150323000707_add_overdue_to_reservation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/migrate/20150323000707_add_overdue_to_reservation.rb -------------------------------------------------------------------------------- /db/migrate/20150323003850_add_flags_to_reservation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/migrate/20150323003850_add_flags_to_reservation.rb -------------------------------------------------------------------------------- /db/migrate/20150323013431_add_cas_login_to_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/migrate/20150323013431_add_cas_login_to_users.rb -------------------------------------------------------------------------------- /db/migrate/20150327012721_add_rememberable_to_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/migrate/20150327012721_add_rememberable_to_users.rb -------------------------------------------------------------------------------- /db/migrate/20150405012126_remove_approval_status_from_reservation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/migrate/20150405012126_remove_approval_status_from_reservation.rb -------------------------------------------------------------------------------- /db/migrate/20150719040438_add_notify_admin_on_create_to_app_config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/migrate/20150719040438_add_notify_admin_on_create_to_app_config.rb -------------------------------------------------------------------------------- /db/migrate/20150719050013_add_disable_user_emails_to_app_configs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/migrate/20150719050013_add_disable_user_emails_to_app_configs.rb -------------------------------------------------------------------------------- /db/migrate/20150719052612_add_late_fee_max_to_equipment_models.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/migrate/20150719052612_add_late_fee_max_to_equipment_models.rb -------------------------------------------------------------------------------- /db/migrate/20160304025530_add_overdue_count_to_equipment_models.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/migrate/20160304025530_add_overdue_count_to_equipment_models.rb -------------------------------------------------------------------------------- /db/migrate/20160311070200_add_autodeactivate_on_archive_to_app_config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/migrate/20160311070200_add_autodeactivate_on_archive_to_app_config.rb -------------------------------------------------------------------------------- /db/migrate/20160610135455_add_requests_affect_availability_to_app_config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/migrate/20160610135455_add_requests_affect_availability_to_app_config.rb -------------------------------------------------------------------------------- /db/migrate/20180624231458_fix_overdue_count.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/migrate/20180624231458_fix_overdue_count.rb -------------------------------------------------------------------------------- /db/migrate/20191111190101_create_active_storage_tables.active_storage.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/migrate/20191111190101_create_active_storage_tables.active_storage.rb -------------------------------------------------------------------------------- /db/migrate/20191112210445_convert_to_active_storage.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/migrate/20191112210445_convert_to_active_storage.rb -------------------------------------------------------------------------------- /db/migrate/20200123142405_remove_paperclip_columns.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/migrate/20200123142405_remove_paperclip_columns.rb -------------------------------------------------------------------------------- /db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/schema.rb -------------------------------------------------------------------------------- /db/seed_images/664px-Mini-VGA_cropped.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/seed_images/664px-Mini-VGA_cropped.jpg -------------------------------------------------------------------------------- /db/seed_images/Canon28mm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/seed_images/Canon28mm.jpg -------------------------------------------------------------------------------- /db/seed_images/Canon50mm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/seed_images/Canon50mm.jpg -------------------------------------------------------------------------------- /db/seed_images/MKE400.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/seed_images/MKE400.jpg -------------------------------------------------------------------------------- /db/seed_images/MackieSRM150.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/seed_images/MackieSRM150.jpg -------------------------------------------------------------------------------- /db/seed_images/Nikon_P80.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/seed_images/Nikon_P80.jpg -------------------------------------------------------------------------------- /db/seed_images/adesso-cyberpad.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/seed_images/adesso-cyberpad.jpg -------------------------------------------------------------------------------- /db/seed_images/beachtek-dxa-5da.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/seed_images/beachtek-dxa-5da.jpg -------------------------------------------------------------------------------- /db/seed_images/beachtek-dxa2t.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/seed_images/beachtek-dxa2t.jpg -------------------------------------------------------------------------------- /db/seed_images/canon_hv20_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/seed_images/canon_hv20_1.jpg -------------------------------------------------------------------------------- /db/seed_images/canonspeedlite270ex copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/seed_images/canonspeedlite270ex copy.jpg -------------------------------------------------------------------------------- /db/seed_images/canonspeedlite270ex.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/seed_images/canonspeedlite270ex.jpg -------------------------------------------------------------------------------- /db/seed_images/epson-powerlite.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/seed_images/epson-powerlite.jpg -------------------------------------------------------------------------------- /db/seed_images/epsonprojector.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/seed_images/epsonprojector.jpg -------------------------------------------------------------------------------- /db/seed_images/kensington-wirelesspresenter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/seed_images/kensington-wirelesspresenter.jpg -------------------------------------------------------------------------------- /db/seed_images/korg-nanokontrol.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/seed_images/korg-nanokontrol.jpg -------------------------------------------------------------------------------- /db/seed_images/korg-nanopad.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/seed_images/korg-nanopad.jpg -------------------------------------------------------------------------------- /db/seed_images/nikon-d60.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/seed_images/nikon-d60.jpg -------------------------------------------------------------------------------- /db/seed_images/nikoncoolpixp80_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/seed_images/nikoncoolpixp80_2.jpg -------------------------------------------------------------------------------- /db/seed_images/olympus_ls_10_2-org.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/seed_images/olympus_ls_10_2-org.jpg -------------------------------------------------------------------------------- /db/seed_images/panasonichdc-tm300.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/seed_images/panasonichdc-tm300.jpg -------------------------------------------------------------------------------- /db/seed_images/sweetwater-XLR20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/seed_images/sweetwater-XLR20.jpg -------------------------------------------------------------------------------- /db/seed_images/wacomtablet.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/seed_images/wacomtablet.jpg -------------------------------------------------------------------------------- /db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/db/seeds.rb -------------------------------------------------------------------------------- /doc/reservations_erd.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/doc/reservations_erd.pdf -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /entrypoint-cron.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/entrypoint-cron.sh -------------------------------------------------------------------------------- /entrypoint-prod.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/entrypoint-prod.sh -------------------------------------------------------------------------------- /entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/entrypoint.sh -------------------------------------------------------------------------------- /lib/activation_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/lib/activation_helper.rb -------------------------------------------------------------------------------- /lib/autocomplete.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/lib/autocomplete.rb -------------------------------------------------------------------------------- /lib/blackout_updater.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/lib/blackout_updater.rb -------------------------------------------------------------------------------- /lib/capistrano/tasks/deployment_tasks.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/lib/capistrano/tasks/deployment_tasks.rake -------------------------------------------------------------------------------- /lib/class_from_string.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/lib/class_from_string.rb -------------------------------------------------------------------------------- /lib/csv_export.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/lib/csv_export.rb -------------------------------------------------------------------------------- /lib/csv_import.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/lib/csv_import.rb -------------------------------------------------------------------------------- /lib/development_mail_interceptor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/lib/development_mail_interceptor.rb -------------------------------------------------------------------------------- /lib/equipment_import.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/lib/equipment_import.rb -------------------------------------------------------------------------------- /lib/extras/simple_form_extensions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/lib/extras/simple_form_extensions.rb -------------------------------------------------------------------------------- /lib/job_helpers/email_job_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/lib/job_helpers/email_job_helper.rb -------------------------------------------------------------------------------- /lib/ldap_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/lib/ldap_helper.rb -------------------------------------------------------------------------------- /lib/people_api_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/lib/people_api_helper.rb -------------------------------------------------------------------------------- /lib/rails_extensions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/lib/rails_extensions.rb -------------------------------------------------------------------------------- /lib/searchable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/lib/searchable.rb -------------------------------------------------------------------------------- /lib/seed/app_config_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/lib/seed/app_config_generator.rb -------------------------------------------------------------------------------- /lib/seed/automatic_seed.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/lib/seed/automatic_seed.rb -------------------------------------------------------------------------------- /lib/seed/blackout_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/lib/seed/blackout_generator.rb -------------------------------------------------------------------------------- /lib/seed/category_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/lib/seed/category_generator.rb -------------------------------------------------------------------------------- /lib/seed/equipment_item_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/lib/seed/equipment_item_generator.rb -------------------------------------------------------------------------------- /lib/seed/equipment_model_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/lib/seed/equipment_model_generator.rb -------------------------------------------------------------------------------- /lib/seed/generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/lib/seed/generator.rb -------------------------------------------------------------------------------- /lib/seed/procedure_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/lib/seed/procedure_generator.rb -------------------------------------------------------------------------------- /lib/seed/prompted_seed.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/lib/seed/prompted_seed.rb -------------------------------------------------------------------------------- /lib/seed/requirement_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/lib/seed/requirement_generator.rb -------------------------------------------------------------------------------- /lib/seed/reservation_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/lib/seed/reservation_generator.rb -------------------------------------------------------------------------------- /lib/seed/reservation_generator_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/lib/seed/reservation_generator_helper.rb -------------------------------------------------------------------------------- /lib/seed/user_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/lib/seed/user_generator.rb -------------------------------------------------------------------------------- /lib/tasks/active_storage.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/lib/tasks/active_storage.rake -------------------------------------------------------------------------------- /lib/tasks/scheduler.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/lib/tasks/scheduler.rake -------------------------------------------------------------------------------- /lib/tasks/setup_application.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/lib/tasks/setup_application.rake -------------------------------------------------------------------------------- /lib/tasks/style_checker.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/lib/tasks/style_checker.rake -------------------------------------------------------------------------------- /lib/templates/erb/scaffold/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/lib/templates/erb/scaffold/_form.html.erb -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/package.json -------------------------------------------------------------------------------- /public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/public/404.html -------------------------------------------------------------------------------- /public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/public/422.html -------------------------------------------------------------------------------- /public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/public/500.html -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/public/robots.txt -------------------------------------------------------------------------------- /script/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/script/rails -------------------------------------------------------------------------------- /spec/controllers/announcements_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/spec/controllers/announcements_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/app_configs_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/spec/controllers/app_configs_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/application_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/spec/controllers/application_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/blackouts_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/spec/controllers/blackouts_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/catalog_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/spec/controllers/catalog_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/categories_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/spec/controllers/categories_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/contact_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/spec/controllers/contact_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/equipment_items_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/spec/controllers/equipment_items_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/equipment_models_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/spec/controllers/equipment_models_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/import_users_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/spec/controllers/import_users_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/reports_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/spec/controllers/reports_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/requirements_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/spec/controllers/requirements_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/reservations_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/spec/controllers/reservations_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/users_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/spec/controllers/users_controller_spec.rb -------------------------------------------------------------------------------- /spec/factories/_sequences.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/spec/factories/_sequences.rb -------------------------------------------------------------------------------- /spec/factories/announcements.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/spec/factories/announcements.rb -------------------------------------------------------------------------------- /spec/factories/app_configs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/spec/factories/app_configs.rb -------------------------------------------------------------------------------- /spec/factories/blackouts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/spec/factories/blackouts.rb -------------------------------------------------------------------------------- /spec/factories/carts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/spec/factories/carts.rb -------------------------------------------------------------------------------- /spec/factories/categories.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/spec/factories/categories.rb -------------------------------------------------------------------------------- /spec/factories/checkin_procedures.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/spec/factories/checkin_procedures.rb -------------------------------------------------------------------------------- /spec/factories/checkout_procedures.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/spec/factories/checkout_procedures.rb -------------------------------------------------------------------------------- /spec/factories/equipment_items.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/spec/factories/equipment_items.rb -------------------------------------------------------------------------------- /spec/factories/equipment_models.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/spec/factories/equipment_models.rb -------------------------------------------------------------------------------- /spec/factories/messages.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/spec/factories/messages.rb -------------------------------------------------------------------------------- /spec/factories/requirements.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/spec/factories/requirements.rb -------------------------------------------------------------------------------- /spec/factories/reservations.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/spec/factories/reservations.rb -------------------------------------------------------------------------------- /spec/factories/users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/spec/factories/users.rb -------------------------------------------------------------------------------- /spec/features/announcements_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/spec/features/announcements_spec.rb -------------------------------------------------------------------------------- /spec/features/auth_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/spec/features/auth_spec.rb -------------------------------------------------------------------------------- /spec/features/blackout_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/spec/features/blackout_spec.rb -------------------------------------------------------------------------------- /spec/features/catalog_requirements_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/spec/features/catalog_requirements_spec.rb -------------------------------------------------------------------------------- /spec/features/eq_model_deactivation_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/spec/features/eq_model_deactivation_spec.rb -------------------------------------------------------------------------------- /spec/features/eq_model_editing_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/spec/features/eq_model_editing_spec.rb -------------------------------------------------------------------------------- /spec/features/eq_model_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/spec/features/eq_model_spec.rb -------------------------------------------------------------------------------- /spec/features/equipment_model_calendar_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/spec/features/equipment_model_calendar_spec.rb -------------------------------------------------------------------------------- /spec/features/equipment_model_views_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/spec/features/equipment_model_views_spec.rb -------------------------------------------------------------------------------- /spec/features/flash_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/spec/features/flash_spec.rb -------------------------------------------------------------------------------- /spec/features/guest_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/spec/features/guest_spec.rb -------------------------------------------------------------------------------- /spec/features/import_users_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/spec/features/import_users_spec.rb -------------------------------------------------------------------------------- /spec/features/profile_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/spec/features/profile_spec.rb -------------------------------------------------------------------------------- /spec/features/rails_admin_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/spec/features/rails_admin_spec.rb -------------------------------------------------------------------------------- /spec/features/receipt_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/spec/features/receipt_spec.rb -------------------------------------------------------------------------------- /spec/features/reservations_archive_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/spec/features/reservations_archive_spec.rb -------------------------------------------------------------------------------- /spec/features/reservations_handling_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/spec/features/reservations_handling_spec.rb -------------------------------------------------------------------------------- /spec/features/reservations_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/spec/features/reservations_spec.rb -------------------------------------------------------------------------------- /spec/features/task_buttons_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/spec/features/task_buttons_spec.rb -------------------------------------------------------------------------------- /spec/features/users_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/spec/features/users_spec.rb -------------------------------------------------------------------------------- /spec/fixtures/cr_line_endings_users.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/spec/fixtures/cr_line_endings_users.csv -------------------------------------------------------------------------------- /spec/fixtures/extra_columns_users.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/spec/fixtures/extra_columns_users.csv -------------------------------------------------------------------------------- /spec/fixtures/header_spaces_users.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/spec/fixtures/header_spaces_users.csv -------------------------------------------------------------------------------- /spec/fixtures/invalid_utf8_users.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/spec/fixtures/invalid_utf8_users.csv -------------------------------------------------------------------------------- /spec/fixtures/users_to_ban.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/spec/fixtures/users_to_ban.csv -------------------------------------------------------------------------------- /spec/fixtures/valid_users.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/spec/fixtures/valid_users.csv -------------------------------------------------------------------------------- /spec/helpers/announcements_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/spec/helpers/announcements_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/application_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/spec/helpers/application_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/email_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/spec/helpers/email_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/equipment_model_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/spec/helpers/equipment_model_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/requirements_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/spec/helpers/requirements_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/reservations_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/spec/helpers/reservations_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/user_mailer_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/spec/helpers/user_mailer_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/users_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/spec/helpers/users_helper_spec.rb -------------------------------------------------------------------------------- /spec/jobs/daily_tasks_job_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/spec/jobs/daily_tasks_job_spec.rb -------------------------------------------------------------------------------- /spec/jobs/delete_missed_reservations_job_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/spec/jobs/delete_missed_reservations_job_spec.rb -------------------------------------------------------------------------------- /spec/jobs/delete_old_blackouts_job_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/spec/jobs/delete_old_blackouts_job_spec.rb -------------------------------------------------------------------------------- /spec/jobs/deny_missed_requests_job_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/spec/jobs/deny_missed_requests_job_spec.rb -------------------------------------------------------------------------------- /spec/jobs/email_checkin_reminder_job_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/spec/jobs/email_checkin_reminder_job_spec.rb -------------------------------------------------------------------------------- /spec/jobs/email_checkout_reminder_job_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/spec/jobs/email_checkout_reminder_job_spec.rb -------------------------------------------------------------------------------- /spec/jobs/email_missed_reservations_job_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/spec/jobs/email_missed_reservations_job_spec.rb -------------------------------------------------------------------------------- /spec/jobs/email_notes_to_admins_job_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/spec/jobs/email_notes_to_admins_job_spec.rb -------------------------------------------------------------------------------- /spec/jobs/email_overdue_reminder_job_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/spec/jobs/email_overdue_reminder_job_spec.rb -------------------------------------------------------------------------------- /spec/jobs/flag_missed_job_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/spec/jobs/flag_missed_job_spec.rb -------------------------------------------------------------------------------- /spec/jobs/flag_overdue_job_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/spec/jobs/flag_overdue_job_spec.rb -------------------------------------------------------------------------------- /spec/jobs/hourly_tasks_job_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/spec/jobs/hourly_tasks_job_spec.rb -------------------------------------------------------------------------------- /spec/lib/blackout_updater_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/spec/lib/blackout_updater_spec.rb -------------------------------------------------------------------------------- /spec/lib/class_from_string_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/spec/lib/class_from_string_spec.rb -------------------------------------------------------------------------------- /spec/lib/csv_export_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/spec/lib/csv_export_spec.rb -------------------------------------------------------------------------------- /spec/lib/csv_import_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/spec/lib/csv_import_spec.rb -------------------------------------------------------------------------------- /spec/lib/generator_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/spec/lib/generator_spec.rb -------------------------------------------------------------------------------- /spec/lib/ldap_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/spec/lib/ldap_helper_spec.rb -------------------------------------------------------------------------------- /spec/mailers/admin_mailer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/spec/mailers/admin_mailer_spec.rb -------------------------------------------------------------------------------- /spec/mailers/user_mailer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/spec/mailers/user_mailer_spec.rb -------------------------------------------------------------------------------- /spec/models/announcement_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/spec/models/announcement_spec.rb -------------------------------------------------------------------------------- /spec/models/app_config_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/spec/models/app_config_spec.rb -------------------------------------------------------------------------------- /spec/models/blackout_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/spec/models/blackout_spec.rb -------------------------------------------------------------------------------- /spec/models/cart_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/spec/models/cart_spec.rb -------------------------------------------------------------------------------- /spec/models/category_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/spec/models/category_spec.rb -------------------------------------------------------------------------------- /spec/models/checkin_procedure_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/spec/models/checkin_procedure_spec.rb -------------------------------------------------------------------------------- /spec/models/checkout_procedure_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/spec/models/checkout_procedure_spec.rb -------------------------------------------------------------------------------- /spec/models/equipment_item_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/spec/models/equipment_item_spec.rb -------------------------------------------------------------------------------- /spec/models/equipment_model_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/spec/models/equipment_model_spec.rb -------------------------------------------------------------------------------- /spec/models/message_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/spec/models/message_spec.rb -------------------------------------------------------------------------------- /spec/models/report_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/spec/models/report_spec.rb -------------------------------------------------------------------------------- /spec/models/requirement_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/spec/models/requirement_spec.rb -------------------------------------------------------------------------------- /spec/models/reservation_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/spec/models/reservation_spec.rb -------------------------------------------------------------------------------- /spec/models/user_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/spec/models/user_spec.rb -------------------------------------------------------------------------------- /spec/queries/reservations/affected_by_recurring_blackout_query.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/spec/queries/reservations/affected_by_recurring_blackout_query.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/support/app_config_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/spec/support/app_config_helpers.rb -------------------------------------------------------------------------------- /spec/support/calendarable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/spec/support/calendarable.rb -------------------------------------------------------------------------------- /spec/support/capybara_form_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/spec/support/capybara_form_helper.rb -------------------------------------------------------------------------------- /spec/support/capybara_silence_puma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/spec/support/capybara_silence_puma.rb -------------------------------------------------------------------------------- /spec/support/chromedriver.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/spec/support/chromedriver.rb -------------------------------------------------------------------------------- /spec/support/controller_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/spec/support/controller_helpers.rb -------------------------------------------------------------------------------- /spec/support/env_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/spec/support/env_helpers.rb -------------------------------------------------------------------------------- /spec/support/factory_girl.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/spec/support/factory_girl.rb -------------------------------------------------------------------------------- /spec/support/feature_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/spec/support/feature_helpers.rb -------------------------------------------------------------------------------- /spec/support/mockers/category_mock.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/spec/support/mockers/category_mock.rb -------------------------------------------------------------------------------- /spec/support/mockers/equipment_item_mock.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/spec/support/mockers/equipment_item_mock.rb -------------------------------------------------------------------------------- /spec/support/mockers/equipment_model_mock.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/spec/support/mockers/equipment_model_mock.rb -------------------------------------------------------------------------------- /spec/support/mockers/mocker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/spec/support/mockers/mocker.rb -------------------------------------------------------------------------------- /spec/support/mockers/reservation_mock.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/spec/support/mockers/reservation_mock.rb -------------------------------------------------------------------------------- /spec/support/mockers/user_mock.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/spec/support/mockers/user_mock.rb -------------------------------------------------------------------------------- /spec/support/shared_contexts/rake.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/spec/support/shared_contexts/rake.rb -------------------------------------------------------------------------------- /spec/support/shared_examples/concerns/linkable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/spec/support/shared_examples/concerns/linkable.rb -------------------------------------------------------------------------------- /spec/support/shared_examples/concerns/soft_deletable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/spec/support/shared_examples/concerns/soft_deletable.rb -------------------------------------------------------------------------------- /spec/support/shared_examples/controller_examples.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/spec/support/shared_examples/controller_examples.rb -------------------------------------------------------------------------------- /spec/support/shared_examples/email_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/spec/support/shared_examples/email_job.rb -------------------------------------------------------------------------------- /spec/support/shared_examples/flag_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/spec/support/shared_examples/flag_job.rb -------------------------------------------------------------------------------- /spec/support/warden_setup.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/spec/support/warden_setup.rb -------------------------------------------------------------------------------- /test: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/assets/images/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/vendor/assets/images/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /vendor/assets/images/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/vendor/assets/images/glyphicons-halflings.png -------------------------------------------------------------------------------- /vendor/assets/javascripts/dataTables_numhtml_detect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/vendor/assets/javascripts/dataTables_numhtml_detect.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/dataTables_numhtml_sort.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/vendor/assets/javascripts/dataTables_numhtml_sort.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/datatables.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/vendor/assets/javascripts/datatables.min.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/jquery.dotdotdot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/vendor/assets/javascripts/jquery.dotdotdot.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/jquery.sticky.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/vendor/assets/javascripts/jquery.sticky.js -------------------------------------------------------------------------------- /vendor/assets/stylesheets/datatables.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/vendor/assets/stylesheets/datatables.min.css -------------------------------------------------------------------------------- /vendor/assets/stylesheets/jquery-ui-1.10.3.custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/vendor/assets/stylesheets/jquery-ui-1.10.3.custom.css -------------------------------------------------------------------------------- /vendor/assets/stylesheets/jquery-ui-1.10.3.theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/vendor/assets/stylesheets/jquery-ui-1.10.3.theme.css -------------------------------------------------------------------------------- /vendor/assets/stylesheets/jquery.ui.1.10.3.ie.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YaleSTC/reservations/HEAD/vendor/assets/stylesheets/jquery.ui.1.10.3.ie.css --------------------------------------------------------------------------------