├── .browserslistrc ├── .circleci └── config.yml ├── .eslintrc.json ├── .github ├── PULL_REQUEST_TEMPLATE.md ├── RELEASE_PULL_REQUEST_TEMPLATE.md ├── release-drafter.yml └── workflows │ ├── git-pr-release.yml │ └── release.yml ├── .gitignore ├── .node-version ├── .prettierrc ├── .rspec ├── .rubocop.yml ├── .ruby-version ├── Gemfile ├── Gemfile.lock ├── Procfile ├── README.md ├── README_api_endpoint.md ├── README_old.md ├── README_product.md ├── Rakefile ├── app ├── controllers │ ├── admin │ │ ├── application_controller.rb │ │ ├── authentications_controller.rb │ │ ├── registered_tags_controller.rb │ │ ├── tags_controller.rb │ │ ├── tweets_controller.rb │ │ └── users_controller.rb │ ├── api │ │ └── v1 │ │ │ ├── base_controller.rb │ │ │ ├── oauths_controller.rb │ │ │ ├── registered_tags │ │ │ ├── day_counts_controller.rb │ │ │ └── persistences_controller.rb │ │ │ ├── registered_tags_controller.rb │ │ │ ├── tags_controller.rb │ │ │ ├── tweeted_ats_controller.rb │ │ │ ├── tweets_controller.rb │ │ │ ├── user_sessions_controller.rb │ │ │ ├── users │ │ │ ├── current │ │ │ │ ├── registered_tags_controller.rb │ │ │ │ └── twitter_data_controller.rb │ │ │ ├── currents_controller.rb │ │ │ └── registered_tags_controller.rb │ │ │ └── users_controller.rb │ ├── application_controller.rb │ ├── concerns │ │ ├── .keep │ │ └── errors_handler.rb │ ├── development │ │ └── sessions_controller.rb │ └── static_pages_controller.rb ├── dashboards │ ├── authentication_dashboard.rb │ ├── registered_tag_dashboard.rb │ ├── tag_dashboard.rb │ ├── tweet_dashboard.rb │ └── user_dashboard.rb ├── helpers │ └── application_helper.rb ├── javascript │ ├── App.vue │ ├── components │ │ ├── ProfileEdit.vue │ │ ├── ProfileStatus.vue │ │ ├── ProfileView.vue │ │ ├── TagStatus.vue │ │ ├── TagStatusEdit.vue │ │ ├── TagStatusView.vue │ │ ├── TagsTab.vue │ │ ├── TagsTweets.vue │ │ ├── TagsTweetsTweet.vue │ │ ├── TheCalendar.vue │ │ ├── TheProfile.vue │ │ ├── TheProfileUpdateDialog.vue │ │ ├── TheRanking.vue │ │ ├── TheRegisterTagDialog.vue │ │ ├── TheTagWrapper.vue │ │ ├── TheTerms.vue │ │ ├── TheTermsDialog.vue │ │ ├── TheTweetDialog.vue │ │ └── shared │ │ │ ├── TheDeleteDialog.vue │ │ │ ├── TheFlashMessage.vue │ │ │ ├── TheFooter.vue │ │ │ ├── TheHeader.vue │ │ │ └── TheLoading.vue │ ├── packs │ │ ├── application.js │ │ └── router.js │ ├── pages │ │ ├── MyTag.vue │ │ ├── NotFound.vue │ │ ├── PrivacyPolicy.vue │ │ ├── TagRanking.vue │ │ ├── TheMypage.vue │ │ ├── TheTerms.vue │ │ ├── TheTop.vue │ │ ├── TheUser.vue │ │ └── UserTag.vue │ ├── plugins │ │ ├── axios.js │ │ ├── custom-plugins.js │ │ ├── dayjs.js │ │ └── vee-validate.js │ └── store │ │ ├── flash.js │ │ ├── index.js │ │ ├── is-not-found.js │ │ └── user.js ├── loyalties │ ├── admin │ │ └── application_loyalty.rb │ ├── api │ │ └── v1 │ │ │ ├── registered_tags_loyalty.rb │ │ │ ├── tweeted_ats_loyalty.rb │ │ │ ├── tweets_loyalty.rb │ │ │ ├── users │ │ │ ├── current │ │ │ │ └── twitter_data_loyalty.rb │ │ │ └── registered_tags_loyalty.rb │ │ │ └── users_loyalty.rb │ └── application_loyalty.rb ├── models │ ├── application_record.rb │ ├── authentication.rb │ ├── concerns │ │ └── .keep │ ├── image.rb │ ├── registered_tag.rb │ ├── tag.rb │ ├── tweet.rb │ └── user.rb ├── serializers │ ├── registered_tag_serializer.rb │ ├── tag_serializer.rb │ ├── tweet_serializer.rb │ └── user_serializer.rb ├── services │ ├── cron_twitter.rb │ ├── job │ │ ├── add_tweets.rb │ │ ├── remind_reply.rb │ │ └── update_user_twitter_data.rb │ ├── logger_helper.rb │ ├── twitter_api │ │ ├── add_images.rb │ │ ├── update.rb │ │ ├── user.rb │ │ └── user_tweets.rb │ └── twitter_api_client.rb └── views │ ├── layouts │ ├── application.html.erb │ ├── mailer.html.erb │ └── mailer.text.erb │ └── static_pages │ └── top.html.erb ├── babel.config.js ├── bin ├── bundle ├── rails ├── rake ├── setup ├── spring ├── update ├── webpack ├── webpack-dev-server └── yarn ├── config.ru ├── config ├── application.rb ├── boot.rb ├── cable.yml ├── credentials.yml.enc ├── database.ci.yml ├── database.yml ├── database.yml.default ├── environment.rb ├── environments │ ├── development.rb │ ├── production.rb │ └── test.rb ├── initializers │ ├── active_model_serializers.rb │ ├── application_controller_renderer.rb │ ├── assets.rb │ ├── backtrace_silencers.rb │ ├── config.rb │ ├── content_security_policy.rb │ ├── cookies_serializer.rb │ ├── exception_notification.rb │ ├── filter_parameter_logging.rb │ ├── inflections.rb │ ├── mime_types.rb │ ├── pagy.rb │ ├── permissions_policy.rb │ ├── sorcery.rb │ └── wrap_parameters.rb ├── locales │ └── model.ja.yml ├── puma.rb ├── puma │ └── production.rb ├── routes.rb ├── schedule.rb ├── settings.yml ├── settings │ ├── development.yml │ ├── production.yml │ └── test.yml ├── spring.rb ├── storage.yml ├── webpack │ ├── development.js │ ├── environment.js │ ├── loaders │ │ └── vue.js │ ├── production.js │ └── test.js └── webpacker.yml ├── db ├── fixtures │ ├── admin_user.rb │ └── guest_user.rb ├── migrate │ ├── 20200328014029_sorcery_core.rb │ ├── 20200328054653_sorcery_external.rb │ ├── 20200329065538_create_hashtags.rb │ ├── 20200329065608_create_user_hashtags.rb │ ├── 20200330065546_create_hashlogs.rb │ ├── 20200330070919_add_log_id_to_hashtags_users.rb │ ├── 20200331115535_rename_tag_users_to_registered_tags.rb │ ├── 20200331120139_add_columns_to_registered_tags.rb │ ├── 20200331121136_remove_tag_logs.rb │ ├── 20200403132538_create_tweets.rb │ ├── 20200406040401_add_screen_name_to_users.rb │ ├── 20200409115515_change_column_to_tweets.rb │ ├── 20200416115640_add_column_to_tweets.rb │ ├── 20200425073222_add_index_to_tweets.rb │ ├── 20200518071626_remove_columns_from_registered_tags.rb │ ├── 20200519035839_add_avatar_url_to_users.rb │ ├── 20200613022618_add_access_token_columns_to_authentications.rb │ ├── 20201021135324_add_index.rb │ ├── 20210117145753_create_images.rb │ ├── 20220408143927_add_foreign_key_constraint_to_active_storage_attachments_for_blob_id.active_storage.rb │ ├── 20220408165642_add_service_name_to_active_storage_blobs.active_storage.rb │ └── 20220409060859_add_last_tweeted_at_and_tweet_rate_to_registered_tags.rb ├── schema.rb └── seeds.rb ├── erd.png ├── lib ├── assets │ └── .keep └── tasks │ ├── .keep │ ├── auto_annotate_models.rake │ ├── ranking_cron.rake │ └── twitter_cron.rake ├── log └── .keep ├── package.json ├── postcss.config.js ├── public ├── 404.html ├── 422.html ├── 500.html ├── apple-touch-icon-precomposed.png ├── apple-touch-icon.png ├── favicon.ico ├── img │ ├── calendar.png │ ├── hashtag.png │ ├── logo-w.png │ ├── logo.png │ ├── main-image.png │ ├── ogp-square.png │ ├── ogp.png │ ├── runteq │ │ ├── 120_120.jpg │ │ ├── 120_60.jpg │ │ ├── 125_125.jpg │ │ ├── 234_60.jpg │ │ ├── 250_250.jpg │ │ ├── 300_250.jpg │ │ ├── 300_300.jpg │ │ ├── 300_50.jpg │ │ ├── 320_50.jpg │ │ └── 468_60.jpg │ └── time.png └── robots.txt ├── spec ├── factories │ ├── authentications.rb │ ├── registered_tags.rb │ ├── tags.rb │ ├── tweets.rb │ └── users.rb ├── loyalties │ ├── registered_tags_loyalty_spec.rb │ ├── tweeted_ats_loyalty_spec.rb │ ├── tweets_loyalty_spec.rb │ ├── users │ │ └── registered_tags_loyalty_spec.rb │ └── users_loyalty_spec.rb ├── models │ ├── authentication_spec.rb │ ├── registered_tag_spec.rb │ ├── tag_spec.rb │ ├── tweet_spec.rb │ └── user_spec.rb ├── rails_helper.rb ├── requests │ └── api │ │ └── v1 │ │ ├── base_spec.rb │ │ ├── registered_tags │ │ ├── day_counts_spec.rb │ │ └── persistences_spec.rb │ │ ├── registered_tags_spec.rb │ │ ├── tags_spec.rb │ │ ├── tweeted_ats_spec.rb │ │ ├── tweets_spec.rb │ │ ├── user_sessions_spec.rb │ │ ├── users │ │ ├── current │ │ │ ├── registered_tags_spec.rb │ │ │ └── twitter_data_spec.rb │ │ ├── currents_spec.rb │ │ └── registered_tags_spec.rb │ │ └── users_spec.rb ├── rspec-output ├── serializers │ └── registered_tag_spec.rb ├── services │ ├── cron_twitter.rb │ ├── job │ │ ├── add_tweets_spec.rb │ │ └── remind_reply_spec.rb │ └── twitter_api │ │ ├── user_spec.rb │ │ └── user_tweets_spec.rb ├── spec_helper.rb ├── support │ ├── json_api_helper.rb │ ├── user_sessions_helper.rb │ └── vcr_helper.rb └── vcr_cassettes │ └── twitter_api │ └── user_show │ └── hashlog.yml ├── storage └── .keep ├── tmp └── .keep ├── vendor └── .keep └── yarn.lock /.browserslistrc: -------------------------------------------------------------------------------- 1 | defaults 2 | -------------------------------------------------------------------------------- /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/RELEASE_PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/.github/RELEASE_PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/.github/release-drafter.yml -------------------------------------------------------------------------------- /.github/workflows/git-pr-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/.github/workflows/git-pr-release.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/.gitignore -------------------------------------------------------------------------------- /.node-version: -------------------------------------------------------------------------------- 1 | 16.14.2 2 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/.prettierrc -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --require rails_helper 2 | --format documentation -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 3.1.2 2 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/Procfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/README.md -------------------------------------------------------------------------------- /README_api_endpoint.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/README_api_endpoint.md -------------------------------------------------------------------------------- /README_old.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/README_old.md -------------------------------------------------------------------------------- /README_product.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/README_product.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/Rakefile -------------------------------------------------------------------------------- /app/controllers/admin/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/app/controllers/admin/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/admin/authentications_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/app/controllers/admin/authentications_controller.rb -------------------------------------------------------------------------------- /app/controllers/admin/registered_tags_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/app/controllers/admin/registered_tags_controller.rb -------------------------------------------------------------------------------- /app/controllers/admin/tags_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/app/controllers/admin/tags_controller.rb -------------------------------------------------------------------------------- /app/controllers/admin/tweets_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/app/controllers/admin/tweets_controller.rb -------------------------------------------------------------------------------- /app/controllers/admin/users_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/app/controllers/admin/users_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/v1/base_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/app/controllers/api/v1/base_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/v1/oauths_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/app/controllers/api/v1/oauths_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/v1/registered_tags/day_counts_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/app/controllers/api/v1/registered_tags/day_counts_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/v1/registered_tags/persistences_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/app/controllers/api/v1/registered_tags/persistences_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/v1/registered_tags_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/app/controllers/api/v1/registered_tags_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/v1/tags_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/app/controllers/api/v1/tags_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/v1/tweeted_ats_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/app/controllers/api/v1/tweeted_ats_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/v1/tweets_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/app/controllers/api/v1/tweets_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/v1/user_sessions_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/app/controllers/api/v1/user_sessions_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/v1/users/current/registered_tags_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/app/controllers/api/v1/users/current/registered_tags_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/v1/users/current/twitter_data_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/app/controllers/api/v1/users/current/twitter_data_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/v1/users/currents_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/app/controllers/api/v1/users/currents_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/v1/users/registered_tags_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/app/controllers/api/v1/users/registered_tags_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/v1/users_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/app/controllers/api/v1/users_controller.rb -------------------------------------------------------------------------------- /app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/controllers/concerns/errors_handler.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/app/controllers/concerns/errors_handler.rb -------------------------------------------------------------------------------- /app/controllers/development/sessions_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/app/controllers/development/sessions_controller.rb -------------------------------------------------------------------------------- /app/controllers/static_pages_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/app/controllers/static_pages_controller.rb -------------------------------------------------------------------------------- /app/dashboards/authentication_dashboard.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/app/dashboards/authentication_dashboard.rb -------------------------------------------------------------------------------- /app/dashboards/registered_tag_dashboard.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/app/dashboards/registered_tag_dashboard.rb -------------------------------------------------------------------------------- /app/dashboards/tag_dashboard.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/app/dashboards/tag_dashboard.rb -------------------------------------------------------------------------------- /app/dashboards/tweet_dashboard.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/app/dashboards/tweet_dashboard.rb -------------------------------------------------------------------------------- /app/dashboards/user_dashboard.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/app/dashboards/user_dashboard.rb -------------------------------------------------------------------------------- /app/helpers/application_helper.rb: -------------------------------------------------------------------------------- 1 | module ApplicationHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/javascript/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/app/javascript/App.vue -------------------------------------------------------------------------------- /app/javascript/components/ProfileEdit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/app/javascript/components/ProfileEdit.vue -------------------------------------------------------------------------------- /app/javascript/components/ProfileStatus.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/app/javascript/components/ProfileStatus.vue -------------------------------------------------------------------------------- /app/javascript/components/ProfileView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/app/javascript/components/ProfileView.vue -------------------------------------------------------------------------------- /app/javascript/components/TagStatus.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/app/javascript/components/TagStatus.vue -------------------------------------------------------------------------------- /app/javascript/components/TagStatusEdit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/app/javascript/components/TagStatusEdit.vue -------------------------------------------------------------------------------- /app/javascript/components/TagStatusView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/app/javascript/components/TagStatusView.vue -------------------------------------------------------------------------------- /app/javascript/components/TagsTab.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/app/javascript/components/TagsTab.vue -------------------------------------------------------------------------------- /app/javascript/components/TagsTweets.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/app/javascript/components/TagsTweets.vue -------------------------------------------------------------------------------- /app/javascript/components/TagsTweetsTweet.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/app/javascript/components/TagsTweetsTweet.vue -------------------------------------------------------------------------------- /app/javascript/components/TheCalendar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/app/javascript/components/TheCalendar.vue -------------------------------------------------------------------------------- /app/javascript/components/TheProfile.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/app/javascript/components/TheProfile.vue -------------------------------------------------------------------------------- /app/javascript/components/TheProfileUpdateDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/app/javascript/components/TheProfileUpdateDialog.vue -------------------------------------------------------------------------------- /app/javascript/components/TheRanking.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/app/javascript/components/TheRanking.vue -------------------------------------------------------------------------------- /app/javascript/components/TheRegisterTagDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/app/javascript/components/TheRegisterTagDialog.vue -------------------------------------------------------------------------------- /app/javascript/components/TheTagWrapper.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/app/javascript/components/TheTagWrapper.vue -------------------------------------------------------------------------------- /app/javascript/components/TheTerms.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/app/javascript/components/TheTerms.vue -------------------------------------------------------------------------------- /app/javascript/components/TheTermsDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/app/javascript/components/TheTermsDialog.vue -------------------------------------------------------------------------------- /app/javascript/components/TheTweetDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/app/javascript/components/TheTweetDialog.vue -------------------------------------------------------------------------------- /app/javascript/components/shared/TheDeleteDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/app/javascript/components/shared/TheDeleteDialog.vue -------------------------------------------------------------------------------- /app/javascript/components/shared/TheFlashMessage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/app/javascript/components/shared/TheFlashMessage.vue -------------------------------------------------------------------------------- /app/javascript/components/shared/TheFooter.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/app/javascript/components/shared/TheFooter.vue -------------------------------------------------------------------------------- /app/javascript/components/shared/TheHeader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/app/javascript/components/shared/TheHeader.vue -------------------------------------------------------------------------------- /app/javascript/components/shared/TheLoading.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/app/javascript/components/shared/TheLoading.vue -------------------------------------------------------------------------------- /app/javascript/packs/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/app/javascript/packs/application.js -------------------------------------------------------------------------------- /app/javascript/packs/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/app/javascript/packs/router.js -------------------------------------------------------------------------------- /app/javascript/pages/MyTag.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/app/javascript/pages/MyTag.vue -------------------------------------------------------------------------------- /app/javascript/pages/NotFound.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/app/javascript/pages/NotFound.vue -------------------------------------------------------------------------------- /app/javascript/pages/PrivacyPolicy.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/app/javascript/pages/PrivacyPolicy.vue -------------------------------------------------------------------------------- /app/javascript/pages/TagRanking.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/app/javascript/pages/TagRanking.vue -------------------------------------------------------------------------------- /app/javascript/pages/TheMypage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/app/javascript/pages/TheMypage.vue -------------------------------------------------------------------------------- /app/javascript/pages/TheTerms.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/app/javascript/pages/TheTerms.vue -------------------------------------------------------------------------------- /app/javascript/pages/TheTop.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/app/javascript/pages/TheTop.vue -------------------------------------------------------------------------------- /app/javascript/pages/TheUser.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/app/javascript/pages/TheUser.vue -------------------------------------------------------------------------------- /app/javascript/pages/UserTag.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/app/javascript/pages/UserTag.vue -------------------------------------------------------------------------------- /app/javascript/plugins/axios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/app/javascript/plugins/axios.js -------------------------------------------------------------------------------- /app/javascript/plugins/custom-plugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/app/javascript/plugins/custom-plugins.js -------------------------------------------------------------------------------- /app/javascript/plugins/dayjs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/app/javascript/plugins/dayjs.js -------------------------------------------------------------------------------- /app/javascript/plugins/vee-validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/app/javascript/plugins/vee-validate.js -------------------------------------------------------------------------------- /app/javascript/store/flash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/app/javascript/store/flash.js -------------------------------------------------------------------------------- /app/javascript/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/app/javascript/store/index.js -------------------------------------------------------------------------------- /app/javascript/store/is-not-found.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/app/javascript/store/is-not-found.js -------------------------------------------------------------------------------- /app/javascript/store/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/app/javascript/store/user.js -------------------------------------------------------------------------------- /app/loyalties/admin/application_loyalty.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/app/loyalties/admin/application_loyalty.rb -------------------------------------------------------------------------------- /app/loyalties/api/v1/registered_tags_loyalty.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/app/loyalties/api/v1/registered_tags_loyalty.rb -------------------------------------------------------------------------------- /app/loyalties/api/v1/tweeted_ats_loyalty.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/app/loyalties/api/v1/tweeted_ats_loyalty.rb -------------------------------------------------------------------------------- /app/loyalties/api/v1/tweets_loyalty.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/app/loyalties/api/v1/tweets_loyalty.rb -------------------------------------------------------------------------------- /app/loyalties/api/v1/users/current/twitter_data_loyalty.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/app/loyalties/api/v1/users/current/twitter_data_loyalty.rb -------------------------------------------------------------------------------- /app/loyalties/api/v1/users/registered_tags_loyalty.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/app/loyalties/api/v1/users/registered_tags_loyalty.rb -------------------------------------------------------------------------------- /app/loyalties/api/v1/users_loyalty.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/app/loyalties/api/v1/users_loyalty.rb -------------------------------------------------------------------------------- /app/loyalties/application_loyalty.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/app/loyalties/application_loyalty.rb -------------------------------------------------------------------------------- /app/models/application_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/app/models/application_record.rb -------------------------------------------------------------------------------- /app/models/authentication.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/app/models/authentication.rb -------------------------------------------------------------------------------- /app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/image.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/app/models/image.rb -------------------------------------------------------------------------------- /app/models/registered_tag.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/app/models/registered_tag.rb -------------------------------------------------------------------------------- /app/models/tag.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/app/models/tag.rb -------------------------------------------------------------------------------- /app/models/tweet.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/app/models/tweet.rb -------------------------------------------------------------------------------- /app/models/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/app/models/user.rb -------------------------------------------------------------------------------- /app/serializers/registered_tag_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/app/serializers/registered_tag_serializer.rb -------------------------------------------------------------------------------- /app/serializers/tag_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/app/serializers/tag_serializer.rb -------------------------------------------------------------------------------- /app/serializers/tweet_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/app/serializers/tweet_serializer.rb -------------------------------------------------------------------------------- /app/serializers/user_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/app/serializers/user_serializer.rb -------------------------------------------------------------------------------- /app/services/cron_twitter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/app/services/cron_twitter.rb -------------------------------------------------------------------------------- /app/services/job/add_tweets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/app/services/job/add_tweets.rb -------------------------------------------------------------------------------- /app/services/job/remind_reply.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/app/services/job/remind_reply.rb -------------------------------------------------------------------------------- /app/services/job/update_user_twitter_data.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/app/services/job/update_user_twitter_data.rb -------------------------------------------------------------------------------- /app/services/logger_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/app/services/logger_helper.rb -------------------------------------------------------------------------------- /app/services/twitter_api/add_images.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/app/services/twitter_api/add_images.rb -------------------------------------------------------------------------------- /app/services/twitter_api/update.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/app/services/twitter_api/update.rb -------------------------------------------------------------------------------- /app/services/twitter_api/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/app/services/twitter_api/user.rb -------------------------------------------------------------------------------- /app/services/twitter_api/user_tweets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/app/services/twitter_api/user_tweets.rb -------------------------------------------------------------------------------- /app/services/twitter_api_client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/app/services/twitter_api_client.rb -------------------------------------------------------------------------------- /app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /app/views/layouts/mailer.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/app/views/layouts/mailer.html.erb -------------------------------------------------------------------------------- /app/views/layouts/mailer.text.erb: -------------------------------------------------------------------------------- 1 | <%= yield %> 2 | -------------------------------------------------------------------------------- /app/views/static_pages/top.html.erb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/babel.config.js -------------------------------------------------------------------------------- /bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/bin/bundle -------------------------------------------------------------------------------- /bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/bin/rails -------------------------------------------------------------------------------- /bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/bin/rake -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/bin/setup -------------------------------------------------------------------------------- /bin/spring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/bin/spring -------------------------------------------------------------------------------- /bin/update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/bin/update -------------------------------------------------------------------------------- /bin/webpack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/bin/webpack -------------------------------------------------------------------------------- /bin/webpack-dev-server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/bin/webpack-dev-server -------------------------------------------------------------------------------- /bin/yarn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/bin/yarn -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/config.ru -------------------------------------------------------------------------------- /config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/config/application.rb -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/config/boot.rb -------------------------------------------------------------------------------- /config/cable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/config/cable.yml -------------------------------------------------------------------------------- /config/credentials.yml.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/config/credentials.yml.enc -------------------------------------------------------------------------------- /config/database.ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/config/database.ci.yml -------------------------------------------------------------------------------- /config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/config/database.yml -------------------------------------------------------------------------------- /config/database.yml.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/config/database.yml.default -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/config/environment.rb -------------------------------------------------------------------------------- /config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/config/environments/development.rb -------------------------------------------------------------------------------- /config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/config/environments/production.rb -------------------------------------------------------------------------------- /config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/config/environments/test.rb -------------------------------------------------------------------------------- /config/initializers/active_model_serializers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/config/initializers/active_model_serializers.rb -------------------------------------------------------------------------------- /config/initializers/application_controller_renderer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/config/initializers/application_controller_renderer.rb -------------------------------------------------------------------------------- /config/initializers/assets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/config/initializers/assets.rb -------------------------------------------------------------------------------- /config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /config/initializers/config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/config/initializers/config.rb -------------------------------------------------------------------------------- /config/initializers/content_security_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/config/initializers/content_security_policy.rb -------------------------------------------------------------------------------- /config/initializers/cookies_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/config/initializers/cookies_serializer.rb -------------------------------------------------------------------------------- /config/initializers/exception_notification.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/config/initializers/exception_notification.rb -------------------------------------------------------------------------------- /config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/config/initializers/filter_parameter_logging.rb -------------------------------------------------------------------------------- /config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/config/initializers/inflections.rb -------------------------------------------------------------------------------- /config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /config/initializers/pagy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/config/initializers/pagy.rb -------------------------------------------------------------------------------- /config/initializers/permissions_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/config/initializers/permissions_policy.rb -------------------------------------------------------------------------------- /config/initializers/sorcery.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/config/initializers/sorcery.rb -------------------------------------------------------------------------------- /config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /config/locales/model.ja.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/config/locales/model.ja.yml -------------------------------------------------------------------------------- /config/puma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/config/puma.rb -------------------------------------------------------------------------------- /config/puma/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/config/puma/production.rb -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/config/routes.rb -------------------------------------------------------------------------------- /config/schedule.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/config/schedule.rb -------------------------------------------------------------------------------- /config/settings.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/settings/development.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/config/settings/development.yml -------------------------------------------------------------------------------- /config/settings/production.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/config/settings/production.yml -------------------------------------------------------------------------------- /config/settings/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/config/settings/test.yml -------------------------------------------------------------------------------- /config/spring.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/config/spring.rb -------------------------------------------------------------------------------- /config/storage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/config/storage.yml -------------------------------------------------------------------------------- /config/webpack/development.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/config/webpack/development.js -------------------------------------------------------------------------------- /config/webpack/environment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/config/webpack/environment.js -------------------------------------------------------------------------------- /config/webpack/loaders/vue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/config/webpack/loaders/vue.js -------------------------------------------------------------------------------- /config/webpack/production.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/config/webpack/production.js -------------------------------------------------------------------------------- /config/webpack/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/config/webpack/test.js -------------------------------------------------------------------------------- /config/webpacker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/config/webpacker.yml -------------------------------------------------------------------------------- /db/fixtures/admin_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/db/fixtures/admin_user.rb -------------------------------------------------------------------------------- /db/fixtures/guest_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/db/fixtures/guest_user.rb -------------------------------------------------------------------------------- /db/migrate/20200328014029_sorcery_core.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/db/migrate/20200328014029_sorcery_core.rb -------------------------------------------------------------------------------- /db/migrate/20200328054653_sorcery_external.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/db/migrate/20200328054653_sorcery_external.rb -------------------------------------------------------------------------------- /db/migrate/20200329065538_create_hashtags.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/db/migrate/20200329065538_create_hashtags.rb -------------------------------------------------------------------------------- /db/migrate/20200329065608_create_user_hashtags.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/db/migrate/20200329065608_create_user_hashtags.rb -------------------------------------------------------------------------------- /db/migrate/20200330065546_create_hashlogs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/db/migrate/20200330065546_create_hashlogs.rb -------------------------------------------------------------------------------- /db/migrate/20200330070919_add_log_id_to_hashtags_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/db/migrate/20200330070919_add_log_id_to_hashtags_users.rb -------------------------------------------------------------------------------- /db/migrate/20200331115535_rename_tag_users_to_registered_tags.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/db/migrate/20200331115535_rename_tag_users_to_registered_tags.rb -------------------------------------------------------------------------------- /db/migrate/20200331120139_add_columns_to_registered_tags.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/db/migrate/20200331120139_add_columns_to_registered_tags.rb -------------------------------------------------------------------------------- /db/migrate/20200331121136_remove_tag_logs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/db/migrate/20200331121136_remove_tag_logs.rb -------------------------------------------------------------------------------- /db/migrate/20200403132538_create_tweets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/db/migrate/20200403132538_create_tweets.rb -------------------------------------------------------------------------------- /db/migrate/20200406040401_add_screen_name_to_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/db/migrate/20200406040401_add_screen_name_to_users.rb -------------------------------------------------------------------------------- /db/migrate/20200409115515_change_column_to_tweets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/db/migrate/20200409115515_change_column_to_tweets.rb -------------------------------------------------------------------------------- /db/migrate/20200416115640_add_column_to_tweets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/db/migrate/20200416115640_add_column_to_tweets.rb -------------------------------------------------------------------------------- /db/migrate/20200425073222_add_index_to_tweets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/db/migrate/20200425073222_add_index_to_tweets.rb -------------------------------------------------------------------------------- /db/migrate/20200518071626_remove_columns_from_registered_tags.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/db/migrate/20200518071626_remove_columns_from_registered_tags.rb -------------------------------------------------------------------------------- /db/migrate/20200519035839_add_avatar_url_to_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/db/migrate/20200519035839_add_avatar_url_to_users.rb -------------------------------------------------------------------------------- /db/migrate/20200613022618_add_access_token_columns_to_authentications.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/db/migrate/20200613022618_add_access_token_columns_to_authentications.rb -------------------------------------------------------------------------------- /db/migrate/20201021135324_add_index.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/db/migrate/20201021135324_add_index.rb -------------------------------------------------------------------------------- /db/migrate/20210117145753_create_images.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/db/migrate/20210117145753_create_images.rb -------------------------------------------------------------------------------- /db/migrate/20220408143927_add_foreign_key_constraint_to_active_storage_attachments_for_blob_id.active_storage.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/db/migrate/20220408143927_add_foreign_key_constraint_to_active_storage_attachments_for_blob_id.active_storage.rb -------------------------------------------------------------------------------- /db/migrate/20220408165642_add_service_name_to_active_storage_blobs.active_storage.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/db/migrate/20220408165642_add_service_name_to_active_storage_blobs.active_storage.rb -------------------------------------------------------------------------------- /db/migrate/20220409060859_add_last_tweeted_at_and_tweet_rate_to_registered_tags.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/db/migrate/20220409060859_add_last_tweeted_at_and_tweet_rate_to_registered_tags.rb -------------------------------------------------------------------------------- /db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/db/schema.rb -------------------------------------------------------------------------------- /db/seeds.rb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /erd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/erd.png -------------------------------------------------------------------------------- /lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/tasks/auto_annotate_models.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/lib/tasks/auto_annotate_models.rake -------------------------------------------------------------------------------- /lib/tasks/ranking_cron.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/lib/tasks/ranking_cron.rake -------------------------------------------------------------------------------- /lib/tasks/twitter_cron.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/lib/tasks/twitter_cron.rake -------------------------------------------------------------------------------- /log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/public/404.html -------------------------------------------------------------------------------- /public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/public/422.html -------------------------------------------------------------------------------- /public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/public/500.html -------------------------------------------------------------------------------- /public/apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/apple-touch-icon.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/img/calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/public/img/calendar.png -------------------------------------------------------------------------------- /public/img/hashtag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/public/img/hashtag.png -------------------------------------------------------------------------------- /public/img/logo-w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/public/img/logo-w.png -------------------------------------------------------------------------------- /public/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/public/img/logo.png -------------------------------------------------------------------------------- /public/img/main-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/public/img/main-image.png -------------------------------------------------------------------------------- /public/img/ogp-square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/public/img/ogp-square.png -------------------------------------------------------------------------------- /public/img/ogp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/public/img/ogp.png -------------------------------------------------------------------------------- /public/img/runteq/120_120.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/public/img/runteq/120_120.jpg -------------------------------------------------------------------------------- /public/img/runteq/120_60.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/public/img/runteq/120_60.jpg -------------------------------------------------------------------------------- /public/img/runteq/125_125.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/public/img/runteq/125_125.jpg -------------------------------------------------------------------------------- /public/img/runteq/234_60.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/public/img/runteq/234_60.jpg -------------------------------------------------------------------------------- /public/img/runteq/250_250.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/public/img/runteq/250_250.jpg -------------------------------------------------------------------------------- /public/img/runteq/300_250.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/public/img/runteq/300_250.jpg -------------------------------------------------------------------------------- /public/img/runteq/300_300.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/public/img/runteq/300_300.jpg -------------------------------------------------------------------------------- /public/img/runteq/300_50.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/public/img/runteq/300_50.jpg -------------------------------------------------------------------------------- /public/img/runteq/320_50.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/public/img/runteq/320_50.jpg -------------------------------------------------------------------------------- /public/img/runteq/468_60.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/public/img/runteq/468_60.jpg -------------------------------------------------------------------------------- /public/img/time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/public/img/time.png -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/public/robots.txt -------------------------------------------------------------------------------- /spec/factories/authentications.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/spec/factories/authentications.rb -------------------------------------------------------------------------------- /spec/factories/registered_tags.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/spec/factories/registered_tags.rb -------------------------------------------------------------------------------- /spec/factories/tags.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/spec/factories/tags.rb -------------------------------------------------------------------------------- /spec/factories/tweets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/spec/factories/tweets.rb -------------------------------------------------------------------------------- /spec/factories/users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/spec/factories/users.rb -------------------------------------------------------------------------------- /spec/loyalties/registered_tags_loyalty_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/spec/loyalties/registered_tags_loyalty_spec.rb -------------------------------------------------------------------------------- /spec/loyalties/tweeted_ats_loyalty_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/spec/loyalties/tweeted_ats_loyalty_spec.rb -------------------------------------------------------------------------------- /spec/loyalties/tweets_loyalty_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/spec/loyalties/tweets_loyalty_spec.rb -------------------------------------------------------------------------------- /spec/loyalties/users/registered_tags_loyalty_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/spec/loyalties/users/registered_tags_loyalty_spec.rb -------------------------------------------------------------------------------- /spec/loyalties/users_loyalty_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/spec/loyalties/users_loyalty_spec.rb -------------------------------------------------------------------------------- /spec/models/authentication_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/spec/models/authentication_spec.rb -------------------------------------------------------------------------------- /spec/models/registered_tag_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/spec/models/registered_tag_spec.rb -------------------------------------------------------------------------------- /spec/models/tag_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/spec/models/tag_spec.rb -------------------------------------------------------------------------------- /spec/models/tweet_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/spec/models/tweet_spec.rb -------------------------------------------------------------------------------- /spec/models/user_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/spec/models/user_spec.rb -------------------------------------------------------------------------------- /spec/rails_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/spec/rails_helper.rb -------------------------------------------------------------------------------- /spec/requests/api/v1/base_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/spec/requests/api/v1/base_spec.rb -------------------------------------------------------------------------------- /spec/requests/api/v1/registered_tags/day_counts_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/spec/requests/api/v1/registered_tags/day_counts_spec.rb -------------------------------------------------------------------------------- /spec/requests/api/v1/registered_tags/persistences_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/spec/requests/api/v1/registered_tags/persistences_spec.rb -------------------------------------------------------------------------------- /spec/requests/api/v1/registered_tags_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/spec/requests/api/v1/registered_tags_spec.rb -------------------------------------------------------------------------------- /spec/requests/api/v1/tags_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/spec/requests/api/v1/tags_spec.rb -------------------------------------------------------------------------------- /spec/requests/api/v1/tweeted_ats_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/spec/requests/api/v1/tweeted_ats_spec.rb -------------------------------------------------------------------------------- /spec/requests/api/v1/tweets_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/spec/requests/api/v1/tweets_spec.rb -------------------------------------------------------------------------------- /spec/requests/api/v1/user_sessions_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/spec/requests/api/v1/user_sessions_spec.rb -------------------------------------------------------------------------------- /spec/requests/api/v1/users/current/registered_tags_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/spec/requests/api/v1/users/current/registered_tags_spec.rb -------------------------------------------------------------------------------- /spec/requests/api/v1/users/current/twitter_data_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/spec/requests/api/v1/users/current/twitter_data_spec.rb -------------------------------------------------------------------------------- /spec/requests/api/v1/users/currents_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/spec/requests/api/v1/users/currents_spec.rb -------------------------------------------------------------------------------- /spec/requests/api/v1/users/registered_tags_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/spec/requests/api/v1/users/registered_tags_spec.rb -------------------------------------------------------------------------------- /spec/requests/api/v1/users_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/spec/requests/api/v1/users_spec.rb -------------------------------------------------------------------------------- /spec/rspec-output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/spec/rspec-output -------------------------------------------------------------------------------- /spec/serializers/registered_tag_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/spec/serializers/registered_tag_spec.rb -------------------------------------------------------------------------------- /spec/services/cron_twitter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/spec/services/cron_twitter.rb -------------------------------------------------------------------------------- /spec/services/job/add_tweets_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/spec/services/job/add_tweets_spec.rb -------------------------------------------------------------------------------- /spec/services/job/remind_reply_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/spec/services/job/remind_reply_spec.rb -------------------------------------------------------------------------------- /spec/services/twitter_api/user_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/spec/services/twitter_api/user_spec.rb -------------------------------------------------------------------------------- /spec/services/twitter_api/user_tweets_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/spec/services/twitter_api/user_tweets_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/support/json_api_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/spec/support/json_api_helper.rb -------------------------------------------------------------------------------- /spec/support/user_sessions_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/spec/support/user_sessions_helper.rb -------------------------------------------------------------------------------- /spec/support/vcr_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/spec/support/vcr_helper.rb -------------------------------------------------------------------------------- /spec/vcr_cassettes/twitter_api/user_show/hashlog.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/spec/vcr_cassettes/twitter_api/user_show/hashlog.yml -------------------------------------------------------------------------------- /storage/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tmp/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiandrox/hashlog/HEAD/yarn.lock --------------------------------------------------------------------------------