├── .dockerignore ├── .editorconfig ├── .github ├── app-demo.png ├── dependabot.yml ├── subscription_demo.gif └── workflows │ └── ci.yml ├── .gitignore ├── .gitmodules ├── .kamal ├── hooks │ ├── docker-setup.sample │ ├── post-deploy.sample │ ├── post-proxy-reboot.sample │ ├── pre-build.sample │ ├── pre-connect.sample │ ├── pre-deploy.sample │ └── pre-proxy-reboot.sample └── secrets ├── .overcommit.yml ├── .rubocop.yml ├── .ruby-version ├── Dockerfile ├── Dockerfile.browserless ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── Procfile ├── Procfile.dev ├── README.md ├── Rakefile ├── app ├── .DS_Store ├── assets │ ├── builds │ │ └── .keep │ ├── images │ │ ├── example_history.png │ │ ├── example_profile.png │ │ ├── example_timeline.png │ │ ├── loading.gif │ │ ├── loading_v2.gif │ │ ├── mal_logo.png │ │ ├── no_activity.png │ │ ├── not_found.gif │ │ └── sorry.gif │ └── stylesheets │ │ ├── application.css │ │ ├── application.scss │ │ ├── calendar.scss │ │ └── users.scss ├── channels │ └── application_cable │ │ ├── channel.rb │ │ └── connection.rb ├── clients │ ├── application_client.rb │ └── mal │ │ └── api_client.rb ├── components │ ├── activity_component.html.erb │ ├── activity_component.rb │ ├── calendar_component.html.erb │ ├── calendar_component.rb │ ├── notification │ │ ├── component.html.erb │ │ └── component.rb │ ├── timeline_component.html.erb │ ├── timeline_component.rb │ ├── years_menu_component.html.erb │ └── years_menu_component.rb ├── controllers │ ├── application_controller.rb │ ├── calendars_controller.rb │ ├── concerns │ │ ├── authentication.rb │ │ └── user_scoped.rb │ ├── health_check_controller.rb │ ├── images │ │ └── calendars_controller.rb │ ├── latency_check_controller.rb │ ├── monitoring_controller.rb │ ├── sessions_controller.rb │ ├── timelines_controller.rb │ └── users_controller.rb ├── helpers │ ├── application_helper.rb │ ├── sessions_helper.rb │ └── timelines_helper.rb ├── javascript │ ├── .DS_Store │ ├── analytics.js │ ├── application.js │ └── controllers │ │ ├── application.js │ │ ├── clipboard_controller.js │ │ ├── index.js │ │ ├── notification_controller.js │ │ └── tracker_controller.js ├── jobs │ ├── application_job.rb │ └── user │ │ ├── periodic_mal_sync_job.rb │ │ └── schedule_periodic_mal_sync_job.rb ├── mailer │ └── application_mailer.rb ├── models │ ├── access_token.rb │ ├── activity.rb │ ├── application_record.rb │ ├── concerns │ │ └── purgeable.rb │ ├── crawling_log_entry.rb │ ├── crawling_log_entry_visited_page.rb │ ├── current.rb │ ├── entry.rb │ ├── item.rb │ ├── ops_record.rb │ ├── user.rb │ └── user │ │ ├── activities_generator.rb │ │ ├── authenticatable.rb │ │ ├── calendar_imageable.rb │ │ ├── calendar_images.rb │ │ ├── calendars.rb │ │ ├── calendars │ │ ├── calendar.rb │ │ └── calendar_list.rb │ │ ├── deactivatable.rb │ │ ├── geolocatable.rb │ │ ├── incinerable.rb │ │ ├── incineration.rb │ │ ├── mal_syncable.rb │ │ ├── mal_syncable │ │ ├── crawler_pipeline.rb │ │ └── scraped_data.rb │ │ └── mergeable.rb └── views │ ├── application │ ├── about.en.html.erb │ ├── faq.en.html.erb │ ├── internal_error.html.erb │ └── not_found.html.erb │ ├── calendars │ ├── _calendar.html.erb │ ├── _loading.html.erb │ └── show.html.erb │ ├── layouts │ └── application.html.erb │ ├── sessions │ └── index.html.erb │ ├── shared │ ├── _footer.html.erb │ ├── _ganalytics.html.erb │ └── _header.html.erb │ ├── timelines │ ├── _loading.html.erb │ ├── _timeline.html.erb │ └── show.html.erb │ └── users │ ├── _bb_code.html.erb │ ├── _side_menu.html.erb │ ├── _user.html.erb │ ├── _waiting_mal_sync.html.erb │ ├── _years_side_menu.html.erb │ ├── show.html.erb │ └── signature.html.erb ├── bin ├── brakeman ├── bundle ├── ci ├── dev ├── docker-entrypoint ├── importmap ├── jobs ├── kamal ├── rails ├── rake ├── rubocop ├── setup ├── start-app └── thrust ├── config.ru ├── config ├── analytics.yml ├── application.rb ├── blazer.yml ├── boot.rb ├── brakeman.ignore ├── cable.yml ├── ci.rb ├── crawler.yml ├── credentials │ ├── development.key │ ├── development.yml.enc │ ├── production.yml.enc │ ├── test.key │ └── test.yml.enc ├── database.yml ├── deploy.yml ├── environment.rb ├── environments │ ├── development.rb │ ├── production.rb │ └── test.rb ├── geocoder.yml ├── importmap.rb ├── initializers │ ├── active_storage.rb │ ├── active_support.rb │ ├── assets.rb │ ├── balzer.rb │ ├── content_security_policy.rb │ ├── enable_yjit.rb │ ├── error_subscriber.rb │ ├── fast_gettext.rb │ ├── filter_parameter_logging.rb │ ├── geocoder.rb │ ├── inflections.rb │ ├── lograge.rb │ ├── mission_control_jobs.rb │ ├── new_framework_defaults_8_0.rb │ ├── new_framework_defaults_8_1.rb │ ├── permissions_policy.rb │ ├── solid_errors.rb │ ├── solid_queue.rb │ ├── turbo.rb │ ├── types.rb │ └── wrap_parameters.rb ├── locales │ ├── app.pot │ ├── en.yml │ └── en │ │ ├── app.edit.po │ │ ├── app.po │ │ └── app.po.time_stamp ├── mal_api.yml ├── puma.rb ├── queue.yml ├── recurring.yml ├── redis.conf ├── routes.rb └── storage.yml ├── db ├── cache │ └── migrate │ │ ├── 20240326144423_create_solid_cache_entries.solid_cache.rb │ │ ├── 20240326144424_add_key_hash_and_byte_size_to_solid_cache_entries.solid_cache.rb │ │ ├── 20240326144425_add_key_hash_and_byte_size_indexes_and_null_constraints_to_solid_cache_entries.solid_cache.rb │ │ └── 20240326144426_remove_key_index_from_solid_cache_entries.solid_cache.rb ├── cache_schema.rb ├── migrate │ ├── 20240101050110_add_crawler_performed_at_to_users.rb │ ├── 20240103020927_drop_crawling_log_entries.rb │ ├── 20240121113321_add_better_index_to_entries.rb │ ├── 20240511112449_install_blazer.rb │ ├── 20240511191733_create_backups.rb │ ├── 20241001153154_add_service_name_to_active_storage_blobs.active_storage.rb │ ├── 20241001153155_create_active_storage_variant_records.active_storage.rb │ └── 20241001153156_remove_not_null_on_active_storage_blobs_checksum.active_storage.rb ├── ops │ └── migrate │ │ ├── 20240102174150_move_crawling_log_entries.rb │ │ ├── 20240221112935_remove_crawling_log_entries.rb │ │ ├── 20240221120259_rework_crawling_log_entries.rb │ │ ├── 20240221120624_rework_crawling_log_entries_data.rb │ │ ├── 20240330211559_create_solid_errors_tables.rb │ │ ├── 20240531095352_add_solid_errors_purge_attributes.rb │ │ ├── 20240531100527_upgrade_solid_errors.rb │ │ ├── 20240713161618_create_solid_cable_message.solid_cable.rb │ │ └── 20240713161619_index_channels.solid_cable.rb ├── ops_schema.rb ├── queue_schema.rb ├── schema.rb └── seeds.rb ├── docker-compose.yaml ├── lib ├── browser_session.rb ├── http_client.rb ├── http_client │ ├── request_proxy.rb │ └── response_wrapper.rb ├── instrumentation.rb ├── mal.rb ├── mal │ ├── errors.rb │ ├── parsers │ │ ├── helpers.rb │ │ ├── history.rb │ │ └── profile.rb │ ├── urls.rb │ └── user_crawler.rb ├── solid_queue │ └── helper.rb └── tasks │ ├── db.rake │ ├── deployments.rake │ └── solid_queue.rake ├── log └── .keep ├── public ├── 400.html ├── 404.html ├── 406-unsupported-browser.html ├── 422.html ├── 500.html ├── favicon.ico ├── icon.png ├── icon.svg └── robots.txt ├── storage └── .keep ├── test ├── application_system_test_case.rb ├── cassettes │ ├── subscriptions_test │ │ ├── test_redirects_to_user_profile_when_username_is_valid_but_not_subscribed_yet.yml │ │ ├── test_shows_a_hint_when_subscribing_a_user_without_entries.yml │ │ └── test_shows_profile_not_found_notification_when_submitting_invalid_username.yml │ └── user_crawler │ │ ├── no_history.yml │ │ ├── profile_not_found.yml │ │ ├── user_restricted_history.yml │ │ ├── user_with_complete_information.yml │ │ ├── user_with_many_entries.yml │ │ ├── user_with_no_location.yml │ │ └── user_with_non_valid_country_location.yml ├── components │ ├── activity_component_test.rb │ ├── calendar_component_test.rb │ └── timeline_component_test.rb ├── controllers │ ├── health_check_controller_test.rb │ ├── timelines_controller_test.rb │ └── users_controller_test.rb ├── fixtures │ ├── activities.yml │ ├── entries.yml │ ├── files │ │ └── user_signature.png │ ├── items.yml │ └── users.yml ├── jobs │ └── user │ │ ├── periodic_mal_sync_job_test.rb │ │ └── schedule_periodic_mal_sync_test.rb ├── lib │ └── mal │ │ ├── urls_test.rb │ │ └── user_crawler_test.rb ├── models │ ├── activity_test.rb │ ├── concerns │ │ └── purgeable_test.rb │ └── user │ │ ├── activities_test.rb │ │ ├── calendar_imageable_test.rb │ │ ├── calendars_test.rb │ │ ├── deactivatable_test.rb │ │ ├── incinerable_test.rb │ │ └── mal_syncable │ │ └── crawler_pipeline_test.rb ├── support │ └── vcr.rb ├── system │ ├── about_test.rb │ ├── faq_test.rb │ └── users_test.rb ├── test_helper.rb └── views │ └── user │ └── years_side_menu_partial_test.rb ├── tmp └── .keep └── vendor ├── assets └── stylesheets │ └── bulma-timeline │ ├── .babelrc │ ├── .eslintrc.json │ ├── .gitignore │ ├── .npmrc │ ├── .travis.yml │ ├── Gemfile │ ├── Gemfile.lock │ ├── LICENSE │ ├── README.md │ ├── _config.yml │ ├── bower.json │ ├── bulma-timeline │ ├── .babelrc │ ├── .eslintrc.json │ ├── .gitignore │ ├── .npmrc │ ├── .travis.yml │ ├── Gemfile │ ├── Gemfile.lock │ ├── LICENSE │ ├── README.md │ ├── _config.yml │ ├── bower.json │ ├── dependencies-injector.js │ ├── dist │ │ └── css │ │ │ ├── bulma-timeline.min.css │ │ │ └── bulma-timeline.sass │ ├── gulpfile.js │ ├── package-lock.json │ ├── package.json │ └── src │ │ └── sass │ │ └── index.sass │ ├── dependencies-injector.js │ ├── dist │ └── css │ │ ├── bulma-timeline.min.css │ │ └── bulma-timeline.sass │ ├── gulpfile.js │ ├── package-lock.json │ ├── package.json │ └── src │ └── sass │ └── index.sass └── javascript └── .keep /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/.dockerignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/app-demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/.github/app-demo.png -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/subscription_demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/.github/subscription_demo.gif -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/.gitmodules -------------------------------------------------------------------------------- /.kamal/hooks/docker-setup.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/.kamal/hooks/docker-setup.sample -------------------------------------------------------------------------------- /.kamal/hooks/post-deploy.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/.kamal/hooks/post-deploy.sample -------------------------------------------------------------------------------- /.kamal/hooks/post-proxy-reboot.sample: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | echo "Rebooted kamal-proxy on $KAMAL_HOSTS" 4 | -------------------------------------------------------------------------------- /.kamal/hooks/pre-build.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/.kamal/hooks/pre-build.sample -------------------------------------------------------------------------------- /.kamal/hooks/pre-connect.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/.kamal/hooks/pre-connect.sample -------------------------------------------------------------------------------- /.kamal/hooks/pre-deploy.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/.kamal/hooks/pre-deploy.sample -------------------------------------------------------------------------------- /.kamal/hooks/pre-proxy-reboot.sample: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | echo "Rebooting kamal-proxy on $KAMAL_HOSTS..." 4 | -------------------------------------------------------------------------------- /.kamal/secrets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/.kamal/secrets -------------------------------------------------------------------------------- /.overcommit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/.overcommit.yml -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 3.4.7 2 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/Dockerfile -------------------------------------------------------------------------------- /Dockerfile.browserless: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/Dockerfile.browserless -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/Procfile -------------------------------------------------------------------------------- /Procfile.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/Procfile.dev -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/Rakefile -------------------------------------------------------------------------------- /app/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/app/.DS_Store -------------------------------------------------------------------------------- /app/assets/builds/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/images/example_history.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/app/assets/images/example_history.png -------------------------------------------------------------------------------- /app/assets/images/example_profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/app/assets/images/example_profile.png -------------------------------------------------------------------------------- /app/assets/images/example_timeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/app/assets/images/example_timeline.png -------------------------------------------------------------------------------- /app/assets/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/app/assets/images/loading.gif -------------------------------------------------------------------------------- /app/assets/images/loading_v2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/app/assets/images/loading_v2.gif -------------------------------------------------------------------------------- /app/assets/images/mal_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/app/assets/images/mal_logo.png -------------------------------------------------------------------------------- /app/assets/images/no_activity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/app/assets/images/no_activity.png -------------------------------------------------------------------------------- /app/assets/images/not_found.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/app/assets/images/not_found.gif -------------------------------------------------------------------------------- /app/assets/images/sorry.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/app/assets/images/sorry.gif -------------------------------------------------------------------------------- /app/assets/stylesheets/application.css: -------------------------------------------------------------------------------- 1 | /* Application styles */ 2 | -------------------------------------------------------------------------------- /app/assets/stylesheets/application.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/app/assets/stylesheets/application.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/calendar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/app/assets/stylesheets/calendar.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/users.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/app/assets/stylesheets/users.scss -------------------------------------------------------------------------------- /app/channels/application_cable/channel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/app/channels/application_cable/channel.rb -------------------------------------------------------------------------------- /app/channels/application_cable/connection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/app/channels/application_cable/connection.rb -------------------------------------------------------------------------------- /app/clients/application_client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/app/clients/application_client.rb -------------------------------------------------------------------------------- /app/clients/mal/api_client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/app/clients/mal/api_client.rb -------------------------------------------------------------------------------- /app/components/activity_component.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/app/components/activity_component.html.erb -------------------------------------------------------------------------------- /app/components/activity_component.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/app/components/activity_component.rb -------------------------------------------------------------------------------- /app/components/calendar_component.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/app/components/calendar_component.html.erb -------------------------------------------------------------------------------- /app/components/calendar_component.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/app/components/calendar_component.rb -------------------------------------------------------------------------------- /app/components/notification/component.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/app/components/notification/component.html.erb -------------------------------------------------------------------------------- /app/components/notification/component.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/app/components/notification/component.rb -------------------------------------------------------------------------------- /app/components/timeline_component.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/app/components/timeline_component.html.erb -------------------------------------------------------------------------------- /app/components/timeline_component.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/app/components/timeline_component.rb -------------------------------------------------------------------------------- /app/components/years_menu_component.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/app/components/years_menu_component.html.erb -------------------------------------------------------------------------------- /app/components/years_menu_component.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/app/components/years_menu_component.rb -------------------------------------------------------------------------------- /app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/calendars_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/app/controllers/calendars_controller.rb -------------------------------------------------------------------------------- /app/controllers/concerns/authentication.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/app/controllers/concerns/authentication.rb -------------------------------------------------------------------------------- /app/controllers/concerns/user_scoped.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/app/controllers/concerns/user_scoped.rb -------------------------------------------------------------------------------- /app/controllers/health_check_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/app/controllers/health_check_controller.rb -------------------------------------------------------------------------------- /app/controllers/images/calendars_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/app/controllers/images/calendars_controller.rb -------------------------------------------------------------------------------- /app/controllers/latency_check_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/app/controllers/latency_check_controller.rb -------------------------------------------------------------------------------- /app/controllers/monitoring_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/app/controllers/monitoring_controller.rb -------------------------------------------------------------------------------- /app/controllers/sessions_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/app/controllers/sessions_controller.rb -------------------------------------------------------------------------------- /app/controllers/timelines_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/app/controllers/timelines_controller.rb -------------------------------------------------------------------------------- /app/controllers/users_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/app/controllers/users_controller.rb -------------------------------------------------------------------------------- /app/helpers/application_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/app/helpers/application_helper.rb -------------------------------------------------------------------------------- /app/helpers/sessions_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/app/helpers/sessions_helper.rb -------------------------------------------------------------------------------- /app/helpers/timelines_helper.rb: -------------------------------------------------------------------------------- 1 | module TimelinesHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/javascript/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/app/javascript/.DS_Store -------------------------------------------------------------------------------- /app/javascript/analytics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/app/javascript/analytics.js -------------------------------------------------------------------------------- /app/javascript/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/app/javascript/application.js -------------------------------------------------------------------------------- /app/javascript/controllers/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/app/javascript/controllers/application.js -------------------------------------------------------------------------------- /app/javascript/controllers/clipboard_controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/app/javascript/controllers/clipboard_controller.js -------------------------------------------------------------------------------- /app/javascript/controllers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/app/javascript/controllers/index.js -------------------------------------------------------------------------------- /app/javascript/controllers/notification_controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/app/javascript/controllers/notification_controller.js -------------------------------------------------------------------------------- /app/javascript/controllers/tracker_controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/app/javascript/controllers/tracker_controller.js -------------------------------------------------------------------------------- /app/jobs/application_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/app/jobs/application_job.rb -------------------------------------------------------------------------------- /app/jobs/user/periodic_mal_sync_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/app/jobs/user/periodic_mal_sync_job.rb -------------------------------------------------------------------------------- /app/jobs/user/schedule_periodic_mal_sync_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/app/jobs/user/schedule_periodic_mal_sync_job.rb -------------------------------------------------------------------------------- /app/mailer/application_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/app/mailer/application_mailer.rb -------------------------------------------------------------------------------- /app/models/access_token.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/app/models/access_token.rb -------------------------------------------------------------------------------- /app/models/activity.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/app/models/activity.rb -------------------------------------------------------------------------------- /app/models/application_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/app/models/application_record.rb -------------------------------------------------------------------------------- /app/models/concerns/purgeable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/app/models/concerns/purgeable.rb -------------------------------------------------------------------------------- /app/models/crawling_log_entry.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/app/models/crawling_log_entry.rb -------------------------------------------------------------------------------- /app/models/crawling_log_entry_visited_page.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/app/models/crawling_log_entry_visited_page.rb -------------------------------------------------------------------------------- /app/models/current.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/app/models/current.rb -------------------------------------------------------------------------------- /app/models/entry.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/app/models/entry.rb -------------------------------------------------------------------------------- /app/models/item.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/app/models/item.rb -------------------------------------------------------------------------------- /app/models/ops_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/app/models/ops_record.rb -------------------------------------------------------------------------------- /app/models/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/app/models/user.rb -------------------------------------------------------------------------------- /app/models/user/activities_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/app/models/user/activities_generator.rb -------------------------------------------------------------------------------- /app/models/user/authenticatable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/app/models/user/authenticatable.rb -------------------------------------------------------------------------------- /app/models/user/calendar_imageable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/app/models/user/calendar_imageable.rb -------------------------------------------------------------------------------- /app/models/user/calendar_images.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/app/models/user/calendar_images.rb -------------------------------------------------------------------------------- /app/models/user/calendars.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/app/models/user/calendars.rb -------------------------------------------------------------------------------- /app/models/user/calendars/calendar.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/app/models/user/calendars/calendar.rb -------------------------------------------------------------------------------- /app/models/user/calendars/calendar_list.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/app/models/user/calendars/calendar_list.rb -------------------------------------------------------------------------------- /app/models/user/deactivatable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/app/models/user/deactivatable.rb -------------------------------------------------------------------------------- /app/models/user/geolocatable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/app/models/user/geolocatable.rb -------------------------------------------------------------------------------- /app/models/user/incinerable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/app/models/user/incinerable.rb -------------------------------------------------------------------------------- /app/models/user/incineration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/app/models/user/incineration.rb -------------------------------------------------------------------------------- /app/models/user/mal_syncable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/app/models/user/mal_syncable.rb -------------------------------------------------------------------------------- /app/models/user/mal_syncable/crawler_pipeline.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/app/models/user/mal_syncable/crawler_pipeline.rb -------------------------------------------------------------------------------- /app/models/user/mal_syncable/scraped_data.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/app/models/user/mal_syncable/scraped_data.rb -------------------------------------------------------------------------------- /app/models/user/mergeable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/app/models/user/mergeable.rb -------------------------------------------------------------------------------- /app/views/application/about.en.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/app/views/application/about.en.html.erb -------------------------------------------------------------------------------- /app/views/application/faq.en.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/app/views/application/faq.en.html.erb -------------------------------------------------------------------------------- /app/views/application/internal_error.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/app/views/application/internal_error.html.erb -------------------------------------------------------------------------------- /app/views/application/not_found.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/app/views/application/not_found.html.erb -------------------------------------------------------------------------------- /app/views/calendars/_calendar.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/app/views/calendars/_calendar.html.erb -------------------------------------------------------------------------------- /app/views/calendars/_loading.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/app/views/calendars/_loading.html.erb -------------------------------------------------------------------------------- /app/views/calendars/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/app/views/calendars/show.html.erb -------------------------------------------------------------------------------- /app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /app/views/sessions/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/app/views/sessions/index.html.erb -------------------------------------------------------------------------------- /app/views/shared/_footer.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/app/views/shared/_footer.html.erb -------------------------------------------------------------------------------- /app/views/shared/_ganalytics.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/app/views/shared/_ganalytics.html.erb -------------------------------------------------------------------------------- /app/views/shared/_header.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/app/views/shared/_header.html.erb -------------------------------------------------------------------------------- /app/views/timelines/_loading.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/app/views/timelines/_loading.html.erb -------------------------------------------------------------------------------- /app/views/timelines/_timeline.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/app/views/timelines/_timeline.html.erb -------------------------------------------------------------------------------- /app/views/timelines/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/app/views/timelines/show.html.erb -------------------------------------------------------------------------------- /app/views/users/_bb_code.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/app/views/users/_bb_code.html.erb -------------------------------------------------------------------------------- /app/views/users/_side_menu.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/app/views/users/_side_menu.html.erb -------------------------------------------------------------------------------- /app/views/users/_user.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/app/views/users/_user.html.erb -------------------------------------------------------------------------------- /app/views/users/_waiting_mal_sync.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/app/views/users/_waiting_mal_sync.html.erb -------------------------------------------------------------------------------- /app/views/users/_years_side_menu.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/app/views/users/_years_side_menu.html.erb -------------------------------------------------------------------------------- /app/views/users/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/app/views/users/show.html.erb -------------------------------------------------------------------------------- /app/views/users/signature.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/app/views/users/signature.html.erb -------------------------------------------------------------------------------- /bin/brakeman: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/bin/brakeman -------------------------------------------------------------------------------- /bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/bin/bundle -------------------------------------------------------------------------------- /bin/ci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/bin/ci -------------------------------------------------------------------------------- /bin/dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/bin/dev -------------------------------------------------------------------------------- /bin/docker-entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/bin/docker-entrypoint -------------------------------------------------------------------------------- /bin/importmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/bin/importmap -------------------------------------------------------------------------------- /bin/jobs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/bin/jobs -------------------------------------------------------------------------------- /bin/kamal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/bin/kamal -------------------------------------------------------------------------------- /bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/bin/rails -------------------------------------------------------------------------------- /bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/bin/rake -------------------------------------------------------------------------------- /bin/rubocop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/bin/rubocop -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/bin/setup -------------------------------------------------------------------------------- /bin/start-app: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/bin/start-app -------------------------------------------------------------------------------- /bin/thrust: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/bin/thrust -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/config.ru -------------------------------------------------------------------------------- /config/analytics.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/config/analytics.yml -------------------------------------------------------------------------------- /config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/config/application.rb -------------------------------------------------------------------------------- /config/blazer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/config/blazer.yml -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/config/boot.rb -------------------------------------------------------------------------------- /config/brakeman.ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/config/brakeman.ignore -------------------------------------------------------------------------------- /config/cable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/config/cable.yml -------------------------------------------------------------------------------- /config/ci.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/config/ci.rb -------------------------------------------------------------------------------- /config/crawler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/config/crawler.yml -------------------------------------------------------------------------------- /config/credentials/development.key: -------------------------------------------------------------------------------- 1 | 64703a1169113f113a141ab3e2edf008 -------------------------------------------------------------------------------- /config/credentials/development.yml.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/config/credentials/development.yml.enc -------------------------------------------------------------------------------- /config/credentials/production.yml.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/config/credentials/production.yml.enc -------------------------------------------------------------------------------- /config/credentials/test.key: -------------------------------------------------------------------------------- 1 | 8305ad0b8be5a054a1dc3d5f0006b01c -------------------------------------------------------------------------------- /config/credentials/test.yml.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/config/credentials/test.yml.enc -------------------------------------------------------------------------------- /config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/config/database.yml -------------------------------------------------------------------------------- /config/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/config/deploy.yml -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/config/environment.rb -------------------------------------------------------------------------------- /config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/config/environments/development.rb -------------------------------------------------------------------------------- /config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/config/environments/production.rb -------------------------------------------------------------------------------- /config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/config/environments/test.rb -------------------------------------------------------------------------------- /config/geocoder.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/config/geocoder.yml -------------------------------------------------------------------------------- /config/importmap.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/config/importmap.rb -------------------------------------------------------------------------------- /config/initializers/active_storage.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/config/initializers/active_storage.rb -------------------------------------------------------------------------------- /config/initializers/active_support.rb: -------------------------------------------------------------------------------- 1 | Time::DATE_FORMATS[:pretty] = "%-d %b %Y %H:%M %z" 2 | -------------------------------------------------------------------------------- /config/initializers/assets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/config/initializers/assets.rb -------------------------------------------------------------------------------- /config/initializers/balzer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/config/initializers/balzer.rb -------------------------------------------------------------------------------- /config/initializers/content_security_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/config/initializers/content_security_policy.rb -------------------------------------------------------------------------------- /config/initializers/enable_yjit.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/config/initializers/enable_yjit.rb -------------------------------------------------------------------------------- /config/initializers/error_subscriber.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/config/initializers/error_subscriber.rb -------------------------------------------------------------------------------- /config/initializers/fast_gettext.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/config/initializers/fast_gettext.rb -------------------------------------------------------------------------------- /config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/config/initializers/filter_parameter_logging.rb -------------------------------------------------------------------------------- /config/initializers/geocoder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/config/initializers/geocoder.rb -------------------------------------------------------------------------------- /config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/config/initializers/inflections.rb -------------------------------------------------------------------------------- /config/initializers/lograge.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/config/initializers/lograge.rb -------------------------------------------------------------------------------- /config/initializers/mission_control_jobs.rb: -------------------------------------------------------------------------------- 1 | if defined?(Rails::Console) 2 | require "irb" 3 | end 4 | -------------------------------------------------------------------------------- /config/initializers/new_framework_defaults_8_0.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/config/initializers/new_framework_defaults_8_0.rb -------------------------------------------------------------------------------- /config/initializers/new_framework_defaults_8_1.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/config/initializers/new_framework_defaults_8_1.rb -------------------------------------------------------------------------------- /config/initializers/permissions_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/config/initializers/permissions_policy.rb -------------------------------------------------------------------------------- /config/initializers/solid_errors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/config/initializers/solid_errors.rb -------------------------------------------------------------------------------- /config/initializers/solid_queue.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/config/initializers/solid_queue.rb -------------------------------------------------------------------------------- /config/initializers/turbo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/config/initializers/turbo.rb -------------------------------------------------------------------------------- /config/initializers/types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/config/initializers/types.rb -------------------------------------------------------------------------------- /config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /config/locales/app.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/config/locales/app.pot -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/config/locales/en.yml -------------------------------------------------------------------------------- /config/locales/en/app.edit.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/config/locales/en/app.edit.po -------------------------------------------------------------------------------- /config/locales/en/app.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/config/locales/en/app.po -------------------------------------------------------------------------------- /config/locales/en/app.po.time_stamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/mal_api.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/config/mal_api.yml -------------------------------------------------------------------------------- /config/puma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/config/puma.rb -------------------------------------------------------------------------------- /config/queue.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/config/queue.yml -------------------------------------------------------------------------------- /config/recurring.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/config/recurring.yml -------------------------------------------------------------------------------- /config/redis.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/config/redis.conf -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/config/routes.rb -------------------------------------------------------------------------------- /config/storage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/config/storage.yml -------------------------------------------------------------------------------- /db/cache/migrate/20240326144423_create_solid_cache_entries.solid_cache.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/db/cache/migrate/20240326144423_create_solid_cache_entries.solid_cache.rb -------------------------------------------------------------------------------- /db/cache/migrate/20240326144424_add_key_hash_and_byte_size_to_solid_cache_entries.solid_cache.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/db/cache/migrate/20240326144424_add_key_hash_and_byte_size_to_solid_cache_entries.solid_cache.rb -------------------------------------------------------------------------------- /db/cache/migrate/20240326144425_add_key_hash_and_byte_size_indexes_and_null_constraints_to_solid_cache_entries.solid_cache.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/db/cache/migrate/20240326144425_add_key_hash_and_byte_size_indexes_and_null_constraints_to_solid_cache_entries.solid_cache.rb -------------------------------------------------------------------------------- /db/cache/migrate/20240326144426_remove_key_index_from_solid_cache_entries.solid_cache.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/db/cache/migrate/20240326144426_remove_key_index_from_solid_cache_entries.solid_cache.rb -------------------------------------------------------------------------------- /db/cache_schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/db/cache_schema.rb -------------------------------------------------------------------------------- /db/migrate/20240101050110_add_crawler_performed_at_to_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/db/migrate/20240101050110_add_crawler_performed_at_to_users.rb -------------------------------------------------------------------------------- /db/migrate/20240103020927_drop_crawling_log_entries.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/db/migrate/20240103020927_drop_crawling_log_entries.rb -------------------------------------------------------------------------------- /db/migrate/20240121113321_add_better_index_to_entries.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/db/migrate/20240121113321_add_better_index_to_entries.rb -------------------------------------------------------------------------------- /db/migrate/20240511112449_install_blazer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/db/migrate/20240511112449_install_blazer.rb -------------------------------------------------------------------------------- /db/migrate/20240511191733_create_backups.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/db/migrate/20240511191733_create_backups.rb -------------------------------------------------------------------------------- /db/migrate/20241001153154_add_service_name_to_active_storage_blobs.active_storage.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/db/migrate/20241001153154_add_service_name_to_active_storage_blobs.active_storage.rb -------------------------------------------------------------------------------- /db/migrate/20241001153155_create_active_storage_variant_records.active_storage.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/db/migrate/20241001153155_create_active_storage_variant_records.active_storage.rb -------------------------------------------------------------------------------- /db/migrate/20241001153156_remove_not_null_on_active_storage_blobs_checksum.active_storage.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/db/migrate/20241001153156_remove_not_null_on_active_storage_blobs_checksum.active_storage.rb -------------------------------------------------------------------------------- /db/ops/migrate/20240102174150_move_crawling_log_entries.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/db/ops/migrate/20240102174150_move_crawling_log_entries.rb -------------------------------------------------------------------------------- /db/ops/migrate/20240221112935_remove_crawling_log_entries.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/db/ops/migrate/20240221112935_remove_crawling_log_entries.rb -------------------------------------------------------------------------------- /db/ops/migrate/20240221120259_rework_crawling_log_entries.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/db/ops/migrate/20240221120259_rework_crawling_log_entries.rb -------------------------------------------------------------------------------- /db/ops/migrate/20240221120624_rework_crawling_log_entries_data.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/db/ops/migrate/20240221120624_rework_crawling_log_entries_data.rb -------------------------------------------------------------------------------- /db/ops/migrate/20240330211559_create_solid_errors_tables.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/db/ops/migrate/20240330211559_create_solid_errors_tables.rb -------------------------------------------------------------------------------- /db/ops/migrate/20240531095352_add_solid_errors_purge_attributes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/db/ops/migrate/20240531095352_add_solid_errors_purge_attributes.rb -------------------------------------------------------------------------------- /db/ops/migrate/20240531100527_upgrade_solid_errors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/db/ops/migrate/20240531100527_upgrade_solid_errors.rb -------------------------------------------------------------------------------- /db/ops/migrate/20240713161618_create_solid_cable_message.solid_cable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/db/ops/migrate/20240713161618_create_solid_cable_message.solid_cable.rb -------------------------------------------------------------------------------- /db/ops/migrate/20240713161619_index_channels.solid_cable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/db/ops/migrate/20240713161619_index_channels.solid_cable.rb -------------------------------------------------------------------------------- /db/ops_schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/db/ops_schema.rb -------------------------------------------------------------------------------- /db/queue_schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/db/queue_schema.rb -------------------------------------------------------------------------------- /db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/db/schema.rb -------------------------------------------------------------------------------- /db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/db/seeds.rb -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/docker-compose.yaml -------------------------------------------------------------------------------- /lib/browser_session.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/lib/browser_session.rb -------------------------------------------------------------------------------- /lib/http_client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/lib/http_client.rb -------------------------------------------------------------------------------- /lib/http_client/request_proxy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/lib/http_client/request_proxy.rb -------------------------------------------------------------------------------- /lib/http_client/response_wrapper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/lib/http_client/response_wrapper.rb -------------------------------------------------------------------------------- /lib/instrumentation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/lib/instrumentation.rb -------------------------------------------------------------------------------- /lib/mal.rb: -------------------------------------------------------------------------------- 1 | module MAL 2 | HOST = "myanimelist.net".freeze 3 | MAXIMUM_HISTORY_DAYS = 21.days 4 | end 5 | -------------------------------------------------------------------------------- /lib/mal/errors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/lib/mal/errors.rb -------------------------------------------------------------------------------- /lib/mal/parsers/helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/lib/mal/parsers/helpers.rb -------------------------------------------------------------------------------- /lib/mal/parsers/history.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/lib/mal/parsers/history.rb -------------------------------------------------------------------------------- /lib/mal/parsers/profile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/lib/mal/parsers/profile.rb -------------------------------------------------------------------------------- /lib/mal/urls.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/lib/mal/urls.rb -------------------------------------------------------------------------------- /lib/mal/user_crawler.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/lib/mal/user_crawler.rb -------------------------------------------------------------------------------- /lib/solid_queue/helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/lib/solid_queue/helper.rb -------------------------------------------------------------------------------- /lib/tasks/db.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/lib/tasks/db.rake -------------------------------------------------------------------------------- /lib/tasks/deployments.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/lib/tasks/deployments.rake -------------------------------------------------------------------------------- /lib/tasks/solid_queue.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/lib/tasks/solid_queue.rake -------------------------------------------------------------------------------- /log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/400.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/public/400.html -------------------------------------------------------------------------------- /public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/public/404.html -------------------------------------------------------------------------------- /public/406-unsupported-browser.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/public/406-unsupported-browser.html -------------------------------------------------------------------------------- /public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/public/422.html -------------------------------------------------------------------------------- /public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/public/500.html -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/public/icon.png -------------------------------------------------------------------------------- /public/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/public/icon.svg -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/public/robots.txt -------------------------------------------------------------------------------- /storage/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/application_system_test_case.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/test/application_system_test_case.rb -------------------------------------------------------------------------------- /test/cassettes/subscriptions_test/test_redirects_to_user_profile_when_username_is_valid_but_not_subscribed_yet.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/test/cassettes/subscriptions_test/test_redirects_to_user_profile_when_username_is_valid_but_not_subscribed_yet.yml -------------------------------------------------------------------------------- /test/cassettes/subscriptions_test/test_shows_a_hint_when_subscribing_a_user_without_entries.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/test/cassettes/subscriptions_test/test_shows_a_hint_when_subscribing_a_user_without_entries.yml -------------------------------------------------------------------------------- /test/cassettes/subscriptions_test/test_shows_profile_not_found_notification_when_submitting_invalid_username.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/test/cassettes/subscriptions_test/test_shows_profile_not_found_notification_when_submitting_invalid_username.yml -------------------------------------------------------------------------------- /test/cassettes/user_crawler/no_history.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/test/cassettes/user_crawler/no_history.yml -------------------------------------------------------------------------------- /test/cassettes/user_crawler/profile_not_found.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/test/cassettes/user_crawler/profile_not_found.yml -------------------------------------------------------------------------------- /test/cassettes/user_crawler/user_restricted_history.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/test/cassettes/user_crawler/user_restricted_history.yml -------------------------------------------------------------------------------- /test/cassettes/user_crawler/user_with_complete_information.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/test/cassettes/user_crawler/user_with_complete_information.yml -------------------------------------------------------------------------------- /test/cassettes/user_crawler/user_with_many_entries.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/test/cassettes/user_crawler/user_with_many_entries.yml -------------------------------------------------------------------------------- /test/cassettes/user_crawler/user_with_no_location.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/test/cassettes/user_crawler/user_with_no_location.yml -------------------------------------------------------------------------------- /test/cassettes/user_crawler/user_with_non_valid_country_location.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/test/cassettes/user_crawler/user_with_non_valid_country_location.yml -------------------------------------------------------------------------------- /test/components/activity_component_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/test/components/activity_component_test.rb -------------------------------------------------------------------------------- /test/components/calendar_component_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/test/components/calendar_component_test.rb -------------------------------------------------------------------------------- /test/components/timeline_component_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/test/components/timeline_component_test.rb -------------------------------------------------------------------------------- /test/controllers/health_check_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/test/controllers/health_check_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/timelines_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/test/controllers/timelines_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/users_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/test/controllers/users_controller_test.rb -------------------------------------------------------------------------------- /test/fixtures/activities.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/entries.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/files/user_signature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/test/fixtures/files/user_signature.png -------------------------------------------------------------------------------- /test/fixtures/items.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/test/fixtures/items.yml -------------------------------------------------------------------------------- /test/fixtures/users.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/test/fixtures/users.yml -------------------------------------------------------------------------------- /test/jobs/user/periodic_mal_sync_job_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/test/jobs/user/periodic_mal_sync_job_test.rb -------------------------------------------------------------------------------- /test/jobs/user/schedule_periodic_mal_sync_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/test/jobs/user/schedule_periodic_mal_sync_test.rb -------------------------------------------------------------------------------- /test/lib/mal/urls_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/test/lib/mal/urls_test.rb -------------------------------------------------------------------------------- /test/lib/mal/user_crawler_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/test/lib/mal/user_crawler_test.rb -------------------------------------------------------------------------------- /test/models/activity_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/test/models/activity_test.rb -------------------------------------------------------------------------------- /test/models/concerns/purgeable_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/test/models/concerns/purgeable_test.rb -------------------------------------------------------------------------------- /test/models/user/activities_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/test/models/user/activities_test.rb -------------------------------------------------------------------------------- /test/models/user/calendar_imageable_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/test/models/user/calendar_imageable_test.rb -------------------------------------------------------------------------------- /test/models/user/calendars_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/test/models/user/calendars_test.rb -------------------------------------------------------------------------------- /test/models/user/deactivatable_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/test/models/user/deactivatable_test.rb -------------------------------------------------------------------------------- /test/models/user/incinerable_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/test/models/user/incinerable_test.rb -------------------------------------------------------------------------------- /test/models/user/mal_syncable/crawler_pipeline_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/test/models/user/mal_syncable/crawler_pipeline_test.rb -------------------------------------------------------------------------------- /test/support/vcr.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/test/support/vcr.rb -------------------------------------------------------------------------------- /test/system/about_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/test/system/about_test.rb -------------------------------------------------------------------------------- /test/system/faq_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/test/system/faq_test.rb -------------------------------------------------------------------------------- /test/system/users_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/test/system/users_test.rb -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/test/test_helper.rb -------------------------------------------------------------------------------- /test/views/user/years_side_menu_partial_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/test/views/user/years_side_menu_partial_test.rb -------------------------------------------------------------------------------- /tmp/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bulma-timeline/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/vendor/assets/stylesheets/bulma-timeline/.babelrc -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bulma-timeline/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/vendor/assets/stylesheets/bulma-timeline/.eslintrc.json -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bulma-timeline/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/vendor/assets/stylesheets/bulma-timeline/.gitignore -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bulma-timeline/.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/vendor/assets/stylesheets/bulma-timeline/.npmrc -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bulma-timeline/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/vendor/assets/stylesheets/bulma-timeline/.travis.yml -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bulma-timeline/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/vendor/assets/stylesheets/bulma-timeline/Gemfile -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bulma-timeline/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/vendor/assets/stylesheets/bulma-timeline/Gemfile.lock -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bulma-timeline/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/vendor/assets/stylesheets/bulma-timeline/LICENSE -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bulma-timeline/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/vendor/assets/stylesheets/bulma-timeline/README.md -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bulma-timeline/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/vendor/assets/stylesheets/bulma-timeline/_config.yml -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bulma-timeline/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/vendor/assets/stylesheets/bulma-timeline/bower.json -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bulma-timeline/bulma-timeline/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/vendor/assets/stylesheets/bulma-timeline/bulma-timeline/.babelrc -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bulma-timeline/bulma-timeline/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/vendor/assets/stylesheets/bulma-timeline/bulma-timeline/.eslintrc.json -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bulma-timeline/bulma-timeline/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/vendor/assets/stylesheets/bulma-timeline/bulma-timeline/.gitignore -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bulma-timeline/bulma-timeline/.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/vendor/assets/stylesheets/bulma-timeline/bulma-timeline/.npmrc -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bulma-timeline/bulma-timeline/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/vendor/assets/stylesheets/bulma-timeline/bulma-timeline/.travis.yml -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bulma-timeline/bulma-timeline/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/vendor/assets/stylesheets/bulma-timeline/bulma-timeline/Gemfile -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bulma-timeline/bulma-timeline/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/vendor/assets/stylesheets/bulma-timeline/bulma-timeline/Gemfile.lock -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bulma-timeline/bulma-timeline/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/vendor/assets/stylesheets/bulma-timeline/bulma-timeline/LICENSE -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bulma-timeline/bulma-timeline/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/vendor/assets/stylesheets/bulma-timeline/bulma-timeline/README.md -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bulma-timeline/bulma-timeline/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/vendor/assets/stylesheets/bulma-timeline/bulma-timeline/_config.yml -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bulma-timeline/bulma-timeline/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/vendor/assets/stylesheets/bulma-timeline/bulma-timeline/bower.json -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bulma-timeline/bulma-timeline/dependencies-injector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/vendor/assets/stylesheets/bulma-timeline/bulma-timeline/dependencies-injector.js -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bulma-timeline/bulma-timeline/dist/css/bulma-timeline.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/vendor/assets/stylesheets/bulma-timeline/bulma-timeline/dist/css/bulma-timeline.min.css -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bulma-timeline/bulma-timeline/dist/css/bulma-timeline.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/vendor/assets/stylesheets/bulma-timeline/bulma-timeline/dist/css/bulma-timeline.sass -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bulma-timeline/bulma-timeline/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/vendor/assets/stylesheets/bulma-timeline/bulma-timeline/gulpfile.js -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bulma-timeline/bulma-timeline/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/vendor/assets/stylesheets/bulma-timeline/bulma-timeline/package-lock.json -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bulma-timeline/bulma-timeline/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/vendor/assets/stylesheets/bulma-timeline/bulma-timeline/package.json -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bulma-timeline/bulma-timeline/src/sass/index.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/vendor/assets/stylesheets/bulma-timeline/bulma-timeline/src/sass/index.sass -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bulma-timeline/dependencies-injector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/vendor/assets/stylesheets/bulma-timeline/dependencies-injector.js -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bulma-timeline/dist/css/bulma-timeline.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/vendor/assets/stylesheets/bulma-timeline/dist/css/bulma-timeline.min.css -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bulma-timeline/dist/css/bulma-timeline.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/vendor/assets/stylesheets/bulma-timeline/dist/css/bulma-timeline.sass -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bulma-timeline/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/vendor/assets/stylesheets/bulma-timeline/gulpfile.js -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bulma-timeline/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/vendor/assets/stylesheets/bulma-timeline/package-lock.json -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bulma-timeline/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/vendor/assets/stylesheets/bulma-timeline/package.json -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bulma-timeline/src/sass/index.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonkrs/malheatmap/HEAD/vendor/assets/stylesheets/bulma-timeline/src/sass/index.sass -------------------------------------------------------------------------------- /vendor/javascript/.keep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------