_User_ _GitHub_Profile_
has_many :github_profiles belongs_to :user
has_many :forums
has_many :posts
has_many :comments
_Forum_ _Post_ _Comment_
belongs_to :user belongs_to :user belongs_to :user
has_many :posts belongs_to :forum belongs_to :post
has_many :comments
.
├── Gemfile
├── Gemfile.lock
├── Procfile
├── README.md
├── Rakefile
├── app
│ ├── assets
│ │ ├── font
│ │ │ └── material-design-icons
│ │ ├── images
│ │ │ ├── GitHub-bw.png
│ │ │ └── Octocat.png
│ │ ├── javascripts (3 directories, 38 files)
│ │ └── stylesheets (2 directories, 39 files)
│ ├── controllers
│ │ ├── application_controller.rb
│ │ ├── comments_controller.rb
│ │ ├── concerns
│ │ ├── forums_controller.rb
│ │ ├── friend_lists_controller.rb
│ │ ├── friend_requests_controller.rb
│ │ ├── posts_controller.rb
│ │ ├── users
│ │ │ └── omniauth_callbacks_controller.rb
│ │ └── users_controller.rb
│ ├── helpers
│ │ ├── application_helper.rb
│ │ ├── comments_helper.rb
│ │ ├── forums_helper.rb
│ │ ├── friend_lists_helper.rb
│ │ ├── friend_requests_helper.rb
│ │ ├── posts_helper.rb
│ │ └── users_helper.rb
│ ├── mailers
│ ├── models
│ │ ├── comment.rb
│ │ ├── concerns
│ │ ├── forum.rb
│ │ ├── friend_list.rb
│ │ ├── friend_request.rb
│ │ ├── github_profile.rb
│ │ ├── post.rb
│ │ └── user.rb
│ └── views
│ ├── comments (0 directories, 7 files)
│ ├── devise (7 directories, 11 files)
│ ├── forums (0 directories, 5 files)
│ ├── layouts (0 directories, 1 file)
│ ├── posts (0 directories, 5 files)
│ ├── shared (0 directories, 4 files)
│ └── users (0 directories, 3 files)
├── bin
│ ├── bundle
│ ├── rails
│ ├── rake
│ ├── setup
│ └── spring
├── config (3 directories, 21 files)
├── config.ru
├── coverage
├── db (1 directory, 13 files)
├── lib
│ ├── assets
│ └── tasks
├── log
│ ├── development.log
│ └── test.log
├── public (0 directories, 5 files)
├── test (6 directories, 21 files)
└── vendor
└── assets
├── javascripts
└── stylesheets
Project Total: 74 directories, 1791 files