├── .gitignore ├── .rspec ├── Gemfile ├── Gemfile.lock ├── README.md ├── Rakefile ├── app ├── assets │ ├── config │ │ └── manifest.js │ ├── images │ │ ├── .keep │ │ ├── hyperlearn_logo.png │ │ ├── seed_avatars │ │ │ ├── seedavatar1.jpeg │ │ │ ├── seedavatar10.jpeg │ │ │ ├── seedavatar11.jpeg │ │ │ ├── seedavatar12.jpeg │ │ │ ├── seedavatar13.jpeg │ │ │ ├── seedavatar14.jpeg │ │ │ ├── seedavatar15.jpeg │ │ │ ├── seedavatar16.jpeg │ │ │ ├── seedavatar17.jpeg │ │ │ ├── seedavatar18.jpeg │ │ │ ├── seedavatar19.jpeg │ │ │ ├── seedavatar2.jpeg │ │ │ ├── seedavatar20.jpeg │ │ │ ├── seedavatar21.jpeg │ │ │ ├── seedavatar22.jpeg │ │ │ ├── seedavatar23.jpeg │ │ │ ├── seedavatar24.jpeg │ │ │ ├── seedavatar25.jpeg │ │ │ ├── seedavatar26.jpeg │ │ │ ├── seedavatar27.jpeg │ │ │ ├── seedavatar28.jpeg │ │ │ ├── seedavatar29.jpeg │ │ │ ├── seedavatar3.jpeg │ │ │ ├── seedavatar30.jpeg │ │ │ ├── seedavatar31.jpeg │ │ │ ├── seedavatar32.jpeg │ │ │ ├── seedavatar33.jpeg │ │ │ ├── seedavatar34.jpeg │ │ │ ├── seedavatar35.jpeg │ │ │ ├── seedavatar36.jpeg │ │ │ ├── seedavatar37.jpeg │ │ │ ├── seedavatar38.jpeg │ │ │ ├── seedavatar39.jpeg │ │ │ ├── seedavatar4.jpeg │ │ │ ├── seedavatar40.jpeg │ │ │ ├── seedavatar41.jpeg │ │ │ ├── seedavatar42.jpeg │ │ │ ├── seedavatar43.jpeg │ │ │ ├── seedavatar44.jpeg │ │ │ ├── seedavatar45.jpeg │ │ │ ├── seedavatar5.jpeg │ │ │ ├── seedavatar6.jpeg │ │ │ ├── seedavatar7.jpeg │ │ │ ├── seedavatar8.jpeg │ │ │ └── seedavatar9.jpeg │ │ ├── splash.jpg │ │ ├── trey.jpeg │ │ └── wilson.png │ ├── javascripts │ │ ├── application.js │ │ ├── cable.js │ │ ├── cards.coffee │ │ ├── channels │ │ │ └── .keep │ │ ├── decks.coffee │ │ ├── ratings.coffee │ │ └── subjects.coffee │ └── stylesheets │ │ ├── application.css │ │ ├── cards.scss │ │ ├── circular.scss │ │ ├── decks.scss │ │ ├── forms.css │ │ ├── navigation.scss │ │ ├── people.scss │ │ ├── ratings.scss │ │ ├── reset.css │ │ └── subjects.scss ├── channels │ └── application_cable │ │ ├── channel.rb │ │ └── connection.rb ├── controllers │ ├── api │ │ ├── cards_controller.rb │ │ ├── decks_controller.rb │ │ ├── follows_controller.rb │ │ ├── ratings_controller.rb │ │ ├── sessions_controller.rb │ │ ├── subjects_controller.rb │ │ └── users_controller.rb │ ├── application_controller.rb │ ├── concerns │ │ └── .keep │ └── static_pages_controller.rb ├── helpers │ ├── application_helper.rb │ ├── cards_helper.rb │ ├── decks_helper.rb │ ├── ratings_helper.rb │ └── subjects_helper.rb ├── jobs │ └── application_job.rb ├── mailers │ └── application_mailer.rb ├── models │ ├── application_record.rb │ ├── card.rb │ ├── categorization.rb │ ├── category.rb │ ├── concerns │ │ └── .keep │ ├── deck.rb │ ├── follow.rb │ ├── rating.rb │ ├── subject.rb │ └── user.rb └── views │ ├── api │ ├── cards │ │ └── index.json.jbuilder │ ├── decks │ │ ├── index.json.jbuilder │ │ └── show.json.jbuilder │ ├── follows │ │ └── show.json.jbuilder │ ├── subjects │ │ ├── index.json.jbuilder │ │ ├── queries.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 ├── migrate │ ├── 20170821224807_create_users_table_again.rb │ ├── 20170822133334_add_profile_image_to_users.rb │ ├── 20170823132315_create_subjects.rb │ ├── 20170823133924_create_decks.rb │ ├── 20170823134539_create_cards.rb │ ├── 20170823224238_create_follows.rb │ ├── 20170825000819_add_names_to_users.rb │ ├── 20170827203205_create_categories.rb │ ├── 20170827203720_create_categorizations.rb │ ├── 20170827225749_create_ratings.rb │ ├── 20170828210812_fix_users_table.rb │ ├── 20170828220550_add_attachment_image_to_users.rb │ ├── 20170905000345_add_index_to_follow_with_unique.rb │ └── 20170905000817_add_index_to_ratings.rb ├── schema.rb └── seeds.rb ├── docs ├── api_endpoints.md ├── component_hierarchy.md ├── production_readme.md ├── sample-state.md ├── schema.md ├── screens │ ├── ss1.png │ ├── ss2.png │ ├── ss3.png │ ├── ss4.png │ └── ss5.png └── wireframes │ ├── DeckStudyInterface.png │ ├── EditDeck.png │ ├── FrontPage.png │ └── LoggedInInterface.png ├── frontend ├── actions │ ├── card_actions.js │ ├── deck_actions.js │ ├── session_actions.js │ └── subject_actions.js ├── components │ ├── app.jsx │ ├── browse │ │ ├── browse.jsx │ │ ├── browse_panel.jsx │ │ ├── browse_panel_item.jsx │ │ ├── search_panel.jsx │ │ ├── search_results_panel.jsx │ │ └── search_results_panel_item.jsx │ ├── build │ │ └── build.jsx │ ├── card │ │ ├── card_form.jsx │ │ └── card_new.js │ ├── deck │ │ ├── deck_modify.js │ │ └── deck_new.js │ ├── home │ │ ├── deck_panel.js │ │ ├── deck_panel_item.js │ │ ├── homepage.jsx │ │ ├── people_panel.jsx │ │ ├── subject_panel.jsx │ │ └── subject_panel_item.jsx │ ├── nav_bar.jsx │ ├── session │ │ ├── login_form.jsx │ │ ├── signup_form.jsx │ │ └── user_panel.jsx │ ├── splash.jsx │ ├── study │ │ ├── card_rater.jsx │ │ ├── card_viewer.jsx │ │ ├── deck_interface.jsx │ │ ├── deck_interface_panel.jsx │ │ └── study.jsx │ └── subject │ │ ├── subject_modify.js │ │ └── subject_new.js ├── hyperlearn.jsx ├── reducers │ ├── cards_reducer.js │ ├── decks_reducer.js │ ├── root_reducer.js │ ├── session_reducer.js │ └── subjects_reducer.js ├── store │ └── store.js └── utils │ ├── auth_route.js │ ├── card_api_utils.js │ ├── deck_api_utils.js │ ├── protected_route.js │ ├── session_api_utils.js │ ├── splash_route.js │ └── subject_api_utils.js ├── lib ├── assets │ └── .keep └── tasks │ └── .keep ├── package.json ├── public ├── 404.html ├── 422.html ├── 500.html ├── apple-touch-icon-precomposed.png ├── apple-touch-icon.png ├── favicon.ico └── robots.txt ├── spec ├── models │ ├── card_spec.rb │ ├── deck_spec.rb │ └── subject_spec.rb ├── rails_helper.rb └── spec_helper.rb ├── test ├── application_system_test_case.rb ├── controllers │ ├── .keep │ ├── cards_controller_test.rb │ ├── decks_controller_test.rb │ ├── ratings_controller_test.rb │ └── subject_controller_test.rb ├── fixtures │ ├── .keep │ ├── cards.yml │ ├── categories.yml │ ├── categorizations.yml │ ├── files │ │ └── .keep │ └── ratings.yml ├── helpers │ └── .keep ├── integration │ └── .keep ├── mailers │ └── .keep ├── models │ ├── .keep │ ├── card_test.rb │ ├── categorization_test.rb │ ├── category_test.rb │ └── rating_test.rb ├── system │ └── .keep └── test_helper.rb ├── vendor └── .keep └── webpack.config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --require spec_helper 2 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/Rakefile -------------------------------------------------------------------------------- /app/assets/config/manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/app/assets/config/manifest.js -------------------------------------------------------------------------------- /app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/images/hyperlearn_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/app/assets/images/hyperlearn_logo.png -------------------------------------------------------------------------------- /app/assets/images/seed_avatars/seedavatar1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/app/assets/images/seed_avatars/seedavatar1.jpeg -------------------------------------------------------------------------------- /app/assets/images/seed_avatars/seedavatar10.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/app/assets/images/seed_avatars/seedavatar10.jpeg -------------------------------------------------------------------------------- /app/assets/images/seed_avatars/seedavatar11.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/app/assets/images/seed_avatars/seedavatar11.jpeg -------------------------------------------------------------------------------- /app/assets/images/seed_avatars/seedavatar12.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/app/assets/images/seed_avatars/seedavatar12.jpeg -------------------------------------------------------------------------------- /app/assets/images/seed_avatars/seedavatar13.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/app/assets/images/seed_avatars/seedavatar13.jpeg -------------------------------------------------------------------------------- /app/assets/images/seed_avatars/seedavatar14.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/app/assets/images/seed_avatars/seedavatar14.jpeg -------------------------------------------------------------------------------- /app/assets/images/seed_avatars/seedavatar15.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/app/assets/images/seed_avatars/seedavatar15.jpeg -------------------------------------------------------------------------------- /app/assets/images/seed_avatars/seedavatar16.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/app/assets/images/seed_avatars/seedavatar16.jpeg -------------------------------------------------------------------------------- /app/assets/images/seed_avatars/seedavatar17.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/app/assets/images/seed_avatars/seedavatar17.jpeg -------------------------------------------------------------------------------- /app/assets/images/seed_avatars/seedavatar18.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/app/assets/images/seed_avatars/seedavatar18.jpeg -------------------------------------------------------------------------------- /app/assets/images/seed_avatars/seedavatar19.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/app/assets/images/seed_avatars/seedavatar19.jpeg -------------------------------------------------------------------------------- /app/assets/images/seed_avatars/seedavatar2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/app/assets/images/seed_avatars/seedavatar2.jpeg -------------------------------------------------------------------------------- /app/assets/images/seed_avatars/seedavatar20.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/app/assets/images/seed_avatars/seedavatar20.jpeg -------------------------------------------------------------------------------- /app/assets/images/seed_avatars/seedavatar21.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/app/assets/images/seed_avatars/seedavatar21.jpeg -------------------------------------------------------------------------------- /app/assets/images/seed_avatars/seedavatar22.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/app/assets/images/seed_avatars/seedavatar22.jpeg -------------------------------------------------------------------------------- /app/assets/images/seed_avatars/seedavatar23.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/app/assets/images/seed_avatars/seedavatar23.jpeg -------------------------------------------------------------------------------- /app/assets/images/seed_avatars/seedavatar24.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/app/assets/images/seed_avatars/seedavatar24.jpeg -------------------------------------------------------------------------------- /app/assets/images/seed_avatars/seedavatar25.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/app/assets/images/seed_avatars/seedavatar25.jpeg -------------------------------------------------------------------------------- /app/assets/images/seed_avatars/seedavatar26.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/app/assets/images/seed_avatars/seedavatar26.jpeg -------------------------------------------------------------------------------- /app/assets/images/seed_avatars/seedavatar27.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/app/assets/images/seed_avatars/seedavatar27.jpeg -------------------------------------------------------------------------------- /app/assets/images/seed_avatars/seedavatar28.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/app/assets/images/seed_avatars/seedavatar28.jpeg -------------------------------------------------------------------------------- /app/assets/images/seed_avatars/seedavatar29.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/app/assets/images/seed_avatars/seedavatar29.jpeg -------------------------------------------------------------------------------- /app/assets/images/seed_avatars/seedavatar3.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/app/assets/images/seed_avatars/seedavatar3.jpeg -------------------------------------------------------------------------------- /app/assets/images/seed_avatars/seedavatar30.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/app/assets/images/seed_avatars/seedavatar30.jpeg -------------------------------------------------------------------------------- /app/assets/images/seed_avatars/seedavatar31.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/app/assets/images/seed_avatars/seedavatar31.jpeg -------------------------------------------------------------------------------- /app/assets/images/seed_avatars/seedavatar32.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/app/assets/images/seed_avatars/seedavatar32.jpeg -------------------------------------------------------------------------------- /app/assets/images/seed_avatars/seedavatar33.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/app/assets/images/seed_avatars/seedavatar33.jpeg -------------------------------------------------------------------------------- /app/assets/images/seed_avatars/seedavatar34.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/app/assets/images/seed_avatars/seedavatar34.jpeg -------------------------------------------------------------------------------- /app/assets/images/seed_avatars/seedavatar35.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/app/assets/images/seed_avatars/seedavatar35.jpeg -------------------------------------------------------------------------------- /app/assets/images/seed_avatars/seedavatar36.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/app/assets/images/seed_avatars/seedavatar36.jpeg -------------------------------------------------------------------------------- /app/assets/images/seed_avatars/seedavatar37.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/app/assets/images/seed_avatars/seedavatar37.jpeg -------------------------------------------------------------------------------- /app/assets/images/seed_avatars/seedavatar38.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/app/assets/images/seed_avatars/seedavatar38.jpeg -------------------------------------------------------------------------------- /app/assets/images/seed_avatars/seedavatar39.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/app/assets/images/seed_avatars/seedavatar39.jpeg -------------------------------------------------------------------------------- /app/assets/images/seed_avatars/seedavatar4.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/app/assets/images/seed_avatars/seedavatar4.jpeg -------------------------------------------------------------------------------- /app/assets/images/seed_avatars/seedavatar40.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/app/assets/images/seed_avatars/seedavatar40.jpeg -------------------------------------------------------------------------------- /app/assets/images/seed_avatars/seedavatar41.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/app/assets/images/seed_avatars/seedavatar41.jpeg -------------------------------------------------------------------------------- /app/assets/images/seed_avatars/seedavatar42.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/app/assets/images/seed_avatars/seedavatar42.jpeg -------------------------------------------------------------------------------- /app/assets/images/seed_avatars/seedavatar43.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/app/assets/images/seed_avatars/seedavatar43.jpeg -------------------------------------------------------------------------------- /app/assets/images/seed_avatars/seedavatar44.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/app/assets/images/seed_avatars/seedavatar44.jpeg -------------------------------------------------------------------------------- /app/assets/images/seed_avatars/seedavatar45.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/app/assets/images/seed_avatars/seedavatar45.jpeg -------------------------------------------------------------------------------- /app/assets/images/seed_avatars/seedavatar5.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/app/assets/images/seed_avatars/seedavatar5.jpeg -------------------------------------------------------------------------------- /app/assets/images/seed_avatars/seedavatar6.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/app/assets/images/seed_avatars/seedavatar6.jpeg -------------------------------------------------------------------------------- /app/assets/images/seed_avatars/seedavatar7.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/app/assets/images/seed_avatars/seedavatar7.jpeg -------------------------------------------------------------------------------- /app/assets/images/seed_avatars/seedavatar8.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/app/assets/images/seed_avatars/seedavatar8.jpeg -------------------------------------------------------------------------------- /app/assets/images/seed_avatars/seedavatar9.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/app/assets/images/seed_avatars/seedavatar9.jpeg -------------------------------------------------------------------------------- /app/assets/images/splash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/app/assets/images/splash.jpg -------------------------------------------------------------------------------- /app/assets/images/trey.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/app/assets/images/trey.jpeg -------------------------------------------------------------------------------- /app/assets/images/wilson.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/app/assets/images/wilson.png -------------------------------------------------------------------------------- /app/assets/javascripts/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/app/assets/javascripts/application.js -------------------------------------------------------------------------------- /app/assets/javascripts/cable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/app/assets/javascripts/cable.js -------------------------------------------------------------------------------- /app/assets/javascripts/cards.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/app/assets/javascripts/cards.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/channels/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/javascripts/decks.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/app/assets/javascripts/decks.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/ratings.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/app/assets/javascripts/ratings.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/subjects.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/app/assets/javascripts/subjects.coffee -------------------------------------------------------------------------------- /app/assets/stylesheets/application.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/app/assets/stylesheets/application.css -------------------------------------------------------------------------------- /app/assets/stylesheets/cards.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/app/assets/stylesheets/cards.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/circular.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/app/assets/stylesheets/circular.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/decks.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/app/assets/stylesheets/decks.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/forms.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/app/assets/stylesheets/forms.css -------------------------------------------------------------------------------- /app/assets/stylesheets/navigation.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/app/assets/stylesheets/navigation.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/people.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/app/assets/stylesheets/people.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/ratings.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/app/assets/stylesheets/ratings.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/app/assets/stylesheets/reset.css -------------------------------------------------------------------------------- /app/assets/stylesheets/subjects.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/app/assets/stylesheets/subjects.scss -------------------------------------------------------------------------------- /app/channels/application_cable/channel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/app/channels/application_cable/channel.rb -------------------------------------------------------------------------------- /app/channels/application_cable/connection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/app/channels/application_cable/connection.rb -------------------------------------------------------------------------------- /app/controllers/api/cards_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/app/controllers/api/cards_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/decks_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/app/controllers/api/decks_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/follows_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/app/controllers/api/follows_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/ratings_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/app/controllers/api/ratings_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/sessions_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/app/controllers/api/sessions_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/subjects_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/app/controllers/api/subjects_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/users_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/app/controllers/api/users_controller.rb -------------------------------------------------------------------------------- /app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/controllers/static_pages_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/app/controllers/static_pages_controller.rb -------------------------------------------------------------------------------- /app/helpers/application_helper.rb: -------------------------------------------------------------------------------- 1 | module ApplicationHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/cards_helper.rb: -------------------------------------------------------------------------------- 1 | module CardsHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/decks_helper.rb: -------------------------------------------------------------------------------- 1 | module DecksHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/ratings_helper.rb: -------------------------------------------------------------------------------- 1 | module RatingsHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/subjects_helper.rb: -------------------------------------------------------------------------------- 1 | module SubjectsHelper 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/brianwilsongh/HyperLearn/HEAD/app/mailers/application_mailer.rb -------------------------------------------------------------------------------- /app/models/application_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/app/models/application_record.rb -------------------------------------------------------------------------------- /app/models/card.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/app/models/card.rb -------------------------------------------------------------------------------- /app/models/categorization.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/app/models/categorization.rb -------------------------------------------------------------------------------- /app/models/category.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/app/models/category.rb -------------------------------------------------------------------------------- /app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/deck.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/app/models/deck.rb -------------------------------------------------------------------------------- /app/models/follow.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/app/models/follow.rb -------------------------------------------------------------------------------- /app/models/rating.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/app/models/rating.rb -------------------------------------------------------------------------------- /app/models/subject.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/app/models/subject.rb -------------------------------------------------------------------------------- /app/models/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/app/models/user.rb -------------------------------------------------------------------------------- /app/views/api/cards/index.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/app/views/api/cards/index.json.jbuilder -------------------------------------------------------------------------------- /app/views/api/decks/index.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/app/views/api/decks/index.json.jbuilder -------------------------------------------------------------------------------- /app/views/api/decks/show.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/app/views/api/decks/show.json.jbuilder -------------------------------------------------------------------------------- /app/views/api/follows/show.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/app/views/api/follows/show.json.jbuilder -------------------------------------------------------------------------------- /app/views/api/subjects/index.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/app/views/api/subjects/index.json.jbuilder -------------------------------------------------------------------------------- /app/views/api/subjects/queries.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/app/views/api/subjects/queries.json.jbuilder -------------------------------------------------------------------------------- /app/views/api/subjects/show.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/app/views/api/subjects/show.json.jbuilder -------------------------------------------------------------------------------- /app/views/api/users/_user.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/app/views/api/users/_user.json.jbuilder -------------------------------------------------------------------------------- /app/views/api/users/show.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/app/views/api/users/show.json.jbuilder -------------------------------------------------------------------------------- /app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /app/views/layouts/mailer.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/app/views/layouts/mailer.html.erb -------------------------------------------------------------------------------- /app/views/layouts/mailer.text.erb: -------------------------------------------------------------------------------- 1 | <%= yield %> 2 | -------------------------------------------------------------------------------- /app/views/static_pages/root.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/app/views/static_pages/root.html.erb -------------------------------------------------------------------------------- /bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/bin/bundle -------------------------------------------------------------------------------- /bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/bin/rails -------------------------------------------------------------------------------- /bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/bin/rake -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/bin/setup -------------------------------------------------------------------------------- /bin/spring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/bin/spring -------------------------------------------------------------------------------- /bin/update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/bin/update -------------------------------------------------------------------------------- /bin/yarn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/bin/yarn -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/config.ru -------------------------------------------------------------------------------- /config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/config/application.rb -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/config/boot.rb -------------------------------------------------------------------------------- /config/cable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/config/cable.yml -------------------------------------------------------------------------------- /config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/config/database.yml -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/config/environment.rb -------------------------------------------------------------------------------- /config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/config/environments/development.rb -------------------------------------------------------------------------------- /config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/config/environments/production.rb -------------------------------------------------------------------------------- /config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/config/environments/test.rb -------------------------------------------------------------------------------- /config/initializers/application_controller_renderer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/config/initializers/application_controller_renderer.rb -------------------------------------------------------------------------------- /config/initializers/assets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/config/initializers/assets.rb -------------------------------------------------------------------------------- /config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /config/initializers/cookies_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/config/initializers/cookies_serializer.rb -------------------------------------------------------------------------------- /config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/config/initializers/filter_parameter_logging.rb -------------------------------------------------------------------------------- /config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/config/initializers/inflections.rb -------------------------------------------------------------------------------- /config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/config/locales/en.yml -------------------------------------------------------------------------------- /config/puma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/config/puma.rb -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/config/routes.rb -------------------------------------------------------------------------------- /config/secrets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/config/secrets.yml -------------------------------------------------------------------------------- /config/spring.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/config/spring.rb -------------------------------------------------------------------------------- /db/migrate/20170821224807_create_users_table_again.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/db/migrate/20170821224807_create_users_table_again.rb -------------------------------------------------------------------------------- /db/migrate/20170822133334_add_profile_image_to_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/db/migrate/20170822133334_add_profile_image_to_users.rb -------------------------------------------------------------------------------- /db/migrate/20170823132315_create_subjects.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/db/migrate/20170823132315_create_subjects.rb -------------------------------------------------------------------------------- /db/migrate/20170823133924_create_decks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/db/migrate/20170823133924_create_decks.rb -------------------------------------------------------------------------------- /db/migrate/20170823134539_create_cards.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/db/migrate/20170823134539_create_cards.rb -------------------------------------------------------------------------------- /db/migrate/20170823224238_create_follows.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/db/migrate/20170823224238_create_follows.rb -------------------------------------------------------------------------------- /db/migrate/20170825000819_add_names_to_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/db/migrate/20170825000819_add_names_to_users.rb -------------------------------------------------------------------------------- /db/migrate/20170827203205_create_categories.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/db/migrate/20170827203205_create_categories.rb -------------------------------------------------------------------------------- /db/migrate/20170827203720_create_categorizations.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/db/migrate/20170827203720_create_categorizations.rb -------------------------------------------------------------------------------- /db/migrate/20170827225749_create_ratings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/db/migrate/20170827225749_create_ratings.rb -------------------------------------------------------------------------------- /db/migrate/20170828210812_fix_users_table.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/db/migrate/20170828210812_fix_users_table.rb -------------------------------------------------------------------------------- /db/migrate/20170828220550_add_attachment_image_to_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/db/migrate/20170828220550_add_attachment_image_to_users.rb -------------------------------------------------------------------------------- /db/migrate/20170905000345_add_index_to_follow_with_unique.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/db/migrate/20170905000345_add_index_to_follow_with_unique.rb -------------------------------------------------------------------------------- /db/migrate/20170905000817_add_index_to_ratings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/db/migrate/20170905000817_add_index_to_ratings.rb -------------------------------------------------------------------------------- /db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/db/schema.rb -------------------------------------------------------------------------------- /db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/db/seeds.rb -------------------------------------------------------------------------------- /docs/api_endpoints.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/docs/api_endpoints.md -------------------------------------------------------------------------------- /docs/component_hierarchy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/docs/component_hierarchy.md -------------------------------------------------------------------------------- /docs/production_readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/docs/production_readme.md -------------------------------------------------------------------------------- /docs/sample-state.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/docs/sample-state.md -------------------------------------------------------------------------------- /docs/schema.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/docs/schema.md -------------------------------------------------------------------------------- /docs/screens/ss1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/docs/screens/ss1.png -------------------------------------------------------------------------------- /docs/screens/ss2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/docs/screens/ss2.png -------------------------------------------------------------------------------- /docs/screens/ss3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/docs/screens/ss3.png -------------------------------------------------------------------------------- /docs/screens/ss4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/docs/screens/ss4.png -------------------------------------------------------------------------------- /docs/screens/ss5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/docs/screens/ss5.png -------------------------------------------------------------------------------- /docs/wireframes/DeckStudyInterface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/docs/wireframes/DeckStudyInterface.png -------------------------------------------------------------------------------- /docs/wireframes/EditDeck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/docs/wireframes/EditDeck.png -------------------------------------------------------------------------------- /docs/wireframes/FrontPage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/docs/wireframes/FrontPage.png -------------------------------------------------------------------------------- /docs/wireframes/LoggedInInterface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/docs/wireframes/LoggedInInterface.png -------------------------------------------------------------------------------- /frontend/actions/card_actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/frontend/actions/card_actions.js -------------------------------------------------------------------------------- /frontend/actions/deck_actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/frontend/actions/deck_actions.js -------------------------------------------------------------------------------- /frontend/actions/session_actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/frontend/actions/session_actions.js -------------------------------------------------------------------------------- /frontend/actions/subject_actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/frontend/actions/subject_actions.js -------------------------------------------------------------------------------- /frontend/components/app.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/frontend/components/app.jsx -------------------------------------------------------------------------------- /frontend/components/browse/browse.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/frontend/components/browse/browse.jsx -------------------------------------------------------------------------------- /frontend/components/browse/browse_panel.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/frontend/components/browse/browse_panel.jsx -------------------------------------------------------------------------------- /frontend/components/browse/browse_panel_item.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/frontend/components/browse/browse_panel_item.jsx -------------------------------------------------------------------------------- /frontend/components/browse/search_panel.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/frontend/components/browse/search_panel.jsx -------------------------------------------------------------------------------- /frontend/components/browse/search_results_panel.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/frontend/components/browse/search_results_panel.jsx -------------------------------------------------------------------------------- /frontend/components/browse/search_results_panel_item.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/frontend/components/browse/search_results_panel_item.jsx -------------------------------------------------------------------------------- /frontend/components/build/build.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/frontend/components/build/build.jsx -------------------------------------------------------------------------------- /frontend/components/card/card_form.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/frontend/components/card/card_form.jsx -------------------------------------------------------------------------------- /frontend/components/card/card_new.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/frontend/components/card/card_new.js -------------------------------------------------------------------------------- /frontend/components/deck/deck_modify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/frontend/components/deck/deck_modify.js -------------------------------------------------------------------------------- /frontend/components/deck/deck_new.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/frontend/components/deck/deck_new.js -------------------------------------------------------------------------------- /frontend/components/home/deck_panel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/frontend/components/home/deck_panel.js -------------------------------------------------------------------------------- /frontend/components/home/deck_panel_item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/frontend/components/home/deck_panel_item.js -------------------------------------------------------------------------------- /frontend/components/home/homepage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/frontend/components/home/homepage.jsx -------------------------------------------------------------------------------- /frontend/components/home/people_panel.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/frontend/components/home/people_panel.jsx -------------------------------------------------------------------------------- /frontend/components/home/subject_panel.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/frontend/components/home/subject_panel.jsx -------------------------------------------------------------------------------- /frontend/components/home/subject_panel_item.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/frontend/components/home/subject_panel_item.jsx -------------------------------------------------------------------------------- /frontend/components/nav_bar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/frontend/components/nav_bar.jsx -------------------------------------------------------------------------------- /frontend/components/session/login_form.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/frontend/components/session/login_form.jsx -------------------------------------------------------------------------------- /frontend/components/session/signup_form.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/frontend/components/session/signup_form.jsx -------------------------------------------------------------------------------- /frontend/components/session/user_panel.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/frontend/components/session/user_panel.jsx -------------------------------------------------------------------------------- /frontend/components/splash.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/frontend/components/splash.jsx -------------------------------------------------------------------------------- /frontend/components/study/card_rater.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/frontend/components/study/card_rater.jsx -------------------------------------------------------------------------------- /frontend/components/study/card_viewer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/frontend/components/study/card_viewer.jsx -------------------------------------------------------------------------------- /frontend/components/study/deck_interface.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/frontend/components/study/deck_interface.jsx -------------------------------------------------------------------------------- /frontend/components/study/deck_interface_panel.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/frontend/components/study/deck_interface_panel.jsx -------------------------------------------------------------------------------- /frontend/components/study/study.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/frontend/components/study/study.jsx -------------------------------------------------------------------------------- /frontend/components/subject/subject_modify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/frontend/components/subject/subject_modify.js -------------------------------------------------------------------------------- /frontend/components/subject/subject_new.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/frontend/components/subject/subject_new.js -------------------------------------------------------------------------------- /frontend/hyperlearn.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/frontend/hyperlearn.jsx -------------------------------------------------------------------------------- /frontend/reducers/cards_reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/frontend/reducers/cards_reducer.js -------------------------------------------------------------------------------- /frontend/reducers/decks_reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/frontend/reducers/decks_reducer.js -------------------------------------------------------------------------------- /frontend/reducers/root_reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/frontend/reducers/root_reducer.js -------------------------------------------------------------------------------- /frontend/reducers/session_reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/frontend/reducers/session_reducer.js -------------------------------------------------------------------------------- /frontend/reducers/subjects_reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/frontend/reducers/subjects_reducer.js -------------------------------------------------------------------------------- /frontend/store/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/frontend/store/store.js -------------------------------------------------------------------------------- /frontend/utils/auth_route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/frontend/utils/auth_route.js -------------------------------------------------------------------------------- /frontend/utils/card_api_utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/frontend/utils/card_api_utils.js -------------------------------------------------------------------------------- /frontend/utils/deck_api_utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/frontend/utils/deck_api_utils.js -------------------------------------------------------------------------------- /frontend/utils/protected_route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/frontend/utils/protected_route.js -------------------------------------------------------------------------------- /frontend/utils/session_api_utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/frontend/utils/session_api_utils.js -------------------------------------------------------------------------------- /frontend/utils/splash_route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/frontend/utils/splash_route.js -------------------------------------------------------------------------------- /frontend/utils/subject_api_utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/frontend/utils/subject_api_utils.js -------------------------------------------------------------------------------- /lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/package.json -------------------------------------------------------------------------------- /public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/public/404.html -------------------------------------------------------------------------------- /public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/public/422.html -------------------------------------------------------------------------------- /public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/public/500.html -------------------------------------------------------------------------------- /public/apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/apple-touch-icon.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/public/robots.txt -------------------------------------------------------------------------------- /spec/models/card_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/spec/models/card_spec.rb -------------------------------------------------------------------------------- /spec/models/deck_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/spec/models/deck_spec.rb -------------------------------------------------------------------------------- /spec/models/subject_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/spec/models/subject_spec.rb -------------------------------------------------------------------------------- /spec/rails_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/spec/rails_helper.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /test/application_system_test_case.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/test/application_system_test_case.rb -------------------------------------------------------------------------------- /test/controllers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/controllers/cards_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/test/controllers/cards_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/decks_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/test/controllers/decks_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/ratings_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/test/controllers/ratings_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/subject_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/test/controllers/subject_controller_test.rb -------------------------------------------------------------------------------- /test/fixtures/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/cards.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/test/fixtures/cards.yml -------------------------------------------------------------------------------- /test/fixtures/categories.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/test/fixtures/categories.yml -------------------------------------------------------------------------------- /test/fixtures/categorizations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/test/fixtures/categorizations.yml -------------------------------------------------------------------------------- /test/fixtures/files/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/ratings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/test/fixtures/ratings.yml -------------------------------------------------------------------------------- /test/helpers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/models/card_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/test/models/card_test.rb -------------------------------------------------------------------------------- /test/models/categorization_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/test/models/categorization_test.rb -------------------------------------------------------------------------------- /test/models/category_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/test/models/category_test.rb -------------------------------------------------------------------------------- /test/models/rating_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/test/models/rating_test.rb -------------------------------------------------------------------------------- /test/system/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/test/test_helper.rb -------------------------------------------------------------------------------- /vendor/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwilsongh/HyperLearn/HEAD/webpack.config.js --------------------------------------------------------------------------------