├── .browserslistrc ├── .circleci └── config.yml ├── .github ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .rspec ├── .rubocop.yml ├── .ruby-version ├── Capfile ├── Gemfile ├── Gemfile.lock ├── README.md ├── Rakefile ├── app ├── assets │ ├── config │ │ └── manifest.js │ ├── images │ │ └── .keep │ ├── javascripts │ │ └── application.js │ └── stylesheets │ │ ├── administrate │ │ └── application.scss │ │ └── application.scss ├── channels │ └── application_cable │ │ ├── channel.rb │ │ └── connection.rb ├── controllers │ ├── admin │ │ ├── application_controller.rb │ │ ├── authentications_controller.rb │ │ ├── food_food_genres_controller.rb │ │ ├── food_genres_controller.rb │ │ ├── foods_controller.rb │ │ ├── meal_pictures_controller.rb │ │ ├── meal_records_controller.rb │ │ └── users_controller.rb │ ├── application_controller.rb │ ├── concerns │ │ └── .keep │ ├── food_genres_controller.rb │ ├── foods_controller.rb │ ├── meal_records │ │ └── picture_attachments_controller.rb │ ├── meal_records_controller.rb │ ├── oauths_controller.rb │ ├── static_pages_controller.rb │ ├── user_sessions_controller.rb │ └── users_controller.rb ├── dashboards │ ├── authentication_dashboard.rb │ ├── food_dashboard.rb │ ├── food_food_genre_dashboard.rb │ ├── food_genre_dashboard.rb │ ├── meal_picture_dashboard.rb │ ├── meal_record_dashboard.rb │ └── user_dashboard.rb ├── decorators │ └── meal_record_decorator.rb ├── helpers │ └── application_helper.rb ├── javascript │ ├── administrate.js │ ├── administrate │ │ └── index.js │ ├── channels │ │ ├── consumer.js │ │ └── index.js │ ├── close_message.js │ ├── components │ │ ├── date_time_picker.js │ │ └── table.js │ ├── images │ │ ├── caby.jpg │ │ ├── top_page │ │ │ ├── zerorie_top_1.png │ │ │ ├── zerorie_top_2.png │ │ │ └── zerorie_top_3.png │ │ └── zerorie_logo │ │ │ ├── favicon.png │ │ │ ├── header_logo_transparent.png │ │ │ ├── logo.png │ │ │ ├── logo_transparent.png │ │ │ ├── zerorie_header_under_bar_transparent.png │ │ │ └── zerorie_under_bar.png │ ├── jquery │ │ └── submit_food_image.js │ ├── meal_record_pictures_preview.js │ ├── packs │ │ ├── application.js │ │ ├── meal_time_form.js │ │ └── search_by_picture_input.js │ ├── search_meal_time_form.js │ ├── search_picture_preview.js │ └── stylesheets │ │ ├── application.scss │ │ ├── body.scss │ │ ├── calorie_theory_text.scss │ │ ├── flash_message.scss │ │ ├── food.scss │ │ ├── footer.scss │ │ ├── header.scss │ │ ├── meal_record.scss │ │ └── top.scss ├── jobs │ └── application_job.rb ├── mailers │ └── application_mailer.rb ├── models │ ├── application_record.rb │ ├── authentication.rb │ ├── concerns │ │ └── .keep │ ├── food.rb │ ├── food_food_genre.rb │ ├── food_genre.rb │ ├── meal_picture.rb │ ├── meal_record.rb │ └── user.rb └── views │ ├── food_genres │ ├── edit.html.slim │ ├── index.html.slim │ ├── new.html.slim │ └── show.html.slim │ ├── foods │ ├── _search_by_picture.html.slim │ ├── _search_form.html.slim │ ├── _search_result.html.slim │ ├── new.html.slim │ ├── search_form_result.html.slim │ └── search_picture_result.html.slim │ ├── kaminari │ ├── _first_page.html.slim │ ├── _gap.html.slim │ ├── _last_page.html.slim │ ├── _next_page.html.slim │ ├── _page.html.slim │ ├── _paginator.html.slim │ └── _prev_page.html.slim │ ├── layouts │ ├── _google_tag_manager.html.slim │ ├── _google_tag_manager_noscript.html.slim │ ├── admin │ │ ├── application.html.slim │ │ └── application │ │ │ └── _javascript.html.slim │ ├── application.html.slim │ ├── mailer.html.slim │ └── mailer.text.slim │ ├── meal_records │ ├── _search_meal_time_form.html.slim │ ├── edit.html.slim │ ├── index.html.slim │ ├── new.html.slim │ ├── picture_attachments │ │ ├── destroy.js.erb │ │ └── destroy.js.slim │ └── show.html.slim │ ├── shared │ ├── _before_login_header.html.slim │ ├── _error_messages.html.slim │ ├── _flash_message.html.slim │ ├── _footer.html.slim │ ├── _header.html.slim │ └── _tweet_share.html.slim │ ├── static_pages │ └── top.html.slim │ ├── user_sessions │ └── new.html.slim │ └── users │ └── new.html.slim ├── babel.config.js ├── bin ├── rails ├── rake ├── rspec ├── setup ├── spring ├── webpack ├── webpack-dev-server └── yarn ├── codecov.yml ├── config.ru ├── config ├── application.rb ├── boot.rb ├── cable.yml ├── credentials.yml.enc ├── credentials │ ├── environment.yml.enc │ └── production.yml.enc ├── database.yml ├── deploy.rb ├── deploy │ ├── production.rb │ ├── staging.rb │ └── templates │ │ ├── nginx_conf.erb │ │ └── puma.rb.erb ├── environment.rb ├── environments │ ├── development.rb │ ├── production.rb │ └── test.rb ├── initializers │ ├── 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 │ ├── kaminari_config.rb │ ├── mime_types.rb │ ├── sorcery.rb │ └── wrap_parameters.rb ├── locales │ ├── activerecord │ │ └── ja.yml │ ├── en.yml │ ├── ja.yml │ └── views │ │ └── ja.yml ├── puma.rb ├── routes.rb ├── rubocop │ └── rspec.yml ├── settings.local.yml ├── settings.yml ├── settings │ ├── development.yml │ ├── production.yml │ └── test.yml ├── spring.rb ├── storage.yml ├── webpack │ ├── development.js │ ├── environment.js │ ├── production.js │ └── test.js └── webpacker.yml ├── db ├── migrate │ ├── 20200802075924_create_meal_records.rb │ ├── 20200802080924_create_active_storage_tables.active_storage.rb │ ├── 20200804123950_create_foods.rb │ ├── 20200810110859_sorcery_core.rb │ ├── 20200811024921_add_user_to_meal_records.rb │ ├── 20200811054747_sorcery_external.rb │ ├── 20200811154257_create_meal_pictures.rb │ ├── 20200812160417_add_food_ref_to_meal_records.rb │ ├── 20200829102806_create_food_genres.rb │ ├── 20200829110141_create_food_food_genres.rb │ └── 20200829141400_add_role_to_users.rb ├── schema.rb ├── seeds.rb └── seeds │ ├── food │ ├── alcohol.rb │ ├── chinese.rb │ ├── donburi.rb │ ├── flied.rb │ ├── fruit.rb │ ├── ice.rb │ ├── italian.rb │ ├── japanese_sweets.rb │ ├── juice.rb │ ├── meat.rb │ ├── mushroom.rb │ ├── nabemono.rb │ ├── noodle.rb │ ├── okinawa.rb │ ├── other.rb │ ├── seafood.rb │ ├── sweets.rb │ ├── vegitable.rb │ ├── western.rb │ └── white_food.rb │ └── user │ ├── admin_user.rb │ ├── guest_user.rb │ └── user.rb ├── lib ├── assets │ └── .keep ├── capistrano │ └── tasks │ │ └── custom.rake └── tasks │ ├── .keep │ └── auto_annotate_models.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 │ └── zerorie_ogp.jpg └── robots.txt ├── spec ├── decorators │ └── meal_record_decorator_spec.rb ├── factories │ ├── authentications.rb │ ├── food_food_genres.rb │ ├── food_genres.rb │ ├── foods.rb │ ├── meal_pictures.rb │ ├── meal_records.rb │ └── users.rb ├── helpers │ └── application_helper.rb ├── models │ ├── authentication_spec.rb │ ├── food_food_genre_spec.rb │ ├── food_genre_spec.rb │ ├── food_spec.rb │ ├── meal_picture_spec.rb │ ├── meal_record_spec.rb │ └── user_spec.rb ├── rails_helper.rb ├── spec_helper.rb ├── support │ ├── capybara.rb │ ├── login_macros.rb │ └── omniauth_macros.rb └── system │ ├── common │ └── title_spec.rb │ ├── login │ └── login_spec.rb │ └── users │ └── users_spec.rb ├── storage └── .keep ├── test ├── application_system_test_case.rb ├── channels │ └── application_cable │ │ └── connection_test.rb ├── controllers │ └── .keep ├── fixtures │ ├── .keep │ └── files │ │ └── .keep ├── helpers │ └── .keep ├── integration │ └── .keep ├── mailers │ └── .keep ├── models │ └── .keep ├── system │ └── .keep └── test_helper.rb ├── tmp ├── .keep └── pids │ └── .keep ├── vendor └── .keep └── yarn.lock /.browserslistrc: -------------------------------------------------------------------------------- 1 | defaults 2 | -------------------------------------------------------------------------------- /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --require spec_helper 2 | -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 2.7.1 2 | -------------------------------------------------------------------------------- /Capfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/Capfile -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/Rakefile -------------------------------------------------------------------------------- /app/assets/config/manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/app/assets/config/manifest.js -------------------------------------------------------------------------------- /app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/javascripts/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/app/assets/javascripts/application.js -------------------------------------------------------------------------------- /app/assets/stylesheets/administrate/application.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/app/assets/stylesheets/administrate/application.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/application.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/app/assets/stylesheets/application.scss -------------------------------------------------------------------------------- /app/channels/application_cable/channel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/app/channels/application_cable/channel.rb -------------------------------------------------------------------------------- /app/channels/application_cable/connection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/app/channels/application_cable/connection.rb -------------------------------------------------------------------------------- /app/controllers/admin/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/app/controllers/admin/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/admin/authentications_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/app/controllers/admin/authentications_controller.rb -------------------------------------------------------------------------------- /app/controllers/admin/food_food_genres_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/app/controllers/admin/food_food_genres_controller.rb -------------------------------------------------------------------------------- /app/controllers/admin/food_genres_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/app/controllers/admin/food_genres_controller.rb -------------------------------------------------------------------------------- /app/controllers/admin/foods_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/app/controllers/admin/foods_controller.rb -------------------------------------------------------------------------------- /app/controllers/admin/meal_pictures_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/app/controllers/admin/meal_pictures_controller.rb -------------------------------------------------------------------------------- /app/controllers/admin/meal_records_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/app/controllers/admin/meal_records_controller.rb -------------------------------------------------------------------------------- /app/controllers/admin/users_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/app/controllers/admin/users_controller.rb -------------------------------------------------------------------------------- /app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/controllers/food_genres_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/app/controllers/food_genres_controller.rb -------------------------------------------------------------------------------- /app/controllers/foods_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/app/controllers/foods_controller.rb -------------------------------------------------------------------------------- /app/controllers/meal_records/picture_attachments_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/app/controllers/meal_records/picture_attachments_controller.rb -------------------------------------------------------------------------------- /app/controllers/meal_records_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/app/controllers/meal_records_controller.rb -------------------------------------------------------------------------------- /app/controllers/oauths_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/app/controllers/oauths_controller.rb -------------------------------------------------------------------------------- /app/controllers/static_pages_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/app/controllers/static_pages_controller.rb -------------------------------------------------------------------------------- /app/controllers/user_sessions_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/app/controllers/user_sessions_controller.rb -------------------------------------------------------------------------------- /app/controllers/users_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/app/controllers/users_controller.rb -------------------------------------------------------------------------------- /app/dashboards/authentication_dashboard.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/app/dashboards/authentication_dashboard.rb -------------------------------------------------------------------------------- /app/dashboards/food_dashboard.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/app/dashboards/food_dashboard.rb -------------------------------------------------------------------------------- /app/dashboards/food_food_genre_dashboard.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/app/dashboards/food_food_genre_dashboard.rb -------------------------------------------------------------------------------- /app/dashboards/food_genre_dashboard.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/app/dashboards/food_genre_dashboard.rb -------------------------------------------------------------------------------- /app/dashboards/meal_picture_dashboard.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/app/dashboards/meal_picture_dashboard.rb -------------------------------------------------------------------------------- /app/dashboards/meal_record_dashboard.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/app/dashboards/meal_record_dashboard.rb -------------------------------------------------------------------------------- /app/dashboards/user_dashboard.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/app/dashboards/user_dashboard.rb -------------------------------------------------------------------------------- /app/decorators/meal_record_decorator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/app/decorators/meal_record_decorator.rb -------------------------------------------------------------------------------- /app/helpers/application_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/app/helpers/application_helper.rb -------------------------------------------------------------------------------- /app/javascript/administrate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/app/javascript/administrate.js -------------------------------------------------------------------------------- /app/javascript/administrate/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/app/javascript/administrate/index.js -------------------------------------------------------------------------------- /app/javascript/channels/consumer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/app/javascript/channels/consumer.js -------------------------------------------------------------------------------- /app/javascript/channels/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/app/javascript/channels/index.js -------------------------------------------------------------------------------- /app/javascript/close_message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/app/javascript/close_message.js -------------------------------------------------------------------------------- /app/javascript/components/date_time_picker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/app/javascript/components/date_time_picker.js -------------------------------------------------------------------------------- /app/javascript/components/table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/app/javascript/components/table.js -------------------------------------------------------------------------------- /app/javascript/images/caby.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/app/javascript/images/caby.jpg -------------------------------------------------------------------------------- /app/javascript/images/top_page/zerorie_top_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/app/javascript/images/top_page/zerorie_top_1.png -------------------------------------------------------------------------------- /app/javascript/images/top_page/zerorie_top_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/app/javascript/images/top_page/zerorie_top_2.png -------------------------------------------------------------------------------- /app/javascript/images/top_page/zerorie_top_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/app/javascript/images/top_page/zerorie_top_3.png -------------------------------------------------------------------------------- /app/javascript/images/zerorie_logo/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/app/javascript/images/zerorie_logo/favicon.png -------------------------------------------------------------------------------- /app/javascript/images/zerorie_logo/header_logo_transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/app/javascript/images/zerorie_logo/header_logo_transparent.png -------------------------------------------------------------------------------- /app/javascript/images/zerorie_logo/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/app/javascript/images/zerorie_logo/logo.png -------------------------------------------------------------------------------- /app/javascript/images/zerorie_logo/logo_transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/app/javascript/images/zerorie_logo/logo_transparent.png -------------------------------------------------------------------------------- /app/javascript/images/zerorie_logo/zerorie_header_under_bar_transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/app/javascript/images/zerorie_logo/zerorie_header_under_bar_transparent.png -------------------------------------------------------------------------------- /app/javascript/images/zerorie_logo/zerorie_under_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/app/javascript/images/zerorie_logo/zerorie_under_bar.png -------------------------------------------------------------------------------- /app/javascript/jquery/submit_food_image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/app/javascript/jquery/submit_food_image.js -------------------------------------------------------------------------------- /app/javascript/meal_record_pictures_preview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/app/javascript/meal_record_pictures_preview.js -------------------------------------------------------------------------------- /app/javascript/packs/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/app/javascript/packs/application.js -------------------------------------------------------------------------------- /app/javascript/packs/meal_time_form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/app/javascript/packs/meal_time_form.js -------------------------------------------------------------------------------- /app/javascript/packs/search_by_picture_input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/app/javascript/packs/search_by_picture_input.js -------------------------------------------------------------------------------- /app/javascript/search_meal_time_form.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/javascript/search_picture_preview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/app/javascript/search_picture_preview.js -------------------------------------------------------------------------------- /app/javascript/stylesheets/application.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/app/javascript/stylesheets/application.scss -------------------------------------------------------------------------------- /app/javascript/stylesheets/body.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/app/javascript/stylesheets/body.scss -------------------------------------------------------------------------------- /app/javascript/stylesheets/calorie_theory_text.scss: -------------------------------------------------------------------------------- 1 | .calorie_theory { 2 | font-size: 1.5em; 3 | } -------------------------------------------------------------------------------- /app/javascript/stylesheets/flash_message.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/app/javascript/stylesheets/flash_message.scss -------------------------------------------------------------------------------- /app/javascript/stylesheets/food.scss: -------------------------------------------------------------------------------- 1 | .food-new-picture { 2 | width: 100%; 3 | } -------------------------------------------------------------------------------- /app/javascript/stylesheets/footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/app/javascript/stylesheets/footer.scss -------------------------------------------------------------------------------- /app/javascript/stylesheets/header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/app/javascript/stylesheets/header.scss -------------------------------------------------------------------------------- /app/javascript/stylesheets/meal_record.scss: -------------------------------------------------------------------------------- 1 | .input-time { 2 | height: 95%; 3 | } 4 | -------------------------------------------------------------------------------- /app/javascript/stylesheets/top.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/app/javascript/stylesheets/top.scss -------------------------------------------------------------------------------- /app/jobs/application_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/app/jobs/application_job.rb -------------------------------------------------------------------------------- /app/mailers/application_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/app/mailers/application_mailer.rb -------------------------------------------------------------------------------- /app/models/application_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/app/models/application_record.rb -------------------------------------------------------------------------------- /app/models/authentication.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/app/models/authentication.rb -------------------------------------------------------------------------------- /app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/food.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/app/models/food.rb -------------------------------------------------------------------------------- /app/models/food_food_genre.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/app/models/food_food_genre.rb -------------------------------------------------------------------------------- /app/models/food_genre.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/app/models/food_genre.rb -------------------------------------------------------------------------------- /app/models/meal_picture.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/app/models/meal_picture.rb -------------------------------------------------------------------------------- /app/models/meal_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/app/models/meal_record.rb -------------------------------------------------------------------------------- /app/models/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/app/models/user.rb -------------------------------------------------------------------------------- /app/views/food_genres/edit.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/app/views/food_genres/edit.html.slim -------------------------------------------------------------------------------- /app/views/food_genres/index.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/app/views/food_genres/index.html.slim -------------------------------------------------------------------------------- /app/views/food_genres/new.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/app/views/food_genres/new.html.slim -------------------------------------------------------------------------------- /app/views/food_genres/show.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/app/views/food_genres/show.html.slim -------------------------------------------------------------------------------- /app/views/foods/_search_by_picture.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/app/views/foods/_search_by_picture.html.slim -------------------------------------------------------------------------------- /app/views/foods/_search_form.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/app/views/foods/_search_form.html.slim -------------------------------------------------------------------------------- /app/views/foods/_search_result.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/app/views/foods/_search_result.html.slim -------------------------------------------------------------------------------- /app/views/foods/new.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/app/views/foods/new.html.slim -------------------------------------------------------------------------------- /app/views/foods/search_form_result.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/app/views/foods/search_form_result.html.slim -------------------------------------------------------------------------------- /app/views/foods/search_picture_result.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/app/views/foods/search_picture_result.html.slim -------------------------------------------------------------------------------- /app/views/kaminari/_first_page.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/app/views/kaminari/_first_page.html.slim -------------------------------------------------------------------------------- /app/views/kaminari/_gap.html.slim: -------------------------------------------------------------------------------- 1 | .item 2 | = t('views.pagination.truncate').html_safe 3 | -------------------------------------------------------------------------------- /app/views/kaminari/_last_page.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/app/views/kaminari/_last_page.html.slim -------------------------------------------------------------------------------- /app/views/kaminari/_next_page.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/app/views/kaminari/_next_page.html.slim -------------------------------------------------------------------------------- /app/views/kaminari/_page.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/app/views/kaminari/_page.html.slim -------------------------------------------------------------------------------- /app/views/kaminari/_paginator.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/app/views/kaminari/_paginator.html.slim -------------------------------------------------------------------------------- /app/views/kaminari/_prev_page.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/app/views/kaminari/_prev_page.html.slim -------------------------------------------------------------------------------- /app/views/layouts/_google_tag_manager.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/app/views/layouts/_google_tag_manager.html.slim -------------------------------------------------------------------------------- /app/views/layouts/_google_tag_manager_noscript.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/app/views/layouts/_google_tag_manager_noscript.html.slim -------------------------------------------------------------------------------- /app/views/layouts/admin/application.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/app/views/layouts/admin/application.html.slim -------------------------------------------------------------------------------- /app/views/layouts/admin/application/_javascript.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/app/views/layouts/admin/application/_javascript.html.slim -------------------------------------------------------------------------------- /app/views/layouts/application.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/app/views/layouts/application.html.slim -------------------------------------------------------------------------------- /app/views/layouts/mailer.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/app/views/layouts/mailer.html.slim -------------------------------------------------------------------------------- /app/views/layouts/mailer.text.slim: -------------------------------------------------------------------------------- 1 | = yield 2 | -------------------------------------------------------------------------------- /app/views/meal_records/_search_meal_time_form.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/app/views/meal_records/_search_meal_time_form.html.slim -------------------------------------------------------------------------------- /app/views/meal_records/edit.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/app/views/meal_records/edit.html.slim -------------------------------------------------------------------------------- /app/views/meal_records/index.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/app/views/meal_records/index.html.slim -------------------------------------------------------------------------------- /app/views/meal_records/new.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/app/views/meal_records/new.html.slim -------------------------------------------------------------------------------- /app/views/meal_records/picture_attachments/destroy.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/app/views/meal_records/picture_attachments/destroy.js.erb -------------------------------------------------------------------------------- /app/views/meal_records/picture_attachments/destroy.js.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/app/views/meal_records/picture_attachments/destroy.js.slim -------------------------------------------------------------------------------- /app/views/meal_records/show.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/app/views/meal_records/show.html.slim -------------------------------------------------------------------------------- /app/views/shared/_before_login_header.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/app/views/shared/_before_login_header.html.slim -------------------------------------------------------------------------------- /app/views/shared/_error_messages.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/app/views/shared/_error_messages.html.slim -------------------------------------------------------------------------------- /app/views/shared/_flash_message.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/app/views/shared/_flash_message.html.slim -------------------------------------------------------------------------------- /app/views/shared/_footer.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/app/views/shared/_footer.html.slim -------------------------------------------------------------------------------- /app/views/shared/_header.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/app/views/shared/_header.html.slim -------------------------------------------------------------------------------- /app/views/shared/_tweet_share.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/app/views/shared/_tweet_share.html.slim -------------------------------------------------------------------------------- /app/views/static_pages/top.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/app/views/static_pages/top.html.slim -------------------------------------------------------------------------------- /app/views/user_sessions/new.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/app/views/user_sessions/new.html.slim -------------------------------------------------------------------------------- /app/views/users/new.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/app/views/users/new.html.slim -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/babel.config.js -------------------------------------------------------------------------------- /bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/bin/rails -------------------------------------------------------------------------------- /bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/bin/rake -------------------------------------------------------------------------------- /bin/rspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/bin/rspec -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/bin/setup -------------------------------------------------------------------------------- /bin/spring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/bin/spring -------------------------------------------------------------------------------- /bin/webpack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/bin/webpack -------------------------------------------------------------------------------- /bin/webpack-dev-server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/bin/webpack-dev-server -------------------------------------------------------------------------------- /bin/yarn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/bin/yarn -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/codecov.yml -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/config.ru -------------------------------------------------------------------------------- /config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/config/application.rb -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/config/boot.rb -------------------------------------------------------------------------------- /config/cable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/config/cable.yml -------------------------------------------------------------------------------- /config/credentials.yml.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/config/credentials.yml.enc -------------------------------------------------------------------------------- /config/credentials/environment.yml.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/config/credentials/environment.yml.enc -------------------------------------------------------------------------------- /config/credentials/production.yml.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/config/credentials/production.yml.enc -------------------------------------------------------------------------------- /config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/config/database.yml -------------------------------------------------------------------------------- /config/deploy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/config/deploy.rb -------------------------------------------------------------------------------- /config/deploy/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/config/deploy/production.rb -------------------------------------------------------------------------------- /config/deploy/staging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/config/deploy/staging.rb -------------------------------------------------------------------------------- /config/deploy/templates/nginx_conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/config/deploy/templates/nginx_conf.erb -------------------------------------------------------------------------------- /config/deploy/templates/puma.rb.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/config/deploy/templates/puma.rb.erb -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/config/environment.rb -------------------------------------------------------------------------------- /config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/config/environments/development.rb -------------------------------------------------------------------------------- /config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/config/environments/production.rb -------------------------------------------------------------------------------- /config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/config/environments/test.rb -------------------------------------------------------------------------------- /config/initializers/application_controller_renderer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/config/initializers/application_controller_renderer.rb -------------------------------------------------------------------------------- /config/initializers/assets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/config/initializers/assets.rb -------------------------------------------------------------------------------- /config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /config/initializers/config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/config/initializers/config.rb -------------------------------------------------------------------------------- /config/initializers/content_security_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/config/initializers/content_security_policy.rb -------------------------------------------------------------------------------- /config/initializers/cookies_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/config/initializers/cookies_serializer.rb -------------------------------------------------------------------------------- /config/initializers/exception_notification.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/config/initializers/exception_notification.rb -------------------------------------------------------------------------------- /config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/config/initializers/filter_parameter_logging.rb -------------------------------------------------------------------------------- /config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/config/initializers/inflections.rb -------------------------------------------------------------------------------- /config/initializers/kaminari_config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/config/initializers/kaminari_config.rb -------------------------------------------------------------------------------- /config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /config/initializers/sorcery.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/config/initializers/sorcery.rb -------------------------------------------------------------------------------- /config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /config/locales/activerecord/ja.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/config/locales/activerecord/ja.yml -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/config/locales/en.yml -------------------------------------------------------------------------------- /config/locales/ja.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/config/locales/ja.yml -------------------------------------------------------------------------------- /config/locales/views/ja.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/config/locales/views/ja.yml -------------------------------------------------------------------------------- /config/puma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/config/puma.rb -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/config/routes.rb -------------------------------------------------------------------------------- /config/rubocop/rspec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/config/rubocop/rspec.yml -------------------------------------------------------------------------------- /config/settings.local.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/settings.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/settings/development.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/config/settings/development.yml -------------------------------------------------------------------------------- /config/settings/production.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/config/settings/production.yml -------------------------------------------------------------------------------- /config/settings/test.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/spring.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/config/spring.rb -------------------------------------------------------------------------------- /config/storage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/config/storage.yml -------------------------------------------------------------------------------- /config/webpack/development.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/config/webpack/development.js -------------------------------------------------------------------------------- /config/webpack/environment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/config/webpack/environment.js -------------------------------------------------------------------------------- /config/webpack/production.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/config/webpack/production.js -------------------------------------------------------------------------------- /config/webpack/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/config/webpack/test.js -------------------------------------------------------------------------------- /config/webpacker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/config/webpacker.yml -------------------------------------------------------------------------------- /db/migrate/20200802075924_create_meal_records.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/db/migrate/20200802075924_create_meal_records.rb -------------------------------------------------------------------------------- /db/migrate/20200802080924_create_active_storage_tables.active_storage.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/db/migrate/20200802080924_create_active_storage_tables.active_storage.rb -------------------------------------------------------------------------------- /db/migrate/20200804123950_create_foods.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/db/migrate/20200804123950_create_foods.rb -------------------------------------------------------------------------------- /db/migrate/20200810110859_sorcery_core.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/db/migrate/20200810110859_sorcery_core.rb -------------------------------------------------------------------------------- /db/migrate/20200811024921_add_user_to_meal_records.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/db/migrate/20200811024921_add_user_to_meal_records.rb -------------------------------------------------------------------------------- /db/migrate/20200811054747_sorcery_external.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/db/migrate/20200811054747_sorcery_external.rb -------------------------------------------------------------------------------- /db/migrate/20200811154257_create_meal_pictures.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/db/migrate/20200811154257_create_meal_pictures.rb -------------------------------------------------------------------------------- /db/migrate/20200812160417_add_food_ref_to_meal_records.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/db/migrate/20200812160417_add_food_ref_to_meal_records.rb -------------------------------------------------------------------------------- /db/migrate/20200829102806_create_food_genres.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/db/migrate/20200829102806_create_food_genres.rb -------------------------------------------------------------------------------- /db/migrate/20200829110141_create_food_food_genres.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/db/migrate/20200829110141_create_food_food_genres.rb -------------------------------------------------------------------------------- /db/migrate/20200829141400_add_role_to_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/db/migrate/20200829141400_add_role_to_users.rb -------------------------------------------------------------------------------- /db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/db/schema.rb -------------------------------------------------------------------------------- /db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/db/seeds.rb -------------------------------------------------------------------------------- /db/seeds/food/alcohol.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/db/seeds/food/alcohol.rb -------------------------------------------------------------------------------- /db/seeds/food/chinese.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/db/seeds/food/chinese.rb -------------------------------------------------------------------------------- /db/seeds/food/donburi.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/db/seeds/food/donburi.rb -------------------------------------------------------------------------------- /db/seeds/food/flied.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/db/seeds/food/flied.rb -------------------------------------------------------------------------------- /db/seeds/food/fruit.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/db/seeds/food/fruit.rb -------------------------------------------------------------------------------- /db/seeds/food/ice.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/db/seeds/food/ice.rb -------------------------------------------------------------------------------- /db/seeds/food/italian.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/db/seeds/food/italian.rb -------------------------------------------------------------------------------- /db/seeds/food/japanese_sweets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/db/seeds/food/japanese_sweets.rb -------------------------------------------------------------------------------- /db/seeds/food/juice.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/db/seeds/food/juice.rb -------------------------------------------------------------------------------- /db/seeds/food/meat.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/db/seeds/food/meat.rb -------------------------------------------------------------------------------- /db/seeds/food/mushroom.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/db/seeds/food/mushroom.rb -------------------------------------------------------------------------------- /db/seeds/food/nabemono.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/db/seeds/food/nabemono.rb -------------------------------------------------------------------------------- /db/seeds/food/noodle.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/db/seeds/food/noodle.rb -------------------------------------------------------------------------------- /db/seeds/food/okinawa.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/db/seeds/food/okinawa.rb -------------------------------------------------------------------------------- /db/seeds/food/other.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/db/seeds/food/other.rb -------------------------------------------------------------------------------- /db/seeds/food/seafood.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/db/seeds/food/seafood.rb -------------------------------------------------------------------------------- /db/seeds/food/sweets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/db/seeds/food/sweets.rb -------------------------------------------------------------------------------- /db/seeds/food/vegitable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/db/seeds/food/vegitable.rb -------------------------------------------------------------------------------- /db/seeds/food/western.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/db/seeds/food/western.rb -------------------------------------------------------------------------------- /db/seeds/food/white_food.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/db/seeds/food/white_food.rb -------------------------------------------------------------------------------- /db/seeds/user/admin_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/db/seeds/user/admin_user.rb -------------------------------------------------------------------------------- /db/seeds/user/guest_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/db/seeds/user/guest_user.rb -------------------------------------------------------------------------------- /db/seeds/user/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/db/seeds/user/user.rb -------------------------------------------------------------------------------- /lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/capistrano/tasks/custom.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/lib/capistrano/tasks/custom.rake -------------------------------------------------------------------------------- /lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/tasks/auto_annotate_models.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/lib/tasks/auto_annotate_models.rake -------------------------------------------------------------------------------- /log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/public/404.html -------------------------------------------------------------------------------- /public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/public/422.html -------------------------------------------------------------------------------- /public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/public/500.html -------------------------------------------------------------------------------- /public/apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/apple-touch-icon.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/img/zerorie_ogp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/public/img/zerorie_ogp.jpg -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/public/robots.txt -------------------------------------------------------------------------------- /spec/decorators/meal_record_decorator_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/spec/decorators/meal_record_decorator_spec.rb -------------------------------------------------------------------------------- /spec/factories/authentications.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/spec/factories/authentications.rb -------------------------------------------------------------------------------- /spec/factories/food_food_genres.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/spec/factories/food_food_genres.rb -------------------------------------------------------------------------------- /spec/factories/food_genres.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/spec/factories/food_genres.rb -------------------------------------------------------------------------------- /spec/factories/foods.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/spec/factories/foods.rb -------------------------------------------------------------------------------- /spec/factories/meal_pictures.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/spec/factories/meal_pictures.rb -------------------------------------------------------------------------------- /spec/factories/meal_records.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/spec/factories/meal_records.rb -------------------------------------------------------------------------------- /spec/factories/users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/spec/factories/users.rb -------------------------------------------------------------------------------- /spec/helpers/application_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/spec/helpers/application_helper.rb -------------------------------------------------------------------------------- /spec/models/authentication_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/spec/models/authentication_spec.rb -------------------------------------------------------------------------------- /spec/models/food_food_genre_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/spec/models/food_food_genre_spec.rb -------------------------------------------------------------------------------- /spec/models/food_genre_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/spec/models/food_genre_spec.rb -------------------------------------------------------------------------------- /spec/models/food_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/spec/models/food_spec.rb -------------------------------------------------------------------------------- /spec/models/meal_picture_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/spec/models/meal_picture_spec.rb -------------------------------------------------------------------------------- /spec/models/meal_record_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/spec/models/meal_record_spec.rb -------------------------------------------------------------------------------- /spec/models/user_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/spec/models/user_spec.rb -------------------------------------------------------------------------------- /spec/rails_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/spec/rails_helper.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/support/capybara.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/spec/support/capybara.rb -------------------------------------------------------------------------------- /spec/support/login_macros.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/spec/support/login_macros.rb -------------------------------------------------------------------------------- /spec/support/omniauth_macros.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/spec/support/omniauth_macros.rb -------------------------------------------------------------------------------- /spec/system/common/title_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/spec/system/common/title_spec.rb -------------------------------------------------------------------------------- /spec/system/login/login_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/spec/system/login/login_spec.rb -------------------------------------------------------------------------------- /spec/system/users/users_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/spec/system/users/users_spec.rb -------------------------------------------------------------------------------- /storage/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/application_system_test_case.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/test/application_system_test_case.rb -------------------------------------------------------------------------------- /test/channels/application_cable/connection_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/test/channels/application_cable/connection_test.rb -------------------------------------------------------------------------------- /test/controllers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/files/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/helpers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/system/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/test/test_helper.rb -------------------------------------------------------------------------------- /tmp/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tmp/pids/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryota1116/zero_calorie/HEAD/yarn.lock --------------------------------------------------------------------------------