0) A good layout something similar to Facebook.
1) User sign up, sign in, session management.
2) User relations.
3) Ability to create posts.
4) Ability to attach images to the posts.
5) Adding comments.
6) Liking posts/comments.
7) A feed
================= Installation
gem 'zurb-foundation', '~> 4.0.0'
bundle install
rails g foundation:install
gem 'devise'
gem 'devise' # add this to Gemfile and bundle install
rails g devise:install #this tells few things like adding lines to application.html.erb and application.rb
rails g devise User
gem "socialization" #bundle install
rails generate socialization -s
gem "paperclip", "~> 3.0"
rails g paperclip user avatar
rails g paperclip post avatar
gem 'public_activity'
rails g public_activity:migration
================= Importent Link
=================