├── .babelrc ├── .gitignore ├── .rspec ├── Gemfile ├── Gemfile.lock ├── README.md ├── Rakefile ├── Untitled ├── app ├── assets │ ├── config │ │ └── manifest.js │ ├── images │ │ ├── .keep │ │ ├── 404_background.jpg │ │ ├── Goodgames.htm │ │ ├── Goodgames_files │ │ │ ├── action_cable.self-69fddfcddf4fdef9828648f9330d6ce108b93b82b0b8d3affffc59a114853451.js │ │ │ ├── application.self-39d3d9937ff1dc2aaf610ecfa6dee70fabf614045477f2048056b955c727373e.css │ │ │ ├── application.self-66347cf0a4cb1f26f76868b4697a9eee457c8c3a6da80c6fdd76ff77e911715e.js │ │ │ ├── bundle.self-d9f07ba35ad7ab8715f4d5500710ce79f33f5ea0617d5c938eb1fcdf7eb55d3f.js │ │ │ ├── cable.self-8484513823f404ed0c0f039f75243bfdede7af7919dda65f2e66391252443ce9.js │ │ │ ├── font-awesome.min.css │ │ │ ├── jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js │ │ │ ├── jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js │ │ │ ├── rails-ujs.self-817d9a8cb641f7125060cb18fefada3f35339170767c4e003105f92d4c204e39.js │ │ │ ├── sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js │ │ │ ├── static_pages.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js │ │ │ └── users.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js │ │ ├── alien_sprite.png │ │ ├── github-logo_25231.html │ │ └── linkedin.html │ ├── javascripts │ │ ├── api │ │ │ ├── collection_games.coffee │ │ │ ├── collections.coffee │ │ │ ├── friendships.coffee │ │ │ ├── games.coffee │ │ │ ├── reviews.coffee │ │ │ ├── sessions.coffee │ │ │ └── users.coffee │ │ ├── application.js │ │ ├── cable.js │ │ ├── channels │ │ │ └── .keep │ │ └── static_pages.coffee │ └── stylesheets │ │ ├── api │ │ ├── collection_games.scss │ │ ├── collections.scss │ │ ├── friendships.scss │ │ ├── games.scss │ │ ├── reviews.scss │ │ ├── sessions.scss │ │ └── users.scss │ │ ├── application.css.scss │ │ ├── base │ │ ├── colors.scss │ │ ├── fonts.scss │ │ ├── grid.scss │ │ ├── layout.scss │ │ └── reset.scss │ │ ├── components │ │ ├── collections-show.scss │ │ ├── game-index.scss │ │ ├── game-show.scss │ │ ├── nav-bar.scss │ │ ├── not-found.scss │ │ ├── review-form.scss │ │ ├── review.scss │ │ ├── session-forms.scss │ │ ├── side-bar.scss │ │ ├── splash.scss │ │ ├── twitch.scss │ │ └── user_profile.scss │ │ └── static_pages.scss ├── channels │ └── application_cable │ │ ├── channel.rb │ │ └── connection.rb ├── controllers │ ├── api │ │ ├── collection_games_controller.rb │ │ ├── collections_controller.rb │ │ ├── friendships_controller.rb │ │ ├── games_controller.rb │ │ ├── reviews_controller.rb │ │ ├── sessions_controller.rb │ │ └── users_controller.rb │ ├── application_controller.rb │ ├── concerns │ │ └── .keep │ └── static_pages_controller.rb ├── helpers │ ├── api │ │ ├── collection_games_helper.rb │ │ ├── collections_helper.rb │ │ ├── friendships_helper.rb │ │ ├── games_helper.rb │ │ ├── reviews_helper.rb │ │ ├── sessions_helper.rb │ │ └── users_helper.rb │ ├── application_helper.rb │ └── static_pages_helper.rb ├── jobs │ └── application_job.rb ├── mailers │ └── application_mailer.rb ├── models │ ├── application_record.rb │ ├── collection.rb │ ├── collection_game.rb │ ├── concerns │ │ └── .keep │ ├── developer.rb │ ├── game.rb │ ├── genre.rb │ ├── genre_game.rb │ ├── platform.rb │ ├── platform_game.rb │ ├── review.rb │ └── user.rb └── views │ ├── api │ ├── collection_games │ │ └── show.json.jbuilder │ ├── collections │ │ ├── index.json.jbuilder │ │ └── show.json.jbuilder │ ├── friendships │ │ └── show.json.jbuilder │ ├── games │ │ ├── index.json.jbuilder │ │ ├── search.json.jbuilder │ │ └── show.json.jbuilder │ ├── reviews │ │ ├── index.json.jbuilder │ │ └── show.json.jbuilder │ └── users │ │ ├── _user.json.jbuilder │ │ └── show.json.jbuilder │ ├── layouts │ ├── application.html.erb │ ├── mailer.html.erb │ └── mailer.text.erb │ └── static_pages │ └── root.html.erb ├── bin ├── bundle ├── rails ├── rake ├── setup ├── spring ├── update └── yarn ├── config.ru ├── config ├── application.rb ├── boot.rb ├── cable.yml ├── database.yml ├── environment.rb ├── environments │ ├── development.rb │ ├── production.rb │ └── test.rb ├── initializers │ ├── application_controller_renderer.rb │ ├── assets.rb │ ├── backtrace_silencers.rb │ ├── cookies_serializer.rb │ ├── filter_parameter_logging.rb │ ├── inflections.rb │ ├── mime_types.rb │ └── wrap_parameters.rb ├── locales │ └── en.yml ├── puma.rb ├── routes.rb ├── secrets.yml └── spring.rb ├── db ├── _schema.rb ├── _seeds.rb ├── migrate │ ├── 20180127045055_create_users.rb │ ├── 20180129220759_create_games.rb │ ├── 20180129222407_create_developers.rb │ ├── 20180130012501_create_platforms.rb │ ├── 20180130012639_create_platform_games.rb │ ├── 20180130044122_create_collections.rb │ ├── 20180130044152_create_collection_games.rb │ ├── 20180131051323_remove_release_date_from_games.rb │ ├── 20180131051526_add_release_date_to_games.rb │ ├── 20180201062804_add_indices_to_collection_games.rb │ ├── 20180201092728_add_index_to_collections.rb │ ├── 20180204200001_create_reviews.rb │ ├── 20180205042551_add.rb │ ├── 20180205053331_change_columns_for_reviews.rb │ ├── 20180205055949_change_null_validation.rb │ ├── 20180207175639_create_genres.rb │ ├── 20180207175728_create_genre_games.rb │ ├── 20180207234607_add_scores_to_game.rb │ ├── 20180208204612_add_count_to_collections.rb │ ├── 20180307183440_add_image_urlto_users.rb │ ├── 20180307195931_add_description_and_tagto_users.rb │ └── 20180309011348_add_friends_to_users.rb ├── schema.rb └── seeds.rb ├── dump.rdb ├── frontend ├── actions │ ├── __tests__ │ │ ├── collections-test.js │ │ ├── games-test.js │ │ └── reviews-test.js │ ├── collections.js │ ├── friends.js │ ├── games.js │ ├── reviews.js │ ├── search.js │ ├── session.js │ └── twitch.js ├── components │ ├── app.jsx │ ├── collections │ │ └── collection_show_container.jsx │ ├── games │ │ ├── __tests__ │ │ │ └── score_stars-test.js │ │ ├── collection_button.jsx │ │ ├── collection_button_container.jsx │ │ ├── game_controls.jsx │ │ ├── game_data.jsx │ │ ├── game_index.jsx │ │ ├── game_index_container.js │ │ ├── game_index_item.jsx │ │ ├── game_info_box.jsx │ │ ├── game_show.jsx │ │ ├── game_show_container.js │ │ ├── game_stats.jsx │ │ ├── mini_game.jsx │ │ ├── review_button.jsx │ │ ├── review_button_container.js │ │ └── score_stars.jsx │ ├── navigation │ │ ├── nav_bar.jsx │ │ ├── nav_bar_container.jsx │ │ └── navigation_todos.MD │ ├── not_found.jsx │ ├── reviews │ │ ├── review_form.jsx │ │ ├── review_form_container.js │ │ ├── review_index.jsx │ │ ├── review_index_container.js │ │ └── review_list_item.jsx │ ├── root.jsx │ ├── search │ │ └── search_container.js │ ├── session │ │ ├── __tests__ │ │ │ └── session-test.js │ │ ├── session.jsx │ │ └── session_container.js │ ├── side_bar │ │ ├── side_bar.jsx │ │ ├── side_bar_collections.jsx │ │ ├── side_bar_collections_container.js │ │ ├── side_bar_container.js │ │ ├── side_bar_following.jsx │ │ └── side_bar_following_container.js │ ├── splash │ │ ├── splash_page.jsx │ │ └── splash_page_container.js │ ├── twitch │ │ ├── twitch_display.jsx │ │ └── twitch_display_container.js │ └── users │ │ ├── collection_index.jsx │ │ ├── collection_row.jsx │ │ ├── user_profile.jsx │ │ ├── user_profile_container.js │ │ ├── user_profile_review_item.jsx │ │ └── user_profile_reviews.jsx ├── goodgames.jsx ├── reducers │ ├── __tests__ │ │ ├── collections-test.js │ │ ├── collections_errors-test.js │ │ ├── games-test.js │ │ ├── review_errors-test.js │ │ ├── reviews-test.js │ │ └── session_errors-test.js │ ├── collections.js │ ├── collections_errors.js │ ├── entities.js │ ├── errors.js │ ├── games.js │ ├── query.js │ ├── review_errors.js │ ├── reviews.js │ ├── root.js │ ├── search.js │ ├── search_games.js │ ├── search_reviews.js │ ├── session.js │ ├── session_errors.js │ ├── twitch.js │ ├── twitch_errors.js │ └── users.js ├── setupEnzymeAdapter.js ├── store │ └── store.js ├── testUtils │ ├── collection_helper.js │ ├── game_helper.js │ └── review_helper.js └── utils │ ├── collection_utils.js │ ├── friends.js │ ├── games.js │ ├── review.js │ ├── route_utils.jsx │ ├── search.js │ ├── session.js │ └── twitch.js ├── lib ├── assets │ └── .keep ├── seeds │ ├── imagetags.csv │ └── seeddata.csv └── tasks │ └── .keep ├── package.json ├── public ├── 404.html ├── 422.html ├── 500.html ├── _favicon.ico ├── apple-touch-icon-precomposed.png ├── apple-touch-icon.png ├── favicon.ico └── robots.txt ├── spec ├── controllers │ └── api │ │ ├── games_controller_spec.rb │ │ ├── sessions_controller_spec.rb │ │ └── users_controller_spec.rb ├── factories │ ├── collections.rb │ ├── developers.rb │ ├── games.rb │ ├── genre_games.rb │ ├── genres.rb │ ├── platform_games.rb │ ├── reviews.rb │ └── users.rb ├── models │ ├── collection_game_spec.rb │ ├── collection_spec.rb │ ├── review_spec.rb │ └── user_spec.rb ├── rails_helper.rb ├── spec_helper.rb └── views │ └── api │ ├── collections │ ├── index.json.jbuilder_spec.rb │ └── show.index.jbuilder_spec.rb │ ├── friends │ └── show.json.jbuilder_spec.rb │ ├── games │ ├── index.json.jbuilder_spec.rb │ ├── search.json.jbuilder_spec.rb │ └── show.json.jbuilder_spec.rb │ ├── reviews │ ├── index.json.jbuilder_spec.rb │ └── show.json.jbuilder_spec.rb │ └── users │ └── show.json.jbuilder_spec.rb ├── splash-image.png ├── test ├── application_system_test_case.rb ├── controllers │ ├── .keep │ ├── api │ │ ├── collection_games_controller_test.rb │ │ ├── collections_controller_test.rb │ │ ├── friendships_controller_test.rb │ │ ├── games_controller_test.rb │ │ ├── reviews_controller_test.rb │ │ ├── sessions_controller_test.rb │ │ └── users_controller_test.rb │ └── static_pages_controller_test.rb ├── fixtures │ ├── .keep │ ├── collection_games.yml │ ├── collections.yml │ ├── developers.yml │ ├── files │ │ └── .keep │ ├── games.yml │ ├── genre_games.yml │ ├── genres.yml │ ├── platform_games.yml │ ├── platforms.yml │ ├── reviews.yml │ └── users.yml ├── helpers │ └── .keep ├── integration │ └── .keep ├── mailers │ └── .keep ├── models │ ├── .keep │ ├── collection_game_test.rb │ ├── collection_test.rb │ ├── developer_test.rb │ ├── game_test.rb │ ├── genre_game_test.rb │ ├── genre_test.rb │ ├── platform_game_test.rb │ ├── platform_test.rb │ ├── review_test.rb │ └── user_test.rb ├── system │ └── .keep └── test_helper.rb ├── vendor └── .keep └── webpack.config.js /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["env", "react"] 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --require spec_helper 3 | --format documentation 4 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/Rakefile -------------------------------------------------------------------------------- /Untitled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/Untitled -------------------------------------------------------------------------------- /app/assets/config/manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/app/assets/config/manifest.js -------------------------------------------------------------------------------- /app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/images/404_background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/app/assets/images/404_background.jpg -------------------------------------------------------------------------------- /app/assets/images/Goodgames.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/app/assets/images/Goodgames.htm -------------------------------------------------------------------------------- /app/assets/images/Goodgames_files/action_cable.self-69fddfcddf4fdef9828648f9330d6ce108b93b82b0b8d3affffc59a114853451.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/app/assets/images/Goodgames_files/action_cable.self-69fddfcddf4fdef9828648f9330d6ce108b93b82b0b8d3affffc59a114853451.js -------------------------------------------------------------------------------- /app/assets/images/Goodgames_files/application.self-39d3d9937ff1dc2aaf610ecfa6dee70fabf614045477f2048056b955c727373e.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/app/assets/images/Goodgames_files/application.self-39d3d9937ff1dc2aaf610ecfa6dee70fabf614045477f2048056b955c727373e.css -------------------------------------------------------------------------------- /app/assets/images/Goodgames_files/application.self-66347cf0a4cb1f26f76868b4697a9eee457c8c3a6da80c6fdd76ff77e911715e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/app/assets/images/Goodgames_files/application.self-66347cf0a4cb1f26f76868b4697a9eee457c8c3a6da80c6fdd76ff77e911715e.js -------------------------------------------------------------------------------- /app/assets/images/Goodgames_files/bundle.self-d9f07ba35ad7ab8715f4d5500710ce79f33f5ea0617d5c938eb1fcdf7eb55d3f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/app/assets/images/Goodgames_files/bundle.self-d9f07ba35ad7ab8715f4d5500710ce79f33f5ea0617d5c938eb1fcdf7eb55d3f.js -------------------------------------------------------------------------------- /app/assets/images/Goodgames_files/cable.self-8484513823f404ed0c0f039f75243bfdede7af7919dda65f2e66391252443ce9.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/app/assets/images/Goodgames_files/cable.self-8484513823f404ed0c0f039f75243bfdede7af7919dda65f2e66391252443ce9.js -------------------------------------------------------------------------------- /app/assets/images/Goodgames_files/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/app/assets/images/Goodgames_files/font-awesome.min.css -------------------------------------------------------------------------------- /app/assets/images/Goodgames_files/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/app/assets/images/Goodgames_files/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js -------------------------------------------------------------------------------- /app/assets/images/Goodgames_files/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/app/assets/images/Goodgames_files/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js -------------------------------------------------------------------------------- /app/assets/images/Goodgames_files/rails-ujs.self-817d9a8cb641f7125060cb18fefada3f35339170767c4e003105f92d4c204e39.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/app/assets/images/Goodgames_files/rails-ujs.self-817d9a8cb641f7125060cb18fefada3f35339170767c4e003105f92d4c204e39.js -------------------------------------------------------------------------------- /app/assets/images/Goodgames_files/sessions.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js: -------------------------------------------------------------------------------- 1 | (function() { 2 | 3 | 4 | }).call(this); 5 | -------------------------------------------------------------------------------- /app/assets/images/Goodgames_files/static_pages.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js: -------------------------------------------------------------------------------- 1 | (function() { 2 | 3 | 4 | }).call(this); 5 | -------------------------------------------------------------------------------- /app/assets/images/Goodgames_files/users.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js: -------------------------------------------------------------------------------- 1 | (function() { 2 | 3 | 4 | }).call(this); 5 | -------------------------------------------------------------------------------- /app/assets/images/alien_sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/app/assets/images/alien_sprite.png -------------------------------------------------------------------------------- /app/assets/images/github-logo_25231.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/app/assets/images/github-logo_25231.html -------------------------------------------------------------------------------- /app/assets/images/linkedin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/app/assets/images/linkedin.html -------------------------------------------------------------------------------- /app/assets/javascripts/api/collection_games.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/app/assets/javascripts/api/collection_games.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/api/collections.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/app/assets/javascripts/api/collections.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/api/friendships.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/app/assets/javascripts/api/friendships.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/api/games.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/app/assets/javascripts/api/games.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/api/reviews.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/app/assets/javascripts/api/reviews.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/api/sessions.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/app/assets/javascripts/api/sessions.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/api/users.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/app/assets/javascripts/api/users.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/app/assets/javascripts/application.js -------------------------------------------------------------------------------- /app/assets/javascripts/cable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/app/assets/javascripts/cable.js -------------------------------------------------------------------------------- /app/assets/javascripts/channels/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/javascripts/static_pages.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/app/assets/javascripts/static_pages.coffee -------------------------------------------------------------------------------- /app/assets/stylesheets/api/collection_games.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/app/assets/stylesheets/api/collection_games.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/api/collections.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/app/assets/stylesheets/api/collections.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/api/friendships.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/app/assets/stylesheets/api/friendships.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/api/games.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/app/assets/stylesheets/api/games.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/api/reviews.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/app/assets/stylesheets/api/reviews.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/api/sessions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/app/assets/stylesheets/api/sessions.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/api/users.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/app/assets/stylesheets/api/users.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/application.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/app/assets/stylesheets/application.css.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/base/colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/app/assets/stylesheets/base/colors.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/base/fonts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/app/assets/stylesheets/base/fonts.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/base/grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/app/assets/stylesheets/base/grid.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/base/layout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/app/assets/stylesheets/base/layout.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/base/reset.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/app/assets/stylesheets/base/reset.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/components/collections-show.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/app/assets/stylesheets/components/collections-show.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/components/game-index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/app/assets/stylesheets/components/game-index.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/components/game-show.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/app/assets/stylesheets/components/game-show.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/components/nav-bar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/app/assets/stylesheets/components/nav-bar.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/components/not-found.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/app/assets/stylesheets/components/not-found.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/components/review-form.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/app/assets/stylesheets/components/review-form.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/components/review.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/app/assets/stylesheets/components/review.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/components/session-forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/app/assets/stylesheets/components/session-forms.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/components/side-bar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/app/assets/stylesheets/components/side-bar.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/components/splash.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/app/assets/stylesheets/components/splash.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/components/twitch.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/app/assets/stylesheets/components/twitch.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/components/user_profile.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/app/assets/stylesheets/components/user_profile.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/static_pages.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/app/assets/stylesheets/static_pages.scss -------------------------------------------------------------------------------- /app/channels/application_cable/channel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/app/channels/application_cable/channel.rb -------------------------------------------------------------------------------- /app/channels/application_cable/connection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/app/channels/application_cable/connection.rb -------------------------------------------------------------------------------- /app/controllers/api/collection_games_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/app/controllers/api/collection_games_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/collections_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/app/controllers/api/collections_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/friendships_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/app/controllers/api/friendships_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/games_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/app/controllers/api/games_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/reviews_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/app/controllers/api/reviews_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/sessions_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/app/controllers/api/sessions_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/users_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/app/controllers/api/users_controller.rb -------------------------------------------------------------------------------- /app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/controllers/static_pages_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/app/controllers/static_pages_controller.rb -------------------------------------------------------------------------------- /app/helpers/api/collection_games_helper.rb: -------------------------------------------------------------------------------- 1 | module Api::CollectionGamesHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/api/collections_helper.rb: -------------------------------------------------------------------------------- 1 | module Api::CollectionsHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/api/friendships_helper.rb: -------------------------------------------------------------------------------- 1 | module Api::FriendshipsHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/api/games_helper.rb: -------------------------------------------------------------------------------- 1 | module Api::GamesHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/api/reviews_helper.rb: -------------------------------------------------------------------------------- 1 | module Api::ReviewsHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/api/sessions_helper.rb: -------------------------------------------------------------------------------- 1 | module Api::SessionsHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/api/users_helper.rb: -------------------------------------------------------------------------------- 1 | module Api::UsersHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/application_helper.rb: -------------------------------------------------------------------------------- 1 | module ApplicationHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/static_pages_helper.rb: -------------------------------------------------------------------------------- 1 | module StaticPagesHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/jobs/application_job.rb: -------------------------------------------------------------------------------- 1 | class ApplicationJob < ActiveJob::Base 2 | end 3 | -------------------------------------------------------------------------------- /app/mailers/application_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/app/mailers/application_mailer.rb -------------------------------------------------------------------------------- /app/models/application_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/app/models/application_record.rb -------------------------------------------------------------------------------- /app/models/collection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/app/models/collection.rb -------------------------------------------------------------------------------- /app/models/collection_game.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/app/models/collection_game.rb -------------------------------------------------------------------------------- /app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/developer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/app/models/developer.rb -------------------------------------------------------------------------------- /app/models/game.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/app/models/game.rb -------------------------------------------------------------------------------- /app/models/genre.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/app/models/genre.rb -------------------------------------------------------------------------------- /app/models/genre_game.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/app/models/genre_game.rb -------------------------------------------------------------------------------- /app/models/platform.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/app/models/platform.rb -------------------------------------------------------------------------------- /app/models/platform_game.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/app/models/platform_game.rb -------------------------------------------------------------------------------- /app/models/review.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/app/models/review.rb -------------------------------------------------------------------------------- /app/models/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/app/models/user.rb -------------------------------------------------------------------------------- /app/views/api/collection_games/show.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/app/views/api/collection_games/show.json.jbuilder -------------------------------------------------------------------------------- /app/views/api/collections/index.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/app/views/api/collections/index.json.jbuilder -------------------------------------------------------------------------------- /app/views/api/collections/show.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/app/views/api/collections/show.json.jbuilder -------------------------------------------------------------------------------- /app/views/api/friendships/show.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/app/views/api/friendships/show.json.jbuilder -------------------------------------------------------------------------------- /app/views/api/games/index.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/app/views/api/games/index.json.jbuilder -------------------------------------------------------------------------------- /app/views/api/games/search.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/app/views/api/games/search.json.jbuilder -------------------------------------------------------------------------------- /app/views/api/games/show.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/app/views/api/games/show.json.jbuilder -------------------------------------------------------------------------------- /app/views/api/reviews/index.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/app/views/api/reviews/index.json.jbuilder -------------------------------------------------------------------------------- /app/views/api/reviews/show.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/app/views/api/reviews/show.json.jbuilder -------------------------------------------------------------------------------- /app/views/api/users/_user.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/app/views/api/users/_user.json.jbuilder -------------------------------------------------------------------------------- /app/views/api/users/show.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/app/views/api/users/show.json.jbuilder -------------------------------------------------------------------------------- /app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /app/views/layouts/mailer.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/app/views/layouts/mailer.html.erb -------------------------------------------------------------------------------- /app/views/layouts/mailer.text.erb: -------------------------------------------------------------------------------- 1 | <%= yield %> 2 | -------------------------------------------------------------------------------- /app/views/static_pages/root.html.erb: -------------------------------------------------------------------------------- 1 |
2 | -------------------------------------------------------------------------------- /bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/bin/bundle -------------------------------------------------------------------------------- /bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/bin/rails -------------------------------------------------------------------------------- /bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/bin/rake -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/bin/setup -------------------------------------------------------------------------------- /bin/spring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/bin/spring -------------------------------------------------------------------------------- /bin/update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/bin/update -------------------------------------------------------------------------------- /bin/yarn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/bin/yarn -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/config.ru -------------------------------------------------------------------------------- /config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/config/application.rb -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/config/boot.rb -------------------------------------------------------------------------------- /config/cable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/config/cable.yml -------------------------------------------------------------------------------- /config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/config/database.yml -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/config/environment.rb -------------------------------------------------------------------------------- /config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/config/environments/development.rb -------------------------------------------------------------------------------- /config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/config/environments/production.rb -------------------------------------------------------------------------------- /config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/config/environments/test.rb -------------------------------------------------------------------------------- /config/initializers/application_controller_renderer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/config/initializers/application_controller_renderer.rb -------------------------------------------------------------------------------- /config/initializers/assets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/config/initializers/assets.rb -------------------------------------------------------------------------------- /config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /config/initializers/cookies_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/config/initializers/cookies_serializer.rb -------------------------------------------------------------------------------- /config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/config/initializers/filter_parameter_logging.rb -------------------------------------------------------------------------------- /config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/config/initializers/inflections.rb -------------------------------------------------------------------------------- /config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/config/locales/en.yml -------------------------------------------------------------------------------- /config/puma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/config/puma.rb -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/config/routes.rb -------------------------------------------------------------------------------- /config/secrets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/config/secrets.yml -------------------------------------------------------------------------------- /config/spring.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/config/spring.rb -------------------------------------------------------------------------------- /db/_schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/db/_schema.rb -------------------------------------------------------------------------------- /db/_seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/db/_seeds.rb -------------------------------------------------------------------------------- /db/migrate/20180127045055_create_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/db/migrate/20180127045055_create_users.rb -------------------------------------------------------------------------------- /db/migrate/20180129220759_create_games.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/db/migrate/20180129220759_create_games.rb -------------------------------------------------------------------------------- /db/migrate/20180129222407_create_developers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/db/migrate/20180129222407_create_developers.rb -------------------------------------------------------------------------------- /db/migrate/20180130012501_create_platforms.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/db/migrate/20180130012501_create_platforms.rb -------------------------------------------------------------------------------- /db/migrate/20180130012639_create_platform_games.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/db/migrate/20180130012639_create_platform_games.rb -------------------------------------------------------------------------------- /db/migrate/20180130044122_create_collections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/db/migrate/20180130044122_create_collections.rb -------------------------------------------------------------------------------- /db/migrate/20180130044152_create_collection_games.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/db/migrate/20180130044152_create_collection_games.rb -------------------------------------------------------------------------------- /db/migrate/20180131051323_remove_release_date_from_games.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/db/migrate/20180131051323_remove_release_date_from_games.rb -------------------------------------------------------------------------------- /db/migrate/20180131051526_add_release_date_to_games.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/db/migrate/20180131051526_add_release_date_to_games.rb -------------------------------------------------------------------------------- /db/migrate/20180201062804_add_indices_to_collection_games.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/db/migrate/20180201062804_add_indices_to_collection_games.rb -------------------------------------------------------------------------------- /db/migrate/20180201092728_add_index_to_collections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/db/migrate/20180201092728_add_index_to_collections.rb -------------------------------------------------------------------------------- /db/migrate/20180204200001_create_reviews.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/db/migrate/20180204200001_create_reviews.rb -------------------------------------------------------------------------------- /db/migrate/20180205042551_add.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/db/migrate/20180205042551_add.rb -------------------------------------------------------------------------------- /db/migrate/20180205053331_change_columns_for_reviews.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/db/migrate/20180205053331_change_columns_for_reviews.rb -------------------------------------------------------------------------------- /db/migrate/20180205055949_change_null_validation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/db/migrate/20180205055949_change_null_validation.rb -------------------------------------------------------------------------------- /db/migrate/20180207175639_create_genres.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/db/migrate/20180207175639_create_genres.rb -------------------------------------------------------------------------------- /db/migrate/20180207175728_create_genre_games.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/db/migrate/20180207175728_create_genre_games.rb -------------------------------------------------------------------------------- /db/migrate/20180207234607_add_scores_to_game.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/db/migrate/20180207234607_add_scores_to_game.rb -------------------------------------------------------------------------------- /db/migrate/20180208204612_add_count_to_collections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/db/migrate/20180208204612_add_count_to_collections.rb -------------------------------------------------------------------------------- /db/migrate/20180307183440_add_image_urlto_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/db/migrate/20180307183440_add_image_urlto_users.rb -------------------------------------------------------------------------------- /db/migrate/20180307195931_add_description_and_tagto_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/db/migrate/20180307195931_add_description_and_tagto_users.rb -------------------------------------------------------------------------------- /db/migrate/20180309011348_add_friends_to_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/db/migrate/20180309011348_add_friends_to_users.rb -------------------------------------------------------------------------------- /db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/db/schema.rb -------------------------------------------------------------------------------- /db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/db/seeds.rb -------------------------------------------------------------------------------- /dump.rdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/dump.rdb -------------------------------------------------------------------------------- /frontend/actions/__tests__/collections-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/frontend/actions/__tests__/collections-test.js -------------------------------------------------------------------------------- /frontend/actions/__tests__/games-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/frontend/actions/__tests__/games-test.js -------------------------------------------------------------------------------- /frontend/actions/__tests__/reviews-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/frontend/actions/__tests__/reviews-test.js -------------------------------------------------------------------------------- /frontend/actions/collections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/frontend/actions/collections.js -------------------------------------------------------------------------------- /frontend/actions/friends.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/frontend/actions/friends.js -------------------------------------------------------------------------------- /frontend/actions/games.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/frontend/actions/games.js -------------------------------------------------------------------------------- /frontend/actions/reviews.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/frontend/actions/reviews.js -------------------------------------------------------------------------------- /frontend/actions/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/frontend/actions/search.js -------------------------------------------------------------------------------- /frontend/actions/session.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/frontend/actions/session.js -------------------------------------------------------------------------------- /frontend/actions/twitch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/frontend/actions/twitch.js -------------------------------------------------------------------------------- /frontend/components/app.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/frontend/components/app.jsx -------------------------------------------------------------------------------- /frontend/components/collections/collection_show_container.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/frontend/components/collections/collection_show_container.jsx -------------------------------------------------------------------------------- /frontend/components/games/__tests__/score_stars-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/frontend/components/games/__tests__/score_stars-test.js -------------------------------------------------------------------------------- /frontend/components/games/collection_button.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/frontend/components/games/collection_button.jsx -------------------------------------------------------------------------------- /frontend/components/games/collection_button_container.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/frontend/components/games/collection_button_container.jsx -------------------------------------------------------------------------------- /frontend/components/games/game_controls.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/frontend/components/games/game_controls.jsx -------------------------------------------------------------------------------- /frontend/components/games/game_data.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/frontend/components/games/game_data.jsx -------------------------------------------------------------------------------- /frontend/components/games/game_index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/frontend/components/games/game_index.jsx -------------------------------------------------------------------------------- /frontend/components/games/game_index_container.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/frontend/components/games/game_index_container.js -------------------------------------------------------------------------------- /frontend/components/games/game_index_item.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/frontend/components/games/game_index_item.jsx -------------------------------------------------------------------------------- /frontend/components/games/game_info_box.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/frontend/components/games/game_info_box.jsx -------------------------------------------------------------------------------- /frontend/components/games/game_show.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/frontend/components/games/game_show.jsx -------------------------------------------------------------------------------- /frontend/components/games/game_show_container.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/frontend/components/games/game_show_container.js -------------------------------------------------------------------------------- /frontend/components/games/game_stats.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/frontend/components/games/game_stats.jsx -------------------------------------------------------------------------------- /frontend/components/games/mini_game.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/frontend/components/games/mini_game.jsx -------------------------------------------------------------------------------- /frontend/components/games/review_button.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/frontend/components/games/review_button.jsx -------------------------------------------------------------------------------- /frontend/components/games/review_button_container.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/frontend/components/games/review_button_container.js -------------------------------------------------------------------------------- /frontend/components/games/score_stars.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/frontend/components/games/score_stars.jsx -------------------------------------------------------------------------------- /frontend/components/navigation/nav_bar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/frontend/components/navigation/nav_bar.jsx -------------------------------------------------------------------------------- /frontend/components/navigation/nav_bar_container.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/frontend/components/navigation/nav_bar_container.jsx -------------------------------------------------------------------------------- /frontend/components/navigation/navigation_todos.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/frontend/components/navigation/navigation_todos.MD -------------------------------------------------------------------------------- /frontend/components/not_found.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/frontend/components/not_found.jsx -------------------------------------------------------------------------------- /frontend/components/reviews/review_form.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/frontend/components/reviews/review_form.jsx -------------------------------------------------------------------------------- /frontend/components/reviews/review_form_container.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/frontend/components/reviews/review_form_container.js -------------------------------------------------------------------------------- /frontend/components/reviews/review_index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/frontend/components/reviews/review_index.jsx -------------------------------------------------------------------------------- /frontend/components/reviews/review_index_container.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/frontend/components/reviews/review_index_container.js -------------------------------------------------------------------------------- /frontend/components/reviews/review_list_item.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/frontend/components/reviews/review_list_item.jsx -------------------------------------------------------------------------------- /frontend/components/root.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/frontend/components/root.jsx -------------------------------------------------------------------------------- /frontend/components/search/search_container.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/frontend/components/search/search_container.js -------------------------------------------------------------------------------- /frontend/components/session/__tests__/session-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/frontend/components/session/__tests__/session-test.js -------------------------------------------------------------------------------- /frontend/components/session/session.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/frontend/components/session/session.jsx -------------------------------------------------------------------------------- /frontend/components/session/session_container.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/frontend/components/session/session_container.js -------------------------------------------------------------------------------- /frontend/components/side_bar/side_bar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/frontend/components/side_bar/side_bar.jsx -------------------------------------------------------------------------------- /frontend/components/side_bar/side_bar_collections.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/frontend/components/side_bar/side_bar_collections.jsx -------------------------------------------------------------------------------- /frontend/components/side_bar/side_bar_collections_container.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/frontend/components/side_bar/side_bar_collections_container.js -------------------------------------------------------------------------------- /frontend/components/side_bar/side_bar_container.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/frontend/components/side_bar/side_bar_container.js -------------------------------------------------------------------------------- /frontend/components/side_bar/side_bar_following.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/frontend/components/side_bar/side_bar_following.jsx -------------------------------------------------------------------------------- /frontend/components/side_bar/side_bar_following_container.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/frontend/components/side_bar/side_bar_following_container.js -------------------------------------------------------------------------------- /frontend/components/splash/splash_page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/frontend/components/splash/splash_page.jsx -------------------------------------------------------------------------------- /frontend/components/splash/splash_page_container.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/frontend/components/splash/splash_page_container.js -------------------------------------------------------------------------------- /frontend/components/twitch/twitch_display.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/frontend/components/twitch/twitch_display.jsx -------------------------------------------------------------------------------- /frontend/components/twitch/twitch_display_container.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/frontend/components/twitch/twitch_display_container.js -------------------------------------------------------------------------------- /frontend/components/users/collection_index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/frontend/components/users/collection_index.jsx -------------------------------------------------------------------------------- /frontend/components/users/collection_row.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/frontend/components/users/collection_row.jsx -------------------------------------------------------------------------------- /frontend/components/users/user_profile.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/frontend/components/users/user_profile.jsx -------------------------------------------------------------------------------- /frontend/components/users/user_profile_container.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/frontend/components/users/user_profile_container.js -------------------------------------------------------------------------------- /frontend/components/users/user_profile_review_item.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/frontend/components/users/user_profile_review_item.jsx -------------------------------------------------------------------------------- /frontend/components/users/user_profile_reviews.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/frontend/components/users/user_profile_reviews.jsx -------------------------------------------------------------------------------- /frontend/goodgames.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/frontend/goodgames.jsx -------------------------------------------------------------------------------- /frontend/reducers/__tests__/collections-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/frontend/reducers/__tests__/collections-test.js -------------------------------------------------------------------------------- /frontend/reducers/__tests__/collections_errors-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/frontend/reducers/__tests__/collections_errors-test.js -------------------------------------------------------------------------------- /frontend/reducers/__tests__/games-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/frontend/reducers/__tests__/games-test.js -------------------------------------------------------------------------------- /frontend/reducers/__tests__/review_errors-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/frontend/reducers/__tests__/review_errors-test.js -------------------------------------------------------------------------------- /frontend/reducers/__tests__/reviews-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/frontend/reducers/__tests__/reviews-test.js -------------------------------------------------------------------------------- /frontend/reducers/__tests__/session_errors-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/frontend/reducers/__tests__/session_errors-test.js -------------------------------------------------------------------------------- /frontend/reducers/collections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/frontend/reducers/collections.js -------------------------------------------------------------------------------- /frontend/reducers/collections_errors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/frontend/reducers/collections_errors.js -------------------------------------------------------------------------------- /frontend/reducers/entities.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/frontend/reducers/entities.js -------------------------------------------------------------------------------- /frontend/reducers/errors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/frontend/reducers/errors.js -------------------------------------------------------------------------------- /frontend/reducers/games.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/frontend/reducers/games.js -------------------------------------------------------------------------------- /frontend/reducers/query.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/frontend/reducers/query.js -------------------------------------------------------------------------------- /frontend/reducers/review_errors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/frontend/reducers/review_errors.js -------------------------------------------------------------------------------- /frontend/reducers/reviews.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/frontend/reducers/reviews.js -------------------------------------------------------------------------------- /frontend/reducers/root.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/frontend/reducers/root.js -------------------------------------------------------------------------------- /frontend/reducers/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/frontend/reducers/search.js -------------------------------------------------------------------------------- /frontend/reducers/search_games.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/frontend/reducers/search_games.js -------------------------------------------------------------------------------- /frontend/reducers/search_reviews.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/frontend/reducers/search_reviews.js -------------------------------------------------------------------------------- /frontend/reducers/session.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/frontend/reducers/session.js -------------------------------------------------------------------------------- /frontend/reducers/session_errors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/frontend/reducers/session_errors.js -------------------------------------------------------------------------------- /frontend/reducers/twitch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/frontend/reducers/twitch.js -------------------------------------------------------------------------------- /frontend/reducers/twitch_errors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/frontend/reducers/twitch_errors.js -------------------------------------------------------------------------------- /frontend/reducers/users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/frontend/reducers/users.js -------------------------------------------------------------------------------- /frontend/setupEnzymeAdapter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/frontend/setupEnzymeAdapter.js -------------------------------------------------------------------------------- /frontend/store/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/frontend/store/store.js -------------------------------------------------------------------------------- /frontend/testUtils/collection_helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/frontend/testUtils/collection_helper.js -------------------------------------------------------------------------------- /frontend/testUtils/game_helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/frontend/testUtils/game_helper.js -------------------------------------------------------------------------------- /frontend/testUtils/review_helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/frontend/testUtils/review_helper.js -------------------------------------------------------------------------------- /frontend/utils/collection_utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/frontend/utils/collection_utils.js -------------------------------------------------------------------------------- /frontend/utils/friends.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/frontend/utils/friends.js -------------------------------------------------------------------------------- /frontend/utils/games.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/frontend/utils/games.js -------------------------------------------------------------------------------- /frontend/utils/review.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/frontend/utils/review.js -------------------------------------------------------------------------------- /frontend/utils/route_utils.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/frontend/utils/route_utils.jsx -------------------------------------------------------------------------------- /frontend/utils/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/frontend/utils/search.js -------------------------------------------------------------------------------- /frontend/utils/session.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/frontend/utils/session.js -------------------------------------------------------------------------------- /frontend/utils/twitch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/frontend/utils/twitch.js -------------------------------------------------------------------------------- /lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/seeds/imagetags.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/lib/seeds/imagetags.csv -------------------------------------------------------------------------------- /lib/seeds/seeddata.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/lib/seeds/seeddata.csv -------------------------------------------------------------------------------- /lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/package.json -------------------------------------------------------------------------------- /public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/public/404.html -------------------------------------------------------------------------------- /public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/public/422.html -------------------------------------------------------------------------------- /public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/public/500.html -------------------------------------------------------------------------------- /public/_favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/apple-touch-icon.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/public/robots.txt -------------------------------------------------------------------------------- /spec/controllers/api/games_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/spec/controllers/api/games_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/api/sessions_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/spec/controllers/api/sessions_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/api/users_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/spec/controllers/api/users_controller_spec.rb -------------------------------------------------------------------------------- /spec/factories/collections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/spec/factories/collections.rb -------------------------------------------------------------------------------- /spec/factories/developers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/spec/factories/developers.rb -------------------------------------------------------------------------------- /spec/factories/games.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/spec/factories/games.rb -------------------------------------------------------------------------------- /spec/factories/genre_games.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/spec/factories/genre_games.rb -------------------------------------------------------------------------------- /spec/factories/genres.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/spec/factories/genres.rb -------------------------------------------------------------------------------- /spec/factories/platform_games.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/spec/factories/platform_games.rb -------------------------------------------------------------------------------- /spec/factories/reviews.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/spec/factories/reviews.rb -------------------------------------------------------------------------------- /spec/factories/users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/spec/factories/users.rb -------------------------------------------------------------------------------- /spec/models/collection_game_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/spec/models/collection_game_spec.rb -------------------------------------------------------------------------------- /spec/models/collection_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/spec/models/collection_spec.rb -------------------------------------------------------------------------------- /spec/models/review_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/spec/models/review_spec.rb -------------------------------------------------------------------------------- /spec/models/user_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/spec/models/user_spec.rb -------------------------------------------------------------------------------- /spec/rails_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/spec/rails_helper.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/views/api/collections/index.json.jbuilder_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/spec/views/api/collections/index.json.jbuilder_spec.rb -------------------------------------------------------------------------------- /spec/views/api/collections/show.index.jbuilder_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/spec/views/api/collections/show.index.jbuilder_spec.rb -------------------------------------------------------------------------------- /spec/views/api/friends/show.json.jbuilder_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/spec/views/api/friends/show.json.jbuilder_spec.rb -------------------------------------------------------------------------------- /spec/views/api/games/index.json.jbuilder_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/spec/views/api/games/index.json.jbuilder_spec.rb -------------------------------------------------------------------------------- /spec/views/api/games/search.json.jbuilder_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/spec/views/api/games/search.json.jbuilder_spec.rb -------------------------------------------------------------------------------- /spec/views/api/games/show.json.jbuilder_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/spec/views/api/games/show.json.jbuilder_spec.rb -------------------------------------------------------------------------------- /spec/views/api/reviews/index.json.jbuilder_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/spec/views/api/reviews/index.json.jbuilder_spec.rb -------------------------------------------------------------------------------- /spec/views/api/reviews/show.json.jbuilder_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/spec/views/api/reviews/show.json.jbuilder_spec.rb -------------------------------------------------------------------------------- /spec/views/api/users/show.json.jbuilder_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/spec/views/api/users/show.json.jbuilder_spec.rb -------------------------------------------------------------------------------- /splash-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/splash-image.png -------------------------------------------------------------------------------- /test/application_system_test_case.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/test/application_system_test_case.rb -------------------------------------------------------------------------------- /test/controllers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/controllers/api/collection_games_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/test/controllers/api/collection_games_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/api/collections_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/test/controllers/api/collections_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/api/friendships_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/test/controllers/api/friendships_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/api/games_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/test/controllers/api/games_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/api/reviews_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/test/controllers/api/reviews_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/api/sessions_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/test/controllers/api/sessions_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/api/users_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/test/controllers/api/users_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/static_pages_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/test/controllers/static_pages_controller_test.rb -------------------------------------------------------------------------------- /test/fixtures/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/collection_games.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/test/fixtures/collection_games.yml -------------------------------------------------------------------------------- /test/fixtures/collections.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/test/fixtures/collections.yml -------------------------------------------------------------------------------- /test/fixtures/developers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/test/fixtures/developers.yml -------------------------------------------------------------------------------- /test/fixtures/files/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/games.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/test/fixtures/games.yml -------------------------------------------------------------------------------- /test/fixtures/genre_games.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/test/fixtures/genre_games.yml -------------------------------------------------------------------------------- /test/fixtures/genres.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/test/fixtures/genres.yml -------------------------------------------------------------------------------- /test/fixtures/platform_games.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/test/fixtures/platform_games.yml -------------------------------------------------------------------------------- /test/fixtures/platforms.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/test/fixtures/platforms.yml -------------------------------------------------------------------------------- /test/fixtures/reviews.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/test/fixtures/reviews.yml -------------------------------------------------------------------------------- /test/fixtures/users.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/test/fixtures/users.yml -------------------------------------------------------------------------------- /test/helpers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/models/collection_game_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/test/models/collection_game_test.rb -------------------------------------------------------------------------------- /test/models/collection_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/test/models/collection_test.rb -------------------------------------------------------------------------------- /test/models/developer_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/test/models/developer_test.rb -------------------------------------------------------------------------------- /test/models/game_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/test/models/game_test.rb -------------------------------------------------------------------------------- /test/models/genre_game_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/test/models/genre_game_test.rb -------------------------------------------------------------------------------- /test/models/genre_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/test/models/genre_test.rb -------------------------------------------------------------------------------- /test/models/platform_game_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/test/models/platform_game_test.rb -------------------------------------------------------------------------------- /test/models/platform_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/test/models/platform_test.rb -------------------------------------------------------------------------------- /test/models/review_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/test/models/review_test.rb -------------------------------------------------------------------------------- /test/models/user_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/test/models/user_test.rb -------------------------------------------------------------------------------- /test/system/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/test/test_helper.rb -------------------------------------------------------------------------------- /vendor/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pchao93/goodPlays/HEAD/webpack.config.js --------------------------------------------------------------------------------