gitextract_ctb4iudp/ ├── .gitignore ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── app/ │ ├── assets/ │ │ ├── images/ │ │ │ └── .keep │ │ ├── javascripts/ │ │ │ ├── application.js │ │ │ ├── comments.js │ │ │ ├── events.js │ │ │ ├── follows.js │ │ │ ├── home.js │ │ │ ├── likes.js │ │ │ ├── posts.js │ │ │ └── users.js │ │ └── stylesheets/ │ │ ├── application.css.scss │ │ ├── comments.css.scss │ │ ├── events.css.scss │ │ ├── follows.css.scss │ │ ├── home.css.scss │ │ ├── likes.css.scss │ │ ├── posts.css.scss │ │ ├── styles.css.scss │ │ ├── users.css.scss │ │ └── variables.css.scss │ ├── controllers/ │ │ ├── application_controller.rb │ │ ├── comments_controller.rb │ │ ├── concerns/ │ │ │ └── .keep │ │ ├── events_controller.rb │ │ ├── follows_controller.rb │ │ ├── home_controller.rb │ │ ├── likes_controller.rb │ │ ├── posts_controller.rb │ │ └── users_controller.rb │ ├── helpers/ │ │ ├── application_helper.rb │ │ ├── comments_helper.rb │ │ ├── events_helper.rb │ │ ├── follows_helper.rb │ │ ├── home_helper.rb │ │ ├── likes_helper.rb │ │ ├── posts_helper.rb │ │ └── users_helper.rb │ ├── mailers/ │ │ └── .keep │ ├── models/ │ │ ├── .keep │ │ ├── comment.rb │ │ ├── concerns/ │ │ │ ├── .keep │ │ │ └── shared/ │ │ │ └── callbacks.rb │ │ ├── event.rb │ │ ├── follow.rb │ │ ├── mention.rb │ │ ├── merit/ │ │ │ ├── badge_rules.rb │ │ │ ├── point_rules.rb │ │ │ └── rank_rules.rb │ │ ├── post.rb │ │ └── user.rb │ ├── serializers/ │ │ └── event_calendar_serializer.rb │ ├── uploaders/ │ │ └── avatar_uploader.rb │ └── views/ │ ├── comments/ │ │ ├── _comment.html.erb │ │ ├── _form.html.erb │ │ ├── create.js.erb │ │ └── destroy.js.erb │ ├── devise/ │ │ ├── confirmations/ │ │ │ └── new.html.erb │ │ ├── mailer/ │ │ │ ├── confirmation_instructions.html.erb │ │ │ ├── reset_password_instructions.html.erb │ │ │ └── unlock_instructions.html.erb │ │ ├── passwords/ │ │ │ ├── edit.html.erb │ │ │ └── new.html.erb │ │ ├── registrations/ │ │ │ ├── edit.html.erb │ │ │ └── new.html.erb │ │ ├── sessions/ │ │ │ └── new.html.erb │ │ ├── shared/ │ │ │ └── _links.html.erb │ │ └── unlocks/ │ │ └── new.html.erb │ ├── events/ │ │ ├── _event.html.erb │ │ ├── _form.html.erb │ │ ├── calendar.html.erb │ │ ├── destroy.js.erb │ │ ├── edit.html.erb │ │ ├── new.html.erb │ │ └── show.html.erb │ ├── follows/ │ │ ├── _form.html.erb │ │ ├── create.js.erb │ │ └── destroy.js.erb │ ├── home/ │ │ ├── about.html.erb │ │ ├── find_friends.html.erb │ │ ├── find_friends.js.erb │ │ ├── front.html.erb │ │ ├── front.js.erb │ │ ├── index.html.erb │ │ └── index.js.erb │ ├── layouts/ │ │ └── application.html.erb │ ├── likes/ │ │ ├── _form.html.erb │ │ ├── create.js.erb │ │ └── destroy.js.erb │ ├── posts/ │ │ ├── _form.html.erb │ │ ├── _post.html.erb │ │ ├── destroy.js.erb │ │ ├── edit.html.erb │ │ └── show.html.erb │ ├── public_activity/ │ │ ├── comment/ │ │ │ └── _create.html.erb │ │ ├── event/ │ │ │ ├── _create.html.erb │ │ │ └── _like.html.erb │ │ ├── follow/ │ │ │ └── _create.html.erb │ │ └── post/ │ │ ├── _create.html.erb │ │ └── _like.html.erb │ ├── shared/ │ │ ├── _actions.html.erb │ │ ├── _activity.html.erb │ │ ├── _avatar.html.erb │ │ ├── _cover.html.erb │ │ ├── _created_at.html.erb │ │ ├── _links.html.erb │ │ ├── _navbar.html.erb │ │ ├── _no_resource.html.erb │ │ ├── _paginate.html.erb │ │ ├── _paginate.js.erb │ │ └── _user_info.html.erb │ └── users/ │ ├── _user.html.erb │ ├── deactivate.html.erb │ ├── edit.html.erb │ ├── followers.html.erb │ ├── followers.js.erb │ ├── friends.html.erb │ ├── friends.js.erb │ ├── show.html.erb │ └── show.js.erb ├── bin/ │ ├── bundle │ ├── rails │ ├── rake │ ├── setup │ └── spring ├── config/ │ ├── application.rb │ ├── boot.rb │ ├── database.yml │ ├── environment.rb │ ├── environments/ │ │ ├── development.rb │ │ ├── production.rb │ │ └── test.rb │ ├── initializers/ │ │ ├── assets.rb │ │ ├── backtrace_silencers.rb │ │ ├── carrierwave.rb │ │ ├── cookies_serializer.rb │ │ ├── devise.rb │ │ ├── filter_parameter_logging.rb │ │ ├── friendly_id.rb │ │ ├── inflections.rb │ │ ├── merit.rb │ │ ├── mime_types.rb │ │ ├── session_store.rb │ │ └── wrap_parameters.rb │ ├── locales/ │ │ ├── devise.en.yml │ │ └── en.yml │ ├── puma.rb │ ├── routes.rb │ └── secrets.yml ├── config.ru ├── db/ │ ├── migrate/ │ │ ├── 20150701024445_devise_create_users.rb │ │ ├── 20150702015915_create_posts.rb │ │ ├── 20150702020527_create_activities.rb │ │ ├── 20150703041854_acts_as_votable_migration.rb │ │ ├── 20150703053202_add_cached_votes_to_posts.rb │ │ ├── 20150703054721_create_comments.rb │ │ ├── 20150703161656_add_counter_cache_to_posts.rb │ │ ├── 20150703194107_acts_as_follower_migration.rb │ │ ├── 20150709034258_create_events.rb │ │ ├── 20150709050651_add_votes_comments_count_to_events.rb │ │ ├── 20150710004012_add_fields_to_user.rb │ │ ├── 20150710030803_add_posts_count_to_users.rb │ │ ├── 20150710044606_create_friendly_id_slugs.rb │ │ ├── 20150710044624_add_slug_to_users.rb │ │ ├── 20150723052523_add_content_html_to_posts.rb │ │ ├── 20150723052743_add_comment_html_to_comments.rb │ │ ├── 20170428044229_rename_events_when_column.rb │ │ ├── 20170613183107_add_merit_fields_to_users.rb │ │ ├── 20170613183243_create_merit_actions.rb │ │ ├── 20170613183244_create_merit_activity_logs.rb │ │ ├── 20170613183245_create_sashes.rb │ │ ├── 20170613183246_create_badges_sashes.rb │ │ └── 20170613183247_create_scores_and_points.rb │ ├── schema.rb │ └── seeds.rb ├── lib/ │ ├── assets/ │ │ └── .keep │ └── tasks/ │ ├── .keep │ └── populate.rake ├── public/ │ ├── 404.html │ ├── 422.html │ ├── 500.html │ └── robots.txt ├── test/ │ ├── controllers/ │ │ ├── .keep │ │ ├── comments_controller_test.rb │ │ ├── events_controller_test.rb │ │ ├── follows_controller_test.rb │ │ ├── home_controller_test.rb │ │ ├── likes_controller_test.rb │ │ ├── posts_controller_test.rb │ │ └── users_controller_test.rb │ ├── fixtures/ │ │ ├── .keep │ │ ├── events.yml │ │ ├── posts.yml │ │ └── users.yml │ ├── helpers/ │ │ ├── .keep │ │ ├── comments_helper_test.rb │ │ ├── events_helper_test.rb │ │ ├── follows_helper_test.rb │ │ ├── home_helper_test.rb │ │ ├── likes_helper_test.rb │ │ ├── posts_helper_test.rb │ │ └── users_helper_test.rb │ ├── integration/ │ │ └── .keep │ ├── mailers/ │ │ └── .keep │ ├── models/ │ │ ├── .keep │ │ ├── event_test.rb │ │ ├── post_test.rb │ │ └── user_test.rb │ └── test_helper.rb └── vendor/ └── assets/ ├── javascripts/ │ ├── .keep │ ├── bindWithDelay.js │ └── jquery.datetimepicker.js └── stylesheets/ ├── .keep ├── fontello-embedded.css └── jquery.datetimepicker.css