├── .env.sample ├── .gitignore ├── .rubocop.yml ├── .ruby-version ├── .travis.yml ├── API_ENDPOINT_SPECIFICATION.md ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Dockerfile ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── Procfile ├── README.md ├── Rakefile ├── app ├── assets │ ├── config │ │ └── manifest.js │ ├── images │ │ └── .keep │ ├── javascripts │ │ ├── application.js │ │ ├── cable.js │ │ ├── channels │ │ │ ├── .keep │ │ │ ├── distribution_point.js │ │ │ ├── need.js │ │ │ └── shelter.js │ │ ├── components │ │ │ └── place_autocomplete.js │ │ ├── connect │ │ │ ├── haves.js │ │ │ └── needs.js │ │ ├── notifications.js │ │ └── simple_map.js │ └── stylesheets │ │ ├── application.css │ │ ├── connect │ │ ├── haves.scss │ │ └── needs.scss │ │ ├── datatable.scss │ │ ├── main.css │ │ ├── menu.scss │ │ ├── notifications.scss │ │ ├── pages.scss │ │ └── splash.scss ├── channels │ ├── application_cable │ │ ├── channel.rb │ │ └── connection.rb │ ├── distribution_point_channel.rb │ ├── need_channel.rb │ └── shelter_channel.rb ├── controllers │ ├── amazon_products_controller.rb │ ├── api │ │ ├── v1 │ │ │ ├── amazon_products_controller.rb │ │ │ ├── charitable_organizations_controller.rb │ │ │ ├── connect │ │ │ │ ├── categories_controller.rb │ │ │ │ └── markers_controller.rb │ │ │ ├── distribution_points_controller.rb │ │ │ ├── needs_controller.rb │ │ │ └── shelters_controller.rb │ │ └── v2 │ │ │ └── locations_controller.rb │ ├── application_controller.rb │ ├── charitable_organizations_controller.rb │ ├── concerns │ │ ├── .keep │ │ └── filter_by_params.rb │ ├── connect │ │ └── markers_controller.rb │ ├── distribution_points_controller.rb │ ├── drafts_controller.rb │ ├── location_drafts_controller.rb │ ├── locations_controller.rb │ ├── needs_controller.rb │ ├── organizations_controller.rb │ ├── pages_controller.rb │ ├── shelters_controller.rb │ ├── splash_controller.rb │ ├── trash_controller.rb │ └── users_controller.rb ├── helpers │ ├── application_helper.rb │ ├── connect │ │ ├── haves_helper.rb │ │ └── needs_helper.rb │ ├── mucked_homes_helper.rb │ ├── pages_helper.rb │ ├── splash_helper.rb │ └── volunteers_helper.rb ├── importers │ ├── api_importer.rb │ └── fema_importer.rb ├── jobs │ ├── application_job.rb │ ├── distribution_point_update_notifier_job.rb │ ├── fetch_amazon_product_job.rb │ ├── import_distribution_points_job.rb │ ├── import_fema_shelters_job.rb │ ├── import_needs_job.rb │ ├── import_shelters_job.rb │ ├── need_update_notifier_job.rb │ ├── recode_geocoding_job.rb │ ├── schedule_amazon_fetch_job.rb │ ├── shelter_update_notifier_job.rb │ └── shelters_csv_export_job.rb ├── mailers │ └── application_mailer.rb ├── models │ ├── amazon_product.rb │ ├── application_record.rb │ ├── charitable_organization.rb │ ├── concerns │ │ ├── .keep │ │ ├── geocodable.rb │ │ └── trashable.rb │ ├── connect.rb │ ├── connect │ │ └── marker.rb │ ├── distribution_point.rb │ ├── draft.rb │ ├── ignored_amazon_product_need.rb │ ├── location.rb │ ├── location │ │ ├── config.rb │ │ ├── hhrd │ │ │ ├── pois.rb │ │ │ ├── rescuees.rb │ │ │ └── rescuers.rb │ │ └── whitelist.rb │ ├── mucked_home.rb │ ├── need.rb │ ├── page.rb │ ├── shelter.rb │ ├── trash.rb │ ├── user.rb │ └── volunteer.rb └── views │ ├── amazon_products │ ├── _form.html.erb │ ├── edit.html.erb │ ├── index.html.erb │ └── show.html.erb │ ├── api │ ├── v1 │ │ ├── amazon_products │ │ │ ├── _amazon_product.json.jbuilder │ │ │ └── index.json.jbuilder │ │ ├── charitable_organizations │ │ │ ├── _charitable_organization.json.jbuilder │ │ │ └── index.json.jbuilder │ │ ├── connect │ │ │ └── markers │ │ │ │ ├── index.json.jbuilder │ │ │ │ └── show.json.jbuilder │ │ ├── distribution_points │ │ │ ├── _distribution_point.json.jbuilder │ │ │ ├── geo.json.jbuilder │ │ │ ├── index.json.jbuilder │ │ │ └── outdated.json.jbuilder │ │ ├── needs │ │ │ ├── _need.json.jbuilder │ │ │ ├── index.json.jbuilder │ │ │ └── show.json.jbuilder │ │ └── shelters │ │ │ ├── _shelter.json.jbuilder │ │ │ ├── geo.json.jbuilder │ │ │ ├── index.json.jbuilder │ │ │ └── outdated.json.jbuilder │ └── v2 │ │ └── locations │ │ ├── _location.json.jbuilder │ │ ├── help.json.jbuilder │ │ ├── index.json.jbuilder │ │ └── routes.json.jbuilder │ ├── charitable_organizations │ ├── _form.html.erb │ ├── drafts.html.erb │ ├── edit.html.erb │ ├── index.html.erb │ ├── new.html.erb │ └── show.html.erb │ ├── distribution_points │ ├── _distribution_point.html.erb │ ├── _form.html.erb │ ├── archived.html.erb │ ├── drafts.html.erb │ ├── edit.html.erb │ ├── index.html.erb │ ├── new.html.erb │ ├── outdated.html.erb │ └── show.html.erb │ ├── drafts │ └── show.html.erb │ ├── layouts │ ├── _menu.html.erb │ ├── application.html.erb │ ├── locations.html.erb │ ├── mailer.html.erb │ └── mailer.text.erb │ ├── location_drafts │ └── show.html.erb │ ├── locations │ ├── _form.html.erb │ ├── drafts.html.erb │ ├── edit.html.erb │ ├── index.html.erb │ ├── new.html.erb │ └── show.html.erb │ ├── needs │ ├── _form.html.erb │ ├── drafts.html.erb │ ├── edit.html.erb │ ├── index.html.erb │ ├── new.html.erb │ └── show.html.erb │ ├── organizations │ └── show.html.erb │ ├── pages │ ├── _form.html.erb │ ├── _page.html.erb │ ├── edit.html.erb │ ├── index.html.erb │ └── new.html.erb │ ├── shared │ ├── _drafts_table.html.erb │ ├── _show.html.erb │ └── _table.html.erb │ ├── shelters │ ├── _form.html.erb │ ├── _shelter.html.erb │ ├── archived.html.erb │ ├── drafts.html.erb │ ├── edit.html.erb │ ├── index.html.erb │ ├── new.html.erb │ ├── outdated.html.erb │ └── show.html.erb │ ├── splash │ └── index.html.erb │ ├── trash │ ├── index.html.erb │ └── show.html.erb │ └── users │ ├── index.html.erb │ ├── show.html.erb │ └── update.html.erb ├── bin ├── bundle ├── rails ├── rake ├── setup ├── spring ├── update └── yarn ├── config.ru ├── config ├── application.rb ├── boot.rb ├── cable.yml ├── connect_categories.yml ├── database.yml ├── database.yml.docker ├── database.yml.travis ├── environment.rb ├── environments │ ├── development.rb │ ├── production.rb │ └── test.rb ├── initializers │ ├── application_controller_renderer.rb │ ├── assets.rb │ ├── backtrace_silencers.rb │ ├── cookies_serializer.rb │ ├── devise.rb │ ├── filter_parameter_logging.rb │ ├── geocoder.rb │ ├── inflections.rb │ ├── mime_types.rb │ ├── simple_form.rb │ ├── traffic_cop.rb │ └── wrap_parameters.rb ├── locales │ ├── devise.en.yml │ ├── en.yml │ └── simple_form.en.yml ├── puma.rb ├── routes.rb ├── secrets.yml └── spring.rb ├── db ├── migrate │ ├── 20170831193310_create_shelters.rb │ ├── 20170831193314_create_needs.rb │ ├── 20170831220720_change_lat_long_to_floats.rb │ ├── 20170901185804_add_update_draft_table.rb │ ├── 20170901194923_devise_create_users.rb │ ├── 20170901201514_create_amazon_products.rb │ ├── 20170901224459_add_accept_deny_draft.rb │ ├── 20170902123713_add_disabled_to_amazon_products.rb │ ├── 20170902140452_create_ignored_amazon_product_needs.rb │ ├── 20170902203116_add_archive_to_need.rb │ ├── 20170902213139_create_mucked_homes.rb │ ├── 20170902222739_create_volunteers.rb │ ├── 20170903113333_create_connect_markers.rb │ ├── 20170903230413_create_charitable_organizations.rb │ ├── 20170903231428_add_archive_to_charitable_organizations.rb │ ├── 20170904025322_add_email_to_connect_markers.rb │ ├── 20170904165336_add_product_categories_to_amazon_products.rb │ ├── 20170905114546_add_data_to_markers.rb │ ├── 20170905201043_create_pages.rb │ ├── 20170906160409_add_amazon_price_to_products.rb │ ├── 20170907032253_add_fields_to_shelter.rb │ ├── 20170907070934_add_location_table.rb │ ├── 20170907152426_add_device_uuid_connect_markers.rb │ ├── 20170908152859_update_category_on_connect_markers.rb │ ├── 20170909061551_add_state_and_zip_to_shelter.rb │ ├── 20170909080422_add_special_needs_to_shelters.rb │ ├── 20170909082334_add_private_email_to_shelters.rb │ ├── 20170909082743_backfill_special_needs.rb │ ├── 20170909174720_add_private_fields_to_shelters.rb │ ├── 20170909175503_add_allow_pets_to_shelter.rb │ ├── 20170909193921_add_created_by_to_drafts.rb │ ├── 20170910045633_add_unofficial_to_shelters.rb │ ├── 20180914132709_convert_accepting_to_enum.rb │ ├── 20180915035427_add_accessbility_text_field_to_shelters.rb │ ├── 20180919043949_create_distribution_points.rb │ ├── 20180925062606_rename_active_to_archived.rb │ └── 20181013222410_create_trashes.rb ├── seeds.rb ├── seeds │ ├── amazon_products.json │ └── ignored_amazon_product_needs.json └── structure.sql ├── docker-compose.yml ├── docker_entrypoint.sh ├── lib ├── assets │ └── .keep ├── tasks │ ├── .keep │ ├── amazon.rake │ ├── export.rake │ ├── georecode.rake │ └── import.rake └── templates │ └── erb │ └── scaffold │ └── _form.html.erb ├── log └── .keep ├── package.json ├── public ├── 404.html ├── 422.html ├── 500.html ├── apple-touch-icon-precomposed.png ├── apple-touch-icon.png ├── contributors.html ├── favicon.ico ├── images │ └── readme │ │ ├── screenshot_create-service-account-key.png │ │ ├── screenshot_enable_google_sheets_api.png │ │ └── screenshot_rails_server_run_test.png └── robots.txt ├── test ├── application_system_test_case.rb ├── controllers │ ├── .keep │ ├── amazon_products_controller_test.rb │ ├── api │ │ └── v1 │ │ │ ├── amazon_product_needs_controller_test.rb │ │ │ ├── charitable_organizations_controller_test.rb │ │ │ ├── connect │ │ │ ├── categories_controller_test.rb │ │ │ └── markers_controller_test.rb │ │ │ ├── distribution_points_controller_test.rb │ │ │ ├── needs_controller_test.rb │ │ │ └── shelters_controller_test.rb │ ├── charitable_organizations_controller_test.rb │ ├── connect │ │ └── markers_controller_test.rb │ ├── distribution_points_controller_test.rb │ ├── drafts_controller_test.rb │ ├── location_drafts_controller_test.rb │ ├── locations_controller_test.rb │ ├── needs_controller_test.rb │ ├── pages_controller_test.rb │ ├── shelters_controller_test.rb │ └── trash_controller_test.rb ├── fixtures │ ├── .keep │ ├── amazon_products.yml │ ├── charitable_organizations.yml │ ├── connect │ │ └── markers.yml │ ├── distribution_points.yml │ ├── drafts.yml │ ├── files │ │ ├── .keep │ │ └── google.geojson │ ├── locations.yml │ ├── mucked_homes.yml │ ├── needs.yml │ ├── pages.yml │ ├── shelters.yml │ ├── trash.yml │ ├── users.yml │ └── volunteers.yml ├── helpers │ └── .keep ├── integration │ └── .keep ├── jobs │ ├── import_fema_shelters_job_test.rb │ ├── import_needs_job_test.rb │ ├── import_sheet_data_job_test.rb │ ├── import_shelters_job_test.rb │ └── recode_geocoding_job_test.rb ├── mailers │ └── .keep ├── models │ ├── .keep │ ├── amazon_product_test.rb │ ├── charitable_organization_test.rb │ ├── connect │ │ └── marker_test.rb │ ├── distribution_point_test.rb │ ├── ignored_amazon_product_need_test.rb │ ├── location_test.rb │ ├── mucked_home_test.rb │ ├── need_test.rb │ ├── page_test.rb │ ├── shelter_test.rb │ ├── user_test.rb │ └── volunteer_test.rb ├── system │ ├── .keep │ ├── admin_searchings_test.rb │ ├── distribution_points_test.rb │ └── homepage_test.rb ├── test_helper.rb └── vcr_cassettes │ ├── amazon-missing.yml │ ├── amazon.yml │ ├── fema_shelters.yml │ ├── needs.yml │ └── shelters.yml ├── tmp └── .keep └── vendor └── .keep /.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/.env.sample -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/.gitignore -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 2.6.5 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/.travis.yml -------------------------------------------------------------------------------- /API_ENDPOINT_SPECIFICATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/API_ENDPOINT_SPECIFICATION.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/Dockerfile -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/Procfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/Rakefile -------------------------------------------------------------------------------- /app/assets/config/manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/assets/config/manifest.js -------------------------------------------------------------------------------- /app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/javascripts/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/assets/javascripts/application.js -------------------------------------------------------------------------------- /app/assets/javascripts/cable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/assets/javascripts/cable.js -------------------------------------------------------------------------------- /app/assets/javascripts/channels/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/javascripts/channels/distribution_point.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/assets/javascripts/channels/distribution_point.js -------------------------------------------------------------------------------- /app/assets/javascripts/channels/need.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/assets/javascripts/channels/need.js -------------------------------------------------------------------------------- /app/assets/javascripts/channels/shelter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/assets/javascripts/channels/shelter.js -------------------------------------------------------------------------------- /app/assets/javascripts/components/place_autocomplete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/assets/javascripts/components/place_autocomplete.js -------------------------------------------------------------------------------- /app/assets/javascripts/connect/haves.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/assets/javascripts/connect/haves.js -------------------------------------------------------------------------------- /app/assets/javascripts/connect/needs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/assets/javascripts/connect/needs.js -------------------------------------------------------------------------------- /app/assets/javascripts/notifications.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/assets/javascripts/notifications.js -------------------------------------------------------------------------------- /app/assets/javascripts/simple_map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/assets/javascripts/simple_map.js -------------------------------------------------------------------------------- /app/assets/stylesheets/application.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/assets/stylesheets/application.css -------------------------------------------------------------------------------- /app/assets/stylesheets/connect/haves.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/assets/stylesheets/connect/haves.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/connect/needs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/assets/stylesheets/connect/needs.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/datatable.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/assets/stylesheets/datatable.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/assets/stylesheets/main.css -------------------------------------------------------------------------------- /app/assets/stylesheets/menu.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/assets/stylesheets/menu.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/notifications.scss: -------------------------------------------------------------------------------- 1 | .new-record-notification { 2 | text-align: right; 3 | } 4 | -------------------------------------------------------------------------------- /app/assets/stylesheets/pages.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/assets/stylesheets/pages.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/splash.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/assets/stylesheets/splash.scss -------------------------------------------------------------------------------- /app/channels/application_cable/channel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/channels/application_cable/channel.rb -------------------------------------------------------------------------------- /app/channels/application_cable/connection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/channels/application_cable/connection.rb -------------------------------------------------------------------------------- /app/channels/distribution_point_channel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/channels/distribution_point_channel.rb -------------------------------------------------------------------------------- /app/channels/need_channel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/channels/need_channel.rb -------------------------------------------------------------------------------- /app/channels/shelter_channel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/channels/shelter_channel.rb -------------------------------------------------------------------------------- /app/controllers/amazon_products_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/controllers/amazon_products_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/v1/amazon_products_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/controllers/api/v1/amazon_products_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/v1/charitable_organizations_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/controllers/api/v1/charitable_organizations_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/v1/connect/categories_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/controllers/api/v1/connect/categories_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/v1/connect/markers_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/controllers/api/v1/connect/markers_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/v1/distribution_points_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/controllers/api/v1/distribution_points_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/v1/needs_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/controllers/api/v1/needs_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/v1/shelters_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/controllers/api/v1/shelters_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/v2/locations_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/controllers/api/v2/locations_controller.rb -------------------------------------------------------------------------------- /app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/charitable_organizations_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/controllers/charitable_organizations_controller.rb -------------------------------------------------------------------------------- /app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/controllers/concerns/filter_by_params.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/controllers/concerns/filter_by_params.rb -------------------------------------------------------------------------------- /app/controllers/connect/markers_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/controllers/connect/markers_controller.rb -------------------------------------------------------------------------------- /app/controllers/distribution_points_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/controllers/distribution_points_controller.rb -------------------------------------------------------------------------------- /app/controllers/drafts_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/controllers/drafts_controller.rb -------------------------------------------------------------------------------- /app/controllers/location_drafts_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/controllers/location_drafts_controller.rb -------------------------------------------------------------------------------- /app/controllers/locations_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/controllers/locations_controller.rb -------------------------------------------------------------------------------- /app/controllers/needs_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/controllers/needs_controller.rb -------------------------------------------------------------------------------- /app/controllers/organizations_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/controllers/organizations_controller.rb -------------------------------------------------------------------------------- /app/controllers/pages_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/controllers/pages_controller.rb -------------------------------------------------------------------------------- /app/controllers/shelters_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/controllers/shelters_controller.rb -------------------------------------------------------------------------------- /app/controllers/splash_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/controllers/splash_controller.rb -------------------------------------------------------------------------------- /app/controllers/trash_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/controllers/trash_controller.rb -------------------------------------------------------------------------------- /app/controllers/users_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/controllers/users_controller.rb -------------------------------------------------------------------------------- /app/helpers/application_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/helpers/application_helper.rb -------------------------------------------------------------------------------- /app/helpers/connect/haves_helper.rb: -------------------------------------------------------------------------------- 1 | module Connect::HavesHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/connect/needs_helper.rb: -------------------------------------------------------------------------------- 1 | module Connect::NeedsHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/mucked_homes_helper.rb: -------------------------------------------------------------------------------- 1 | module MuckedHomesHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/pages_helper.rb: -------------------------------------------------------------------------------- 1 | module PagesHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/splash_helper.rb: -------------------------------------------------------------------------------- 1 | module SplashHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/volunteers_helper.rb: -------------------------------------------------------------------------------- 1 | module VolunteersHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/importers/api_importer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/importers/api_importer.rb -------------------------------------------------------------------------------- /app/importers/fema_importer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/importers/fema_importer.rb -------------------------------------------------------------------------------- /app/jobs/application_job.rb: -------------------------------------------------------------------------------- 1 | class ApplicationJob < ActiveJob::Base 2 | end 3 | -------------------------------------------------------------------------------- /app/jobs/distribution_point_update_notifier_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/jobs/distribution_point_update_notifier_job.rb -------------------------------------------------------------------------------- /app/jobs/fetch_amazon_product_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/jobs/fetch_amazon_product_job.rb -------------------------------------------------------------------------------- /app/jobs/import_distribution_points_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/jobs/import_distribution_points_job.rb -------------------------------------------------------------------------------- /app/jobs/import_fema_shelters_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/jobs/import_fema_shelters_job.rb -------------------------------------------------------------------------------- /app/jobs/import_needs_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/jobs/import_needs_job.rb -------------------------------------------------------------------------------- /app/jobs/import_shelters_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/jobs/import_shelters_job.rb -------------------------------------------------------------------------------- /app/jobs/need_update_notifier_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/jobs/need_update_notifier_job.rb -------------------------------------------------------------------------------- /app/jobs/recode_geocoding_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/jobs/recode_geocoding_job.rb -------------------------------------------------------------------------------- /app/jobs/schedule_amazon_fetch_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/jobs/schedule_amazon_fetch_job.rb -------------------------------------------------------------------------------- /app/jobs/shelter_update_notifier_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/jobs/shelter_update_notifier_job.rb -------------------------------------------------------------------------------- /app/jobs/shelters_csv_export_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/jobs/shelters_csv_export_job.rb -------------------------------------------------------------------------------- /app/mailers/application_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/mailers/application_mailer.rb -------------------------------------------------------------------------------- /app/models/amazon_product.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/models/amazon_product.rb -------------------------------------------------------------------------------- /app/models/application_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/models/application_record.rb -------------------------------------------------------------------------------- /app/models/charitable_organization.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/models/charitable_organization.rb -------------------------------------------------------------------------------- /app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/concerns/geocodable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/models/concerns/geocodable.rb -------------------------------------------------------------------------------- /app/models/concerns/trashable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/models/concerns/trashable.rb -------------------------------------------------------------------------------- /app/models/connect.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/models/connect.rb -------------------------------------------------------------------------------- /app/models/connect/marker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/models/connect/marker.rb -------------------------------------------------------------------------------- /app/models/distribution_point.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/models/distribution_point.rb -------------------------------------------------------------------------------- /app/models/draft.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/models/draft.rb -------------------------------------------------------------------------------- /app/models/ignored_amazon_product_need.rb: -------------------------------------------------------------------------------- 1 | class IgnoredAmazonProductNeed < ApplicationRecord 2 | end 3 | -------------------------------------------------------------------------------- /app/models/location.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/models/location.rb -------------------------------------------------------------------------------- /app/models/location/config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/models/location/config.rb -------------------------------------------------------------------------------- /app/models/location/hhrd/pois.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/models/location/hhrd/pois.rb -------------------------------------------------------------------------------- /app/models/location/hhrd/rescuees.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/models/location/hhrd/rescuees.rb -------------------------------------------------------------------------------- /app/models/location/hhrd/rescuers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/models/location/hhrd/rescuers.rb -------------------------------------------------------------------------------- /app/models/location/whitelist.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/models/location/whitelist.rb -------------------------------------------------------------------------------- /app/models/mucked_home.rb: -------------------------------------------------------------------------------- 1 | class MuckedHome < ApplicationRecord 2 | geocoded_by :full_address 3 | end 4 | -------------------------------------------------------------------------------- /app/models/need.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/models/need.rb -------------------------------------------------------------------------------- /app/models/page.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/models/page.rb -------------------------------------------------------------------------------- /app/models/shelter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/models/shelter.rb -------------------------------------------------------------------------------- /app/models/trash.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/models/trash.rb -------------------------------------------------------------------------------- /app/models/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/models/user.rb -------------------------------------------------------------------------------- /app/models/volunteer.rb: -------------------------------------------------------------------------------- 1 | class Volunteer < ApplicationRecord 2 | geocoded_by :full_address 3 | end 4 | -------------------------------------------------------------------------------- /app/views/amazon_products/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/views/amazon_products/_form.html.erb -------------------------------------------------------------------------------- /app/views/amazon_products/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/views/amazon_products/edit.html.erb -------------------------------------------------------------------------------- /app/views/amazon_products/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/views/amazon_products/index.html.erb -------------------------------------------------------------------------------- /app/views/amazon_products/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/views/amazon_products/show.html.erb -------------------------------------------------------------------------------- /app/views/api/v1/amazon_products/_amazon_product.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/views/api/v1/amazon_products/_amazon_product.json.jbuilder -------------------------------------------------------------------------------- /app/views/api/v1/amazon_products/index.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/views/api/v1/amazon_products/index.json.jbuilder -------------------------------------------------------------------------------- /app/views/api/v1/charitable_organizations/_charitable_organization.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/views/api/v1/charitable_organizations/_charitable_organization.json.jbuilder -------------------------------------------------------------------------------- /app/views/api/v1/charitable_organizations/index.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/views/api/v1/charitable_organizations/index.json.jbuilder -------------------------------------------------------------------------------- /app/views/api/v1/connect/markers/index.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/views/api/v1/connect/markers/index.json.jbuilder -------------------------------------------------------------------------------- /app/views/api/v1/connect/markers/show.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/views/api/v1/connect/markers/show.json.jbuilder -------------------------------------------------------------------------------- /app/views/api/v1/distribution_points/_distribution_point.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/views/api/v1/distribution_points/_distribution_point.json.jbuilder -------------------------------------------------------------------------------- /app/views/api/v1/distribution_points/geo.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/views/api/v1/distribution_points/geo.json.jbuilder -------------------------------------------------------------------------------- /app/views/api/v1/distribution_points/index.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/views/api/v1/distribution_points/index.json.jbuilder -------------------------------------------------------------------------------- /app/views/api/v1/distribution_points/outdated.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/views/api/v1/distribution_points/outdated.json.jbuilder -------------------------------------------------------------------------------- /app/views/api/v1/needs/_need.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/views/api/v1/needs/_need.json.jbuilder -------------------------------------------------------------------------------- /app/views/api/v1/needs/index.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/views/api/v1/needs/index.json.jbuilder -------------------------------------------------------------------------------- /app/views/api/v1/needs/show.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/views/api/v1/needs/show.json.jbuilder -------------------------------------------------------------------------------- /app/views/api/v1/shelters/_shelter.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/views/api/v1/shelters/_shelter.json.jbuilder -------------------------------------------------------------------------------- /app/views/api/v1/shelters/geo.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/views/api/v1/shelters/geo.json.jbuilder -------------------------------------------------------------------------------- /app/views/api/v1/shelters/index.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/views/api/v1/shelters/index.json.jbuilder -------------------------------------------------------------------------------- /app/views/api/v1/shelters/outdated.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/views/api/v1/shelters/outdated.json.jbuilder -------------------------------------------------------------------------------- /app/views/api/v2/locations/_location.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/views/api/v2/locations/_location.json.jbuilder -------------------------------------------------------------------------------- /app/views/api/v2/locations/help.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/views/api/v2/locations/help.json.jbuilder -------------------------------------------------------------------------------- /app/views/api/v2/locations/index.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/views/api/v2/locations/index.json.jbuilder -------------------------------------------------------------------------------- /app/views/api/v2/locations/routes.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/views/api/v2/locations/routes.json.jbuilder -------------------------------------------------------------------------------- /app/views/charitable_organizations/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/views/charitable_organizations/_form.html.erb -------------------------------------------------------------------------------- /app/views/charitable_organizations/drafts.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/views/charitable_organizations/drafts.html.erb -------------------------------------------------------------------------------- /app/views/charitable_organizations/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/views/charitable_organizations/edit.html.erb -------------------------------------------------------------------------------- /app/views/charitable_organizations/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/views/charitable_organizations/index.html.erb -------------------------------------------------------------------------------- /app/views/charitable_organizations/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/views/charitable_organizations/new.html.erb -------------------------------------------------------------------------------- /app/views/charitable_organizations/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/views/charitable_organizations/show.html.erb -------------------------------------------------------------------------------- /app/views/distribution_points/_distribution_point.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/views/distribution_points/_distribution_point.html.erb -------------------------------------------------------------------------------- /app/views/distribution_points/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/views/distribution_points/_form.html.erb -------------------------------------------------------------------------------- /app/views/distribution_points/archived.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/views/distribution_points/archived.html.erb -------------------------------------------------------------------------------- /app/views/distribution_points/drafts.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/views/distribution_points/drafts.html.erb -------------------------------------------------------------------------------- /app/views/distribution_points/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/views/distribution_points/edit.html.erb -------------------------------------------------------------------------------- /app/views/distribution_points/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/views/distribution_points/index.html.erb -------------------------------------------------------------------------------- /app/views/distribution_points/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/views/distribution_points/new.html.erb -------------------------------------------------------------------------------- /app/views/distribution_points/outdated.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/views/distribution_points/outdated.html.erb -------------------------------------------------------------------------------- /app/views/distribution_points/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/views/distribution_points/show.html.erb -------------------------------------------------------------------------------- /app/views/drafts/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/views/drafts/show.html.erb -------------------------------------------------------------------------------- /app/views/layouts/_menu.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/views/layouts/_menu.html.erb -------------------------------------------------------------------------------- /app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /app/views/layouts/locations.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/views/layouts/locations.html.erb -------------------------------------------------------------------------------- /app/views/layouts/mailer.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/views/layouts/mailer.html.erb -------------------------------------------------------------------------------- /app/views/layouts/mailer.text.erb: -------------------------------------------------------------------------------- 1 | <%= yield %> 2 | -------------------------------------------------------------------------------- /app/views/location_drafts/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/views/location_drafts/show.html.erb -------------------------------------------------------------------------------- /app/views/locations/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/views/locations/_form.html.erb -------------------------------------------------------------------------------- /app/views/locations/drafts.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/views/locations/drafts.html.erb -------------------------------------------------------------------------------- /app/views/locations/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/views/locations/edit.html.erb -------------------------------------------------------------------------------- /app/views/locations/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/views/locations/index.html.erb -------------------------------------------------------------------------------- /app/views/locations/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/views/locations/new.html.erb -------------------------------------------------------------------------------- /app/views/locations/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/views/locations/show.html.erb -------------------------------------------------------------------------------- /app/views/needs/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/views/needs/_form.html.erb -------------------------------------------------------------------------------- /app/views/needs/drafts.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/views/needs/drafts.html.erb -------------------------------------------------------------------------------- /app/views/needs/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/views/needs/edit.html.erb -------------------------------------------------------------------------------- /app/views/needs/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/views/needs/index.html.erb -------------------------------------------------------------------------------- /app/views/needs/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/views/needs/new.html.erb -------------------------------------------------------------------------------- /app/views/needs/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/views/needs/show.html.erb -------------------------------------------------------------------------------- /app/views/organizations/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/views/organizations/show.html.erb -------------------------------------------------------------------------------- /app/views/pages/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/views/pages/_form.html.erb -------------------------------------------------------------------------------- /app/views/pages/_page.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/views/pages/_page.html.erb -------------------------------------------------------------------------------- /app/views/pages/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/views/pages/edit.html.erb -------------------------------------------------------------------------------- /app/views/pages/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/views/pages/index.html.erb -------------------------------------------------------------------------------- /app/views/pages/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/views/pages/new.html.erb -------------------------------------------------------------------------------- /app/views/shared/_drafts_table.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/views/shared/_drafts_table.html.erb -------------------------------------------------------------------------------- /app/views/shared/_show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/views/shared/_show.html.erb -------------------------------------------------------------------------------- /app/views/shared/_table.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/views/shared/_table.html.erb -------------------------------------------------------------------------------- /app/views/shelters/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/views/shelters/_form.html.erb -------------------------------------------------------------------------------- /app/views/shelters/_shelter.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/views/shelters/_shelter.html.erb -------------------------------------------------------------------------------- /app/views/shelters/archived.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/views/shelters/archived.html.erb -------------------------------------------------------------------------------- /app/views/shelters/drafts.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/views/shelters/drafts.html.erb -------------------------------------------------------------------------------- /app/views/shelters/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/views/shelters/edit.html.erb -------------------------------------------------------------------------------- /app/views/shelters/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/views/shelters/index.html.erb -------------------------------------------------------------------------------- /app/views/shelters/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/views/shelters/new.html.erb -------------------------------------------------------------------------------- /app/views/shelters/outdated.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/views/shelters/outdated.html.erb -------------------------------------------------------------------------------- /app/views/shelters/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/views/shelters/show.html.erb -------------------------------------------------------------------------------- /app/views/splash/index.html.erb: -------------------------------------------------------------------------------- 1 | <%= render @page %> 2 | -------------------------------------------------------------------------------- /app/views/trash/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/views/trash/index.html.erb -------------------------------------------------------------------------------- /app/views/trash/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/views/trash/show.html.erb -------------------------------------------------------------------------------- /app/views/users/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/views/users/index.html.erb -------------------------------------------------------------------------------- /app/views/users/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/views/users/show.html.erb -------------------------------------------------------------------------------- /app/views/users/update.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/app/views/users/update.html.erb -------------------------------------------------------------------------------- /bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/bin/bundle -------------------------------------------------------------------------------- /bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/bin/rails -------------------------------------------------------------------------------- /bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/bin/rake -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/bin/setup -------------------------------------------------------------------------------- /bin/spring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/bin/spring -------------------------------------------------------------------------------- /bin/update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/bin/update -------------------------------------------------------------------------------- /bin/yarn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/bin/yarn -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/config.ru -------------------------------------------------------------------------------- /config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/config/application.rb -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/config/boot.rb -------------------------------------------------------------------------------- /config/cable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/config/cable.yml -------------------------------------------------------------------------------- /config/connect_categories.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/config/connect_categories.yml -------------------------------------------------------------------------------- /config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/config/database.yml -------------------------------------------------------------------------------- /config/database.yml.docker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/config/database.yml.docker -------------------------------------------------------------------------------- /config/database.yml.travis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/config/database.yml.travis -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/config/environment.rb -------------------------------------------------------------------------------- /config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/config/environments/development.rb -------------------------------------------------------------------------------- /config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/config/environments/production.rb -------------------------------------------------------------------------------- /config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/config/environments/test.rb -------------------------------------------------------------------------------- /config/initializers/application_controller_renderer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/config/initializers/application_controller_renderer.rb -------------------------------------------------------------------------------- /config/initializers/assets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/config/initializers/assets.rb -------------------------------------------------------------------------------- /config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /config/initializers/cookies_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/config/initializers/cookies_serializer.rb -------------------------------------------------------------------------------- /config/initializers/devise.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/config/initializers/devise.rb -------------------------------------------------------------------------------- /config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/config/initializers/filter_parameter_logging.rb -------------------------------------------------------------------------------- /config/initializers/geocoder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/config/initializers/geocoder.rb -------------------------------------------------------------------------------- /config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/config/initializers/inflections.rb -------------------------------------------------------------------------------- /config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /config/initializers/simple_form.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/config/initializers/simple_form.rb -------------------------------------------------------------------------------- /config/initializers/traffic_cop.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/config/initializers/traffic_cop.rb -------------------------------------------------------------------------------- /config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /config/locales/devise.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/config/locales/devise.en.yml -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/config/locales/en.yml -------------------------------------------------------------------------------- /config/locales/simple_form.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/config/locales/simple_form.en.yml -------------------------------------------------------------------------------- /config/puma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/config/puma.rb -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/config/routes.rb -------------------------------------------------------------------------------- /config/secrets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/config/secrets.yml -------------------------------------------------------------------------------- /config/spring.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/config/spring.rb -------------------------------------------------------------------------------- /db/migrate/20170831193310_create_shelters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/db/migrate/20170831193310_create_shelters.rb -------------------------------------------------------------------------------- /db/migrate/20170831193314_create_needs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/db/migrate/20170831193314_create_needs.rb -------------------------------------------------------------------------------- /db/migrate/20170831220720_change_lat_long_to_floats.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/db/migrate/20170831220720_change_lat_long_to_floats.rb -------------------------------------------------------------------------------- /db/migrate/20170901185804_add_update_draft_table.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/db/migrate/20170901185804_add_update_draft_table.rb -------------------------------------------------------------------------------- /db/migrate/20170901194923_devise_create_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/db/migrate/20170901194923_devise_create_users.rb -------------------------------------------------------------------------------- /db/migrate/20170901201514_create_amazon_products.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/db/migrate/20170901201514_create_amazon_products.rb -------------------------------------------------------------------------------- /db/migrate/20170901224459_add_accept_deny_draft.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/db/migrate/20170901224459_add_accept_deny_draft.rb -------------------------------------------------------------------------------- /db/migrate/20170902123713_add_disabled_to_amazon_products.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/db/migrate/20170902123713_add_disabled_to_amazon_products.rb -------------------------------------------------------------------------------- /db/migrate/20170902140452_create_ignored_amazon_product_needs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/db/migrate/20170902140452_create_ignored_amazon_product_needs.rb -------------------------------------------------------------------------------- /db/migrate/20170902203116_add_archive_to_need.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/db/migrate/20170902203116_add_archive_to_need.rb -------------------------------------------------------------------------------- /db/migrate/20170902213139_create_mucked_homes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/db/migrate/20170902213139_create_mucked_homes.rb -------------------------------------------------------------------------------- /db/migrate/20170902222739_create_volunteers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/db/migrate/20170902222739_create_volunteers.rb -------------------------------------------------------------------------------- /db/migrate/20170903113333_create_connect_markers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/db/migrate/20170903113333_create_connect_markers.rb -------------------------------------------------------------------------------- /db/migrate/20170903230413_create_charitable_organizations.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/db/migrate/20170903230413_create_charitable_organizations.rb -------------------------------------------------------------------------------- /db/migrate/20170903231428_add_archive_to_charitable_organizations.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/db/migrate/20170903231428_add_archive_to_charitable_organizations.rb -------------------------------------------------------------------------------- /db/migrate/20170904025322_add_email_to_connect_markers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/db/migrate/20170904025322_add_email_to_connect_markers.rb -------------------------------------------------------------------------------- /db/migrate/20170904165336_add_product_categories_to_amazon_products.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/db/migrate/20170904165336_add_product_categories_to_amazon_products.rb -------------------------------------------------------------------------------- /db/migrate/20170905114546_add_data_to_markers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/db/migrate/20170905114546_add_data_to_markers.rb -------------------------------------------------------------------------------- /db/migrate/20170905201043_create_pages.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/db/migrate/20170905201043_create_pages.rb -------------------------------------------------------------------------------- /db/migrate/20170906160409_add_amazon_price_to_products.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/db/migrate/20170906160409_add_amazon_price_to_products.rb -------------------------------------------------------------------------------- /db/migrate/20170907032253_add_fields_to_shelter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/db/migrate/20170907032253_add_fields_to_shelter.rb -------------------------------------------------------------------------------- /db/migrate/20170907070934_add_location_table.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/db/migrate/20170907070934_add_location_table.rb -------------------------------------------------------------------------------- /db/migrate/20170907152426_add_device_uuid_connect_markers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/db/migrate/20170907152426_add_device_uuid_connect_markers.rb -------------------------------------------------------------------------------- /db/migrate/20170908152859_update_category_on_connect_markers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/db/migrate/20170908152859_update_category_on_connect_markers.rb -------------------------------------------------------------------------------- /db/migrate/20170909061551_add_state_and_zip_to_shelter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/db/migrate/20170909061551_add_state_and_zip_to_shelter.rb -------------------------------------------------------------------------------- /db/migrate/20170909080422_add_special_needs_to_shelters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/db/migrate/20170909080422_add_special_needs_to_shelters.rb -------------------------------------------------------------------------------- /db/migrate/20170909082334_add_private_email_to_shelters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/db/migrate/20170909082334_add_private_email_to_shelters.rb -------------------------------------------------------------------------------- /db/migrate/20170909082743_backfill_special_needs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/db/migrate/20170909082743_backfill_special_needs.rb -------------------------------------------------------------------------------- /db/migrate/20170909174720_add_private_fields_to_shelters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/db/migrate/20170909174720_add_private_fields_to_shelters.rb -------------------------------------------------------------------------------- /db/migrate/20170909175503_add_allow_pets_to_shelter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/db/migrate/20170909175503_add_allow_pets_to_shelter.rb -------------------------------------------------------------------------------- /db/migrate/20170909193921_add_created_by_to_drafts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/db/migrate/20170909193921_add_created_by_to_drafts.rb -------------------------------------------------------------------------------- /db/migrate/20170910045633_add_unofficial_to_shelters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/db/migrate/20170910045633_add_unofficial_to_shelters.rb -------------------------------------------------------------------------------- /db/migrate/20180914132709_convert_accepting_to_enum.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/db/migrate/20180914132709_convert_accepting_to_enum.rb -------------------------------------------------------------------------------- /db/migrate/20180915035427_add_accessbility_text_field_to_shelters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/db/migrate/20180915035427_add_accessbility_text_field_to_shelters.rb -------------------------------------------------------------------------------- /db/migrate/20180919043949_create_distribution_points.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/db/migrate/20180919043949_create_distribution_points.rb -------------------------------------------------------------------------------- /db/migrate/20180925062606_rename_active_to_archived.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/db/migrate/20180925062606_rename_active_to_archived.rb -------------------------------------------------------------------------------- /db/migrate/20181013222410_create_trashes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/db/migrate/20181013222410_create_trashes.rb -------------------------------------------------------------------------------- /db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/db/seeds.rb -------------------------------------------------------------------------------- /db/seeds/amazon_products.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/db/seeds/amazon_products.json -------------------------------------------------------------------------------- /db/seeds/ignored_amazon_product_needs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/db/seeds/ignored_amazon_product_needs.json -------------------------------------------------------------------------------- /db/structure.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/db/structure.sql -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docker_entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/docker_entrypoint.sh -------------------------------------------------------------------------------- /lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/tasks/amazon.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/lib/tasks/amazon.rake -------------------------------------------------------------------------------- /lib/tasks/export.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/lib/tasks/export.rake -------------------------------------------------------------------------------- /lib/tasks/georecode.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/lib/tasks/georecode.rake -------------------------------------------------------------------------------- /lib/tasks/import.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/lib/tasks/import.rake -------------------------------------------------------------------------------- /lib/templates/erb/scaffold/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/lib/templates/erb/scaffold/_form.html.erb -------------------------------------------------------------------------------- /log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/package.json -------------------------------------------------------------------------------- /public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/public/404.html -------------------------------------------------------------------------------- /public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/public/422.html -------------------------------------------------------------------------------- /public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/public/500.html -------------------------------------------------------------------------------- /public/apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/apple-touch-icon.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/contributors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/public/contributors.html -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/images/readme/screenshot_create-service-account-key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/public/images/readme/screenshot_create-service-account-key.png -------------------------------------------------------------------------------- /public/images/readme/screenshot_enable_google_sheets_api.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/public/images/readme/screenshot_enable_google_sheets_api.png -------------------------------------------------------------------------------- /public/images/readme/screenshot_rails_server_run_test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/public/images/readme/screenshot_rails_server_run_test.png -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/public/robots.txt -------------------------------------------------------------------------------- /test/application_system_test_case.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/test/application_system_test_case.rb -------------------------------------------------------------------------------- /test/controllers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/controllers/amazon_products_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/test/controllers/amazon_products_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/api/v1/amazon_product_needs_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/test/controllers/api/v1/amazon_product_needs_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/api/v1/charitable_organizations_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/test/controllers/api/v1/charitable_organizations_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/api/v1/connect/categories_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/test/controllers/api/v1/connect/categories_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/api/v1/connect/markers_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/test/controllers/api/v1/connect/markers_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/api/v1/distribution_points_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/test/controllers/api/v1/distribution_points_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/api/v1/needs_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/test/controllers/api/v1/needs_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/api/v1/shelters_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/test/controllers/api/v1/shelters_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/charitable_organizations_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/test/controllers/charitable_organizations_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/connect/markers_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/test/controllers/connect/markers_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/distribution_points_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/test/controllers/distribution_points_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/drafts_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/test/controllers/drafts_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/location_drafts_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/test/controllers/location_drafts_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/locations_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/test/controllers/locations_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/needs_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/test/controllers/needs_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/pages_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/test/controllers/pages_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/shelters_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/test/controllers/shelters_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/trash_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/test/controllers/trash_controller_test.rb -------------------------------------------------------------------------------- /test/fixtures/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/amazon_products.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/test/fixtures/amazon_products.yml -------------------------------------------------------------------------------- /test/fixtures/charitable_organizations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/test/fixtures/charitable_organizations.yml -------------------------------------------------------------------------------- /test/fixtures/connect/markers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/test/fixtures/connect/markers.yml -------------------------------------------------------------------------------- /test/fixtures/distribution_points.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/test/fixtures/distribution_points.yml -------------------------------------------------------------------------------- /test/fixtures/drafts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/test/fixtures/drafts.yml -------------------------------------------------------------------------------- /test/fixtures/files/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/files/google.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/test/fixtures/files/google.geojson -------------------------------------------------------------------------------- /test/fixtures/locations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/test/fixtures/locations.yml -------------------------------------------------------------------------------- /test/fixtures/mucked_homes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/test/fixtures/mucked_homes.yml -------------------------------------------------------------------------------- /test/fixtures/needs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/test/fixtures/needs.yml -------------------------------------------------------------------------------- /test/fixtures/pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/test/fixtures/pages.yml -------------------------------------------------------------------------------- /test/fixtures/shelters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/test/fixtures/shelters.yml -------------------------------------------------------------------------------- /test/fixtures/trash.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/test/fixtures/trash.yml -------------------------------------------------------------------------------- /test/fixtures/users.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/test/fixtures/users.yml -------------------------------------------------------------------------------- /test/fixtures/volunteers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/test/fixtures/volunteers.yml -------------------------------------------------------------------------------- /test/helpers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/jobs/import_fema_shelters_job_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/test/jobs/import_fema_shelters_job_test.rb -------------------------------------------------------------------------------- /test/jobs/import_needs_job_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/test/jobs/import_needs_job_test.rb -------------------------------------------------------------------------------- /test/jobs/import_sheet_data_job_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/test/jobs/import_sheet_data_job_test.rb -------------------------------------------------------------------------------- /test/jobs/import_shelters_job_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/test/jobs/import_shelters_job_test.rb -------------------------------------------------------------------------------- /test/jobs/recode_geocoding_job_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/test/jobs/recode_geocoding_job_test.rb -------------------------------------------------------------------------------- /test/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/models/amazon_product_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/test/models/amazon_product_test.rb -------------------------------------------------------------------------------- /test/models/charitable_organization_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/test/models/charitable_organization_test.rb -------------------------------------------------------------------------------- /test/models/connect/marker_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/test/models/connect/marker_test.rb -------------------------------------------------------------------------------- /test/models/distribution_point_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/test/models/distribution_point_test.rb -------------------------------------------------------------------------------- /test/models/ignored_amazon_product_need_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/test/models/ignored_amazon_product_need_test.rb -------------------------------------------------------------------------------- /test/models/location_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/test/models/location_test.rb -------------------------------------------------------------------------------- /test/models/mucked_home_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/test/models/mucked_home_test.rb -------------------------------------------------------------------------------- /test/models/need_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/test/models/need_test.rb -------------------------------------------------------------------------------- /test/models/page_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/test/models/page_test.rb -------------------------------------------------------------------------------- /test/models/shelter_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/test/models/shelter_test.rb -------------------------------------------------------------------------------- /test/models/user_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/test/models/user_test.rb -------------------------------------------------------------------------------- /test/models/volunteer_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/test/models/volunteer_test.rb -------------------------------------------------------------------------------- /test/system/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/system/admin_searchings_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/test/system/admin_searchings_test.rb -------------------------------------------------------------------------------- /test/system/distribution_points_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/test/system/distribution_points_test.rb -------------------------------------------------------------------------------- /test/system/homepage_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/test/system/homepage_test.rb -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/test/test_helper.rb -------------------------------------------------------------------------------- /test/vcr_cassettes/amazon-missing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/test/vcr_cassettes/amazon-missing.yml -------------------------------------------------------------------------------- /test/vcr_cassettes/amazon.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/test/vcr_cassettes/amazon.yml -------------------------------------------------------------------------------- /test/vcr_cassettes/fema_shelters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/test/vcr_cassettes/fema_shelters.yml -------------------------------------------------------------------------------- /test/vcr_cassettes/needs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/test/vcr_cassettes/needs.yml -------------------------------------------------------------------------------- /test/vcr_cassettes/shelters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hurricane-response/florence-api/HEAD/test/vcr_cassettes/shelters.yml -------------------------------------------------------------------------------- /tmp/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/.keep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------