├── .gitignore ├── Gemfile ├── Gemfile.lock ├── README.md ├── Rakefile ├── app ├── assets │ ├── config │ │ └── manifest.js │ ├── images │ │ ├── .keep │ │ ├── bravo.jpeg │ │ ├── drunktocat.png │ │ ├── favicon.ico │ │ ├── missing-post.png │ │ ├── missing.gif │ │ ├── missing.png │ │ ├── no-cover.png │ │ └── seed_img │ │ │ ├── bertrand-cover.jpg │ │ │ ├── bertrand.jpeg │ │ │ ├── celinalin-cover.jpg │ │ │ ├── celinalin.jpeg │ │ │ ├── dan-pic.jpg │ │ │ ├── danbilz-cover.jpg │ │ │ ├── danbilz-post.jpg │ │ │ ├── danbilz.jpeg │ │ │ ├── fedor-cover.jpg │ │ │ ├── fedor-pic.jpg │ │ │ ├── fedor-pic2.jpg │ │ │ ├── fedor.jpeg │ │ │ ├── jcarver-cover.png │ │ │ ├── jcarver-pic.jpg │ │ │ ├── jcarver-table.jpg │ │ │ ├── jcarver.jpg │ │ │ ├── li-cover.jpg │ │ │ ├── li-pic.jpg │ │ │ ├── li.jpg │ │ │ ├── livboe-cover.jpg │ │ │ ├── livboe.jpg │ │ │ ├── nanonoko-cover.jpg │ │ │ ├── nanonoko-post.jpg │ │ │ ├── nanonoko-post2.jpg │ │ │ ├── nanonoko.jpeg │ │ │ ├── neg-pic.jpg │ │ │ ├── neg-pic2.jpg │ │ │ ├── negrea-cover.jpg │ │ │ ├── negrea.jpeg │ │ │ ├── oliverb-cover.jpg │ │ │ ├── oliverb.jpeg │ │ │ ├── rupert-cover.jpg │ │ │ ├── rupert.jpeg │ │ │ ├── sam-pic.jpg │ │ │ ├── sam-post.jpg │ │ │ ├── samab-cover.jpg │ │ │ ├── samab.jpg │ │ │ ├── staples-cover.png │ │ │ ├── staples-post.jpg │ │ │ ├── staples.jpeg │ │ │ ├── vanessa-cover.jpg │ │ │ └── vanessa.jpeg │ ├── javascripts │ │ ├── api │ │ │ ├── comments.coffee │ │ │ ├── friends.coffee │ │ │ ├── likes.coffee │ │ │ ├── posts.coffee │ │ │ ├── session.coffee │ │ │ └── users.coffee │ │ ├── application.js │ │ ├── cable.js │ │ └── channels │ │ │ └── .keep │ └── stylesheets │ │ ├── api │ │ ├── comments.scss │ │ ├── friends.scss │ │ ├── likes.scss │ │ ├── posts.scss │ │ ├── session.scss │ │ └── users.scss │ │ ├── application.css │ │ ├── footer.css │ │ ├── header.css │ │ ├── loading.css │ │ ├── main-body.css │ │ ├── main-createpost.css │ │ ├── main-header.css │ │ ├── post-comment.css │ │ ├── post-view.css │ │ ├── profile-body.css │ │ ├── profile-cover.css │ │ ├── reset.css │ │ └── signup.css ├── channels │ └── application_cable │ │ ├── channel.rb │ │ └── connection.rb ├── controllers │ ├── api │ │ ├── comments_controller.rb │ │ ├── friends_controller.rb │ │ ├── likes_controller.rb │ │ ├── posts_controller.rb │ │ ├── sessions_controller.rb │ │ └── users_controller.rb │ ├── application_controller.rb │ ├── concerns │ │ └── .keep │ └── static_pages_controller.rb ├── helpers │ ├── api │ │ ├── comments_helper.rb │ │ ├── friends_helper.rb │ │ ├── likes_helper.rb │ │ ├── posts_helper.rb │ │ ├── session_helper.rb │ │ └── users_helper.rb │ └── application_helper.rb ├── jobs │ └── application_job.rb ├── mailers │ └── application_mailer.rb ├── models │ ├── application_record.rb │ ├── comment.rb │ ├── concerns │ │ └── .keep │ ├── friend.rb │ ├── like.rb │ ├── post.rb │ └── user.rb └── views │ ├── api │ ├── comments │ │ ├── _comment.json.jbuilder │ │ ├── index.json.jbuilder │ │ └── show.json.jbuilder │ ├── friends │ │ ├── _friend.json.jbuilder │ │ └── index.json.jbuilder │ ├── posts │ │ ├── _post.json.jbuilder │ │ ├── index.json.jbuilder │ │ └── show.json.jbuilder │ └── users │ │ ├── _user.json.jbuilder │ │ ├── index.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 ├── 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 │ ├── new_framework_defaults.rb │ ├── session_store.rb │ └── wrap_parameters.rb ├── locales │ └── en.yml ├── puma.rb ├── routes.rb ├── secrets.yml └── spring.rb ├── db ├── migrate │ ├── 20161206002133_create_users.rb │ ├── 20161207143148_create_posts.rb │ ├── 20161208215017_create_friends.rb │ ├── 20161208223737_add_user_columns_and_friends_defaults.rb │ ├── 20161209201644_add_tagged_user_to_posts.rb │ ├── 20161210201028_create_likes.rb │ ├── 20161211202833_add_attachment_profilepic_to_users.rb │ ├── 20161212215126_add_attachment_coverpic_to_users.rb │ ├── 20161213140731_create_comments.rb │ ├── 20161213141946_add_post_id_to_comments.rb │ └── 20161213200354_add_attachment_image_to_posts.rb ├── schema.rb └── seeds.rb ├── docs ├── README.md ├── api-endpoints.md ├── component-hierarchy.md ├── demo-pics │ ├── auth-error.gif │ ├── friend-accept.gif │ ├── guest-login.gif │ ├── infinite-scroll.gif │ ├── like-comment.gif │ ├── login.png │ ├── logo.png │ ├── post-edit.gif │ ├── post-photo-upload.gif │ ├── profile-pic-update.gif │ ├── request-friend.gif │ ├── responsive-size.gif │ └── rts.gif ├── interesting-bugs.md ├── resources.md ├── sample-state.md ├── schema.md └── wireframes │ ├── header-wireframe.psd │ ├── header.png │ ├── login-signup-wireframe.psd │ ├── login-signup.png │ ├── new-post-wireframe.psd │ ├── new-post.png │ ├── news-feed-wireframe.psd │ ├── news-feed.png │ ├── profile-view-wireframe.psd │ └── profile-view.png ├── frontend ├── actions │ ├── comment_actions.js │ ├── friend_actions.js │ ├── like_actions.js │ ├── post_actions.js │ ├── session_actions.js │ └── user_actions.js ├── components │ ├── app.jsx │ ├── greeting.jsx │ ├── greeting_container.jsx │ ├── new_post.jsx │ ├── new_post_container.jsx │ ├── newsession.jsx │ ├── newsession_container.jsx │ ├── old_files │ │ ├── session_form_container.jsx │ │ ├── signup_form_container.jsx │ │ ├── userprofile_cover.jsx │ │ └── userprofile_cover_container.jsx │ ├── post_comments.jsx │ ├── post_comments_container.jsx │ ├── post_index.jsx │ ├── post_index_container.jsx │ ├── root.jsx │ ├── session_form.jsx │ ├── signup_form.jsx │ ├── userprofile.jsx │ └── userprofile_container.jsx ├── middleware │ └── thunk.js ├── reducers │ ├── friend_add_reducer.js │ ├── friend_reducer.js │ ├── like_reducer.js │ ├── loading_reducer.js │ ├── post_reducer.js │ ├── root_reducer.js │ ├── search_reducer.js │ ├── session_reducer.js │ └── user_reducer.js ├── spadebook.jsx ├── store │ └── store.js └── util │ └── api_util.js ├── lib ├── assets │ └── .keep └── tasks │ └── .keep ├── log └── .keep ├── package.json ├── public ├── 404.html ├── 422.html ├── 500.html ├── apple-touch-icon-precomposed.png ├── apple-touch-icon.png ├── favicon.ico └── robots.txt ├── test ├── controllers │ ├── .keep │ └── api │ │ ├── comments_controller_test.rb │ │ ├── friends_controller_test.rb │ │ ├── likes_controller_test.rb │ │ ├── posts_controller_test.rb │ │ ├── session_controller_test.rb │ │ └── users_controller_test.rb ├── fixtures │ ├── .keep │ └── files │ │ └── .keep ├── helpers │ └── .keep ├── integration │ └── .keep ├── mailers │ └── .keep ├── models │ └── .keep └── test_helper.rb ├── tmp └── .keep ├── vendor └── assets │ ├── javascripts │ └── .keep │ └── stylesheets │ └── .keep ├── webpack.config.js └── webpack.config.prod.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/.gitignore -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/Rakefile -------------------------------------------------------------------------------- /app/assets/config/manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/app/assets/config/manifest.js -------------------------------------------------------------------------------- /app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/images/bravo.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/app/assets/images/bravo.jpeg -------------------------------------------------------------------------------- /app/assets/images/drunktocat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/app/assets/images/drunktocat.png -------------------------------------------------------------------------------- /app/assets/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/app/assets/images/favicon.ico -------------------------------------------------------------------------------- /app/assets/images/missing-post.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/app/assets/images/missing-post.png -------------------------------------------------------------------------------- /app/assets/images/missing.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/app/assets/images/missing.gif -------------------------------------------------------------------------------- /app/assets/images/missing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/app/assets/images/missing.png -------------------------------------------------------------------------------- /app/assets/images/no-cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/app/assets/images/no-cover.png -------------------------------------------------------------------------------- /app/assets/images/seed_img/bertrand-cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/app/assets/images/seed_img/bertrand-cover.jpg -------------------------------------------------------------------------------- /app/assets/images/seed_img/bertrand.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/app/assets/images/seed_img/bertrand.jpeg -------------------------------------------------------------------------------- /app/assets/images/seed_img/celinalin-cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/app/assets/images/seed_img/celinalin-cover.jpg -------------------------------------------------------------------------------- /app/assets/images/seed_img/celinalin.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/app/assets/images/seed_img/celinalin.jpeg -------------------------------------------------------------------------------- /app/assets/images/seed_img/dan-pic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/app/assets/images/seed_img/dan-pic.jpg -------------------------------------------------------------------------------- /app/assets/images/seed_img/danbilz-cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/app/assets/images/seed_img/danbilz-cover.jpg -------------------------------------------------------------------------------- /app/assets/images/seed_img/danbilz-post.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/app/assets/images/seed_img/danbilz-post.jpg -------------------------------------------------------------------------------- /app/assets/images/seed_img/danbilz.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/app/assets/images/seed_img/danbilz.jpeg -------------------------------------------------------------------------------- /app/assets/images/seed_img/fedor-cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/app/assets/images/seed_img/fedor-cover.jpg -------------------------------------------------------------------------------- /app/assets/images/seed_img/fedor-pic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/app/assets/images/seed_img/fedor-pic.jpg -------------------------------------------------------------------------------- /app/assets/images/seed_img/fedor-pic2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/app/assets/images/seed_img/fedor-pic2.jpg -------------------------------------------------------------------------------- /app/assets/images/seed_img/fedor.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/app/assets/images/seed_img/fedor.jpeg -------------------------------------------------------------------------------- /app/assets/images/seed_img/jcarver-cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/app/assets/images/seed_img/jcarver-cover.png -------------------------------------------------------------------------------- /app/assets/images/seed_img/jcarver-pic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/app/assets/images/seed_img/jcarver-pic.jpg -------------------------------------------------------------------------------- /app/assets/images/seed_img/jcarver-table.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/app/assets/images/seed_img/jcarver-table.jpg -------------------------------------------------------------------------------- /app/assets/images/seed_img/jcarver.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/app/assets/images/seed_img/jcarver.jpg -------------------------------------------------------------------------------- /app/assets/images/seed_img/li-cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/app/assets/images/seed_img/li-cover.jpg -------------------------------------------------------------------------------- /app/assets/images/seed_img/li-pic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/app/assets/images/seed_img/li-pic.jpg -------------------------------------------------------------------------------- /app/assets/images/seed_img/li.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/app/assets/images/seed_img/li.jpg -------------------------------------------------------------------------------- /app/assets/images/seed_img/livboe-cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/app/assets/images/seed_img/livboe-cover.jpg -------------------------------------------------------------------------------- /app/assets/images/seed_img/livboe.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/app/assets/images/seed_img/livboe.jpg -------------------------------------------------------------------------------- /app/assets/images/seed_img/nanonoko-cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/app/assets/images/seed_img/nanonoko-cover.jpg -------------------------------------------------------------------------------- /app/assets/images/seed_img/nanonoko-post.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/app/assets/images/seed_img/nanonoko-post.jpg -------------------------------------------------------------------------------- /app/assets/images/seed_img/nanonoko-post2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/app/assets/images/seed_img/nanonoko-post2.jpg -------------------------------------------------------------------------------- /app/assets/images/seed_img/nanonoko.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/app/assets/images/seed_img/nanonoko.jpeg -------------------------------------------------------------------------------- /app/assets/images/seed_img/neg-pic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/app/assets/images/seed_img/neg-pic.jpg -------------------------------------------------------------------------------- /app/assets/images/seed_img/neg-pic2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/app/assets/images/seed_img/neg-pic2.jpg -------------------------------------------------------------------------------- /app/assets/images/seed_img/negrea-cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/app/assets/images/seed_img/negrea-cover.jpg -------------------------------------------------------------------------------- /app/assets/images/seed_img/negrea.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/app/assets/images/seed_img/negrea.jpeg -------------------------------------------------------------------------------- /app/assets/images/seed_img/oliverb-cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/app/assets/images/seed_img/oliverb-cover.jpg -------------------------------------------------------------------------------- /app/assets/images/seed_img/oliverb.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/app/assets/images/seed_img/oliverb.jpeg -------------------------------------------------------------------------------- /app/assets/images/seed_img/rupert-cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/app/assets/images/seed_img/rupert-cover.jpg -------------------------------------------------------------------------------- /app/assets/images/seed_img/rupert.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/app/assets/images/seed_img/rupert.jpeg -------------------------------------------------------------------------------- /app/assets/images/seed_img/sam-pic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/app/assets/images/seed_img/sam-pic.jpg -------------------------------------------------------------------------------- /app/assets/images/seed_img/sam-post.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/app/assets/images/seed_img/sam-post.jpg -------------------------------------------------------------------------------- /app/assets/images/seed_img/samab-cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/app/assets/images/seed_img/samab-cover.jpg -------------------------------------------------------------------------------- /app/assets/images/seed_img/samab.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/app/assets/images/seed_img/samab.jpg -------------------------------------------------------------------------------- /app/assets/images/seed_img/staples-cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/app/assets/images/seed_img/staples-cover.png -------------------------------------------------------------------------------- /app/assets/images/seed_img/staples-post.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/app/assets/images/seed_img/staples-post.jpg -------------------------------------------------------------------------------- /app/assets/images/seed_img/staples.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/app/assets/images/seed_img/staples.jpeg -------------------------------------------------------------------------------- /app/assets/images/seed_img/vanessa-cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/app/assets/images/seed_img/vanessa-cover.jpg -------------------------------------------------------------------------------- /app/assets/images/seed_img/vanessa.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/app/assets/images/seed_img/vanessa.jpeg -------------------------------------------------------------------------------- /app/assets/javascripts/api/comments.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/app/assets/javascripts/api/comments.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/api/friends.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/app/assets/javascripts/api/friends.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/api/likes.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/app/assets/javascripts/api/likes.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/api/posts.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/app/assets/javascripts/api/posts.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/api/session.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/app/assets/javascripts/api/session.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/api/users.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/app/assets/javascripts/api/users.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/app/assets/javascripts/application.js -------------------------------------------------------------------------------- /app/assets/javascripts/cable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/app/assets/javascripts/cable.js -------------------------------------------------------------------------------- /app/assets/javascripts/channels/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/stylesheets/api/comments.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/app/assets/stylesheets/api/comments.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/api/friends.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/app/assets/stylesheets/api/friends.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/api/likes.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/app/assets/stylesheets/api/likes.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/api/posts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/app/assets/stylesheets/api/posts.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/api/session.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/app/assets/stylesheets/api/session.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/api/users.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/app/assets/stylesheets/api/users.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/application.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/app/assets/stylesheets/application.css -------------------------------------------------------------------------------- /app/assets/stylesheets/footer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/app/assets/stylesheets/footer.css -------------------------------------------------------------------------------- /app/assets/stylesheets/header.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/app/assets/stylesheets/header.css -------------------------------------------------------------------------------- /app/assets/stylesheets/loading.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/app/assets/stylesheets/loading.css -------------------------------------------------------------------------------- /app/assets/stylesheets/main-body.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/app/assets/stylesheets/main-body.css -------------------------------------------------------------------------------- /app/assets/stylesheets/main-createpost.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/app/assets/stylesheets/main-createpost.css -------------------------------------------------------------------------------- /app/assets/stylesheets/main-header.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/app/assets/stylesheets/main-header.css -------------------------------------------------------------------------------- /app/assets/stylesheets/post-comment.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/app/assets/stylesheets/post-comment.css -------------------------------------------------------------------------------- /app/assets/stylesheets/post-view.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/app/assets/stylesheets/post-view.css -------------------------------------------------------------------------------- /app/assets/stylesheets/profile-body.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/app/assets/stylesheets/profile-body.css -------------------------------------------------------------------------------- /app/assets/stylesheets/profile-cover.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/app/assets/stylesheets/profile-cover.css -------------------------------------------------------------------------------- /app/assets/stylesheets/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/app/assets/stylesheets/reset.css -------------------------------------------------------------------------------- /app/assets/stylesheets/signup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/app/assets/stylesheets/signup.css -------------------------------------------------------------------------------- /app/channels/application_cable/channel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/app/channels/application_cable/channel.rb -------------------------------------------------------------------------------- /app/channels/application_cable/connection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/app/channels/application_cable/connection.rb -------------------------------------------------------------------------------- /app/controllers/api/comments_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/app/controllers/api/comments_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/friends_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/app/controllers/api/friends_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/likes_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/app/controllers/api/likes_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/posts_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/app/controllers/api/posts_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/sessions_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/app/controllers/api/sessions_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/users_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/app/controllers/api/users_controller.rb -------------------------------------------------------------------------------- /app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/controllers/static_pages_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/app/controllers/static_pages_controller.rb -------------------------------------------------------------------------------- /app/helpers/api/comments_helper.rb: -------------------------------------------------------------------------------- 1 | module Api::CommentsHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/api/friends_helper.rb: -------------------------------------------------------------------------------- 1 | module Api::FriendsHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/api/likes_helper.rb: -------------------------------------------------------------------------------- 1 | module Api::LikesHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/api/posts_helper.rb: -------------------------------------------------------------------------------- 1 | module Api::PostsHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/api/session_helper.rb: -------------------------------------------------------------------------------- 1 | module Api::SessionHelper 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/jobs/application_job.rb: -------------------------------------------------------------------------------- 1 | class ApplicationJob < ActiveJob::Base 2 | end 3 | -------------------------------------------------------------------------------- /app/mailers/application_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/app/mailers/application_mailer.rb -------------------------------------------------------------------------------- /app/models/application_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/app/models/application_record.rb -------------------------------------------------------------------------------- /app/models/comment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/app/models/comment.rb -------------------------------------------------------------------------------- /app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/friend.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/app/models/friend.rb -------------------------------------------------------------------------------- /app/models/like.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/app/models/like.rb -------------------------------------------------------------------------------- /app/models/post.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/app/models/post.rb -------------------------------------------------------------------------------- /app/models/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/app/models/user.rb -------------------------------------------------------------------------------- /app/views/api/comments/_comment.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/app/views/api/comments/_comment.json.jbuilder -------------------------------------------------------------------------------- /app/views/api/comments/index.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/app/views/api/comments/index.json.jbuilder -------------------------------------------------------------------------------- /app/views/api/comments/show.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/app/views/api/comments/show.json.jbuilder -------------------------------------------------------------------------------- /app/views/api/friends/_friend.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/app/views/api/friends/_friend.json.jbuilder -------------------------------------------------------------------------------- /app/views/api/friends/index.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/app/views/api/friends/index.json.jbuilder -------------------------------------------------------------------------------- /app/views/api/posts/_post.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/app/views/api/posts/_post.json.jbuilder -------------------------------------------------------------------------------- /app/views/api/posts/index.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/app/views/api/posts/index.json.jbuilder -------------------------------------------------------------------------------- /app/views/api/posts/show.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/app/views/api/posts/show.json.jbuilder -------------------------------------------------------------------------------- /app/views/api/users/_user.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/app/views/api/users/_user.json.jbuilder -------------------------------------------------------------------------------- /app/views/api/users/index.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/app/views/api/users/index.json.jbuilder -------------------------------------------------------------------------------- /app/views/api/users/show.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/app/views/api/users/show.json.jbuilder -------------------------------------------------------------------------------- /app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /app/views/layouts/mailer.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/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/vorpus/acebook/HEAD/app/views/static_pages/root.html.erb -------------------------------------------------------------------------------- /bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/bin/bundle -------------------------------------------------------------------------------- /bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/bin/rails -------------------------------------------------------------------------------- /bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/bin/rake -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/bin/setup -------------------------------------------------------------------------------- /bin/spring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/bin/spring -------------------------------------------------------------------------------- /bin/update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/bin/update -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/config.ru -------------------------------------------------------------------------------- /config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/config/application.rb -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/config/boot.rb -------------------------------------------------------------------------------- /config/cable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/config/cable.yml -------------------------------------------------------------------------------- /config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/config/database.yml -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/config/environment.rb -------------------------------------------------------------------------------- /config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/config/environments/development.rb -------------------------------------------------------------------------------- /config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/config/environments/production.rb -------------------------------------------------------------------------------- /config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/config/environments/test.rb -------------------------------------------------------------------------------- /config/initializers/application_controller_renderer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/config/initializers/application_controller_renderer.rb -------------------------------------------------------------------------------- /config/initializers/assets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/config/initializers/assets.rb -------------------------------------------------------------------------------- /config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /config/initializers/cookies_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/config/initializers/cookies_serializer.rb -------------------------------------------------------------------------------- /config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/config/initializers/filter_parameter_logging.rb -------------------------------------------------------------------------------- /config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/config/initializers/inflections.rb -------------------------------------------------------------------------------- /config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /config/initializers/new_framework_defaults.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/config/initializers/new_framework_defaults.rb -------------------------------------------------------------------------------- /config/initializers/session_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/config/initializers/session_store.rb -------------------------------------------------------------------------------- /config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/config/locales/en.yml -------------------------------------------------------------------------------- /config/puma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/config/puma.rb -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/config/routes.rb -------------------------------------------------------------------------------- /config/secrets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/config/secrets.yml -------------------------------------------------------------------------------- /config/spring.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/config/spring.rb -------------------------------------------------------------------------------- /db/migrate/20161206002133_create_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/db/migrate/20161206002133_create_users.rb -------------------------------------------------------------------------------- /db/migrate/20161207143148_create_posts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/db/migrate/20161207143148_create_posts.rb -------------------------------------------------------------------------------- /db/migrate/20161208215017_create_friends.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/db/migrate/20161208215017_create_friends.rb -------------------------------------------------------------------------------- /db/migrate/20161208223737_add_user_columns_and_friends_defaults.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/db/migrate/20161208223737_add_user_columns_and_friends_defaults.rb -------------------------------------------------------------------------------- /db/migrate/20161209201644_add_tagged_user_to_posts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/db/migrate/20161209201644_add_tagged_user_to_posts.rb -------------------------------------------------------------------------------- /db/migrate/20161210201028_create_likes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/db/migrate/20161210201028_create_likes.rb -------------------------------------------------------------------------------- /db/migrate/20161211202833_add_attachment_profilepic_to_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/db/migrate/20161211202833_add_attachment_profilepic_to_users.rb -------------------------------------------------------------------------------- /db/migrate/20161212215126_add_attachment_coverpic_to_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/db/migrate/20161212215126_add_attachment_coverpic_to_users.rb -------------------------------------------------------------------------------- /db/migrate/20161213140731_create_comments.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/db/migrate/20161213140731_create_comments.rb -------------------------------------------------------------------------------- /db/migrate/20161213141946_add_post_id_to_comments.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/db/migrate/20161213141946_add_post_id_to_comments.rb -------------------------------------------------------------------------------- /db/migrate/20161213200354_add_attachment_image_to_posts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/db/migrate/20161213200354_add_attachment_image_to_posts.rb -------------------------------------------------------------------------------- /db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/db/schema.rb -------------------------------------------------------------------------------- /db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/db/seeds.rb -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/api-endpoints.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/docs/api-endpoints.md -------------------------------------------------------------------------------- /docs/component-hierarchy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/docs/component-hierarchy.md -------------------------------------------------------------------------------- /docs/demo-pics/auth-error.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/docs/demo-pics/auth-error.gif -------------------------------------------------------------------------------- /docs/demo-pics/friend-accept.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/docs/demo-pics/friend-accept.gif -------------------------------------------------------------------------------- /docs/demo-pics/guest-login.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/docs/demo-pics/guest-login.gif -------------------------------------------------------------------------------- /docs/demo-pics/infinite-scroll.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/docs/demo-pics/infinite-scroll.gif -------------------------------------------------------------------------------- /docs/demo-pics/like-comment.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/docs/demo-pics/like-comment.gif -------------------------------------------------------------------------------- /docs/demo-pics/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/docs/demo-pics/login.png -------------------------------------------------------------------------------- /docs/demo-pics/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/docs/demo-pics/logo.png -------------------------------------------------------------------------------- /docs/demo-pics/post-edit.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/docs/demo-pics/post-edit.gif -------------------------------------------------------------------------------- /docs/demo-pics/post-photo-upload.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/docs/demo-pics/post-photo-upload.gif -------------------------------------------------------------------------------- /docs/demo-pics/profile-pic-update.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/docs/demo-pics/profile-pic-update.gif -------------------------------------------------------------------------------- /docs/demo-pics/request-friend.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/docs/demo-pics/request-friend.gif -------------------------------------------------------------------------------- /docs/demo-pics/responsive-size.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/docs/demo-pics/responsive-size.gif -------------------------------------------------------------------------------- /docs/demo-pics/rts.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/docs/demo-pics/rts.gif -------------------------------------------------------------------------------- /docs/interesting-bugs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/docs/interesting-bugs.md -------------------------------------------------------------------------------- /docs/resources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/docs/resources.md -------------------------------------------------------------------------------- /docs/sample-state.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/docs/sample-state.md -------------------------------------------------------------------------------- /docs/schema.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/docs/schema.md -------------------------------------------------------------------------------- /docs/wireframes/header-wireframe.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/docs/wireframes/header-wireframe.psd -------------------------------------------------------------------------------- /docs/wireframes/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/docs/wireframes/header.png -------------------------------------------------------------------------------- /docs/wireframes/login-signup-wireframe.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/docs/wireframes/login-signup-wireframe.psd -------------------------------------------------------------------------------- /docs/wireframes/login-signup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/docs/wireframes/login-signup.png -------------------------------------------------------------------------------- /docs/wireframes/new-post-wireframe.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/docs/wireframes/new-post-wireframe.psd -------------------------------------------------------------------------------- /docs/wireframes/new-post.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/docs/wireframes/new-post.png -------------------------------------------------------------------------------- /docs/wireframes/news-feed-wireframe.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/docs/wireframes/news-feed-wireframe.psd -------------------------------------------------------------------------------- /docs/wireframes/news-feed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/docs/wireframes/news-feed.png -------------------------------------------------------------------------------- /docs/wireframes/profile-view-wireframe.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/docs/wireframes/profile-view-wireframe.psd -------------------------------------------------------------------------------- /docs/wireframes/profile-view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/docs/wireframes/profile-view.png -------------------------------------------------------------------------------- /frontend/actions/comment_actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/frontend/actions/comment_actions.js -------------------------------------------------------------------------------- /frontend/actions/friend_actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/frontend/actions/friend_actions.js -------------------------------------------------------------------------------- /frontend/actions/like_actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/frontend/actions/like_actions.js -------------------------------------------------------------------------------- /frontend/actions/post_actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/frontend/actions/post_actions.js -------------------------------------------------------------------------------- /frontend/actions/session_actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/frontend/actions/session_actions.js -------------------------------------------------------------------------------- /frontend/actions/user_actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/frontend/actions/user_actions.js -------------------------------------------------------------------------------- /frontend/components/app.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/frontend/components/app.jsx -------------------------------------------------------------------------------- /frontend/components/greeting.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/frontend/components/greeting.jsx -------------------------------------------------------------------------------- /frontend/components/greeting_container.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/frontend/components/greeting_container.jsx -------------------------------------------------------------------------------- /frontend/components/new_post.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/frontend/components/new_post.jsx -------------------------------------------------------------------------------- /frontend/components/new_post_container.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/frontend/components/new_post_container.jsx -------------------------------------------------------------------------------- /frontend/components/newsession.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/frontend/components/newsession.jsx -------------------------------------------------------------------------------- /frontend/components/newsession_container.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/frontend/components/newsession_container.jsx -------------------------------------------------------------------------------- /frontend/components/old_files/session_form_container.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/frontend/components/old_files/session_form_container.jsx -------------------------------------------------------------------------------- /frontend/components/old_files/signup_form_container.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/frontend/components/old_files/signup_form_container.jsx -------------------------------------------------------------------------------- /frontend/components/old_files/userprofile_cover.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/frontend/components/old_files/userprofile_cover.jsx -------------------------------------------------------------------------------- /frontend/components/old_files/userprofile_cover_container.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/frontend/components/old_files/userprofile_cover_container.jsx -------------------------------------------------------------------------------- /frontend/components/post_comments.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/frontend/components/post_comments.jsx -------------------------------------------------------------------------------- /frontend/components/post_comments_container.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/frontend/components/post_comments_container.jsx -------------------------------------------------------------------------------- /frontend/components/post_index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/frontend/components/post_index.jsx -------------------------------------------------------------------------------- /frontend/components/post_index_container.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/frontend/components/post_index_container.jsx -------------------------------------------------------------------------------- /frontend/components/root.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/frontend/components/root.jsx -------------------------------------------------------------------------------- /frontend/components/session_form.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/frontend/components/session_form.jsx -------------------------------------------------------------------------------- /frontend/components/signup_form.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/frontend/components/signup_form.jsx -------------------------------------------------------------------------------- /frontend/components/userprofile.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/frontend/components/userprofile.jsx -------------------------------------------------------------------------------- /frontend/components/userprofile_container.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/frontend/components/userprofile_container.jsx -------------------------------------------------------------------------------- /frontend/middleware/thunk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/frontend/middleware/thunk.js -------------------------------------------------------------------------------- /frontend/reducers/friend_add_reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/frontend/reducers/friend_add_reducer.js -------------------------------------------------------------------------------- /frontend/reducers/friend_reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/frontend/reducers/friend_reducer.js -------------------------------------------------------------------------------- /frontend/reducers/like_reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/frontend/reducers/like_reducer.js -------------------------------------------------------------------------------- /frontend/reducers/loading_reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/frontend/reducers/loading_reducer.js -------------------------------------------------------------------------------- /frontend/reducers/post_reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/frontend/reducers/post_reducer.js -------------------------------------------------------------------------------- /frontend/reducers/root_reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/frontend/reducers/root_reducer.js -------------------------------------------------------------------------------- /frontend/reducers/search_reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/frontend/reducers/search_reducer.js -------------------------------------------------------------------------------- /frontend/reducers/session_reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/frontend/reducers/session_reducer.js -------------------------------------------------------------------------------- /frontend/reducers/user_reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/frontend/reducers/user_reducer.js -------------------------------------------------------------------------------- /frontend/spadebook.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/frontend/spadebook.jsx -------------------------------------------------------------------------------- /frontend/store/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/frontend/store/store.js -------------------------------------------------------------------------------- /frontend/util/api_util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/frontend/util/api_util.js -------------------------------------------------------------------------------- /lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/package.json -------------------------------------------------------------------------------- /public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/public/404.html -------------------------------------------------------------------------------- /public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/public/422.html -------------------------------------------------------------------------------- /public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/public/500.html -------------------------------------------------------------------------------- /public/apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/apple-touch-icon.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/public/robots.txt -------------------------------------------------------------------------------- /test/controllers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/controllers/api/comments_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/test/controllers/api/comments_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/api/friends_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/test/controllers/api/friends_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/api/likes_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/test/controllers/api/likes_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/api/posts_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/test/controllers/api/posts_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/api/session_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/test/controllers/api/session_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/api/users_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/test/controllers/api/users_controller_test.rb -------------------------------------------------------------------------------- /test/fixtures/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/files/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/helpers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/test/test_helper.rb -------------------------------------------------------------------------------- /tmp/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/assets/javascripts/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/assets/stylesheets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/webpack.config.js -------------------------------------------------------------------------------- /webpack.config.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vorpus/acebook/HEAD/webpack.config.prod.js --------------------------------------------------------------------------------