├── .github └── FUNDING.yml ├── LICENSE ├── README.md ├── app ├── controllers │ └── like_controller.rb ├── helpers │ └── like_helper.rb ├── models │ ├── like.rb │ ├── like_constants.rb │ └── like_mailer.rb └── views │ ├── issues │ ├── _issuesHistoryJournalBottom.html.erb │ └── _issuesShowDetailsBottom.html.erb │ ├── like │ ├── _likeIcon.html.erb │ └── index.html.erb │ ├── like_mailer │ ├── on_like.html.erb │ └── on_like.text.erb │ └── wiki │ └── _layoutsBaseContent.html.erb ├── assets ├── images │ ├── icon_heart_off.png │ ├── icon_heart_on.png │ ├── icon_heart_shadow_off.png │ ├── icon_heart_shadow_on.png │ ├── icon_star_off.png │ ├── icon_star_on.png │ ├── icon_star_shadow_off.png │ ├── icon_star_shadow_on.png │ ├── icon_thumbsup_off.png │ ├── icon_thumbsup_on.png │ ├── icon_thumbsup_shadow_off.png │ ├── icon_thumbsup_shadow_on.png │ ├── issue_page_ss.png │ ├── like_tooltip_ss.png │ ├── like_total.png │ ├── summary_page.png │ ├── type_of_icons.png │ └── wiki_page_ss.png ├── javascripts │ └── like.js └── stylesheets │ └── like.css ├── config ├── locales │ ├── en.yml │ └── ja.yml └── routes.rb ├── db └── migrate │ ├── 001_create_likes.rb │ └── 202204292130_add_author_id_to_likes.rb ├── init.rb ├── lib └── like │ └── hooks.rb └── test ├── functional └── like_controller_test.rb ├── test_helper.rb └── unit ├── like_mailer_test.rb └── like_test.rb /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | liberapay: happy-se-life 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happy-se-life/like/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happy-se-life/like/HEAD/README.md -------------------------------------------------------------------------------- /app/controllers/like_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happy-se-life/like/HEAD/app/controllers/like_controller.rb -------------------------------------------------------------------------------- /app/helpers/like_helper.rb: -------------------------------------------------------------------------------- 1 | module LikeHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/models/like.rb: -------------------------------------------------------------------------------- 1 | class Like < ActiveRecord::Base 2 | end 3 | -------------------------------------------------------------------------------- /app/models/like_constants.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happy-se-life/like/HEAD/app/models/like_constants.rb -------------------------------------------------------------------------------- /app/models/like_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happy-se-life/like/HEAD/app/models/like_mailer.rb -------------------------------------------------------------------------------- /app/views/issues/_issuesHistoryJournalBottom.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happy-se-life/like/HEAD/app/views/issues/_issuesHistoryJournalBottom.html.erb -------------------------------------------------------------------------------- /app/views/issues/_issuesShowDetailsBottom.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happy-se-life/like/HEAD/app/views/issues/_issuesShowDetailsBottom.html.erb -------------------------------------------------------------------------------- /app/views/like/_likeIcon.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happy-se-life/like/HEAD/app/views/like/_likeIcon.html.erb -------------------------------------------------------------------------------- /app/views/like/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happy-se-life/like/HEAD/app/views/like/index.html.erb -------------------------------------------------------------------------------- /app/views/like_mailer/on_like.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happy-se-life/like/HEAD/app/views/like_mailer/on_like.html.erb -------------------------------------------------------------------------------- /app/views/like_mailer/on_like.text.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happy-se-life/like/HEAD/app/views/like_mailer/on_like.text.erb -------------------------------------------------------------------------------- /app/views/wiki/_layoutsBaseContent.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happy-se-life/like/HEAD/app/views/wiki/_layoutsBaseContent.html.erb -------------------------------------------------------------------------------- /assets/images/icon_heart_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happy-se-life/like/HEAD/assets/images/icon_heart_off.png -------------------------------------------------------------------------------- /assets/images/icon_heart_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happy-se-life/like/HEAD/assets/images/icon_heart_on.png -------------------------------------------------------------------------------- /assets/images/icon_heart_shadow_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happy-se-life/like/HEAD/assets/images/icon_heart_shadow_off.png -------------------------------------------------------------------------------- /assets/images/icon_heart_shadow_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happy-se-life/like/HEAD/assets/images/icon_heart_shadow_on.png -------------------------------------------------------------------------------- /assets/images/icon_star_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happy-se-life/like/HEAD/assets/images/icon_star_off.png -------------------------------------------------------------------------------- /assets/images/icon_star_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happy-se-life/like/HEAD/assets/images/icon_star_on.png -------------------------------------------------------------------------------- /assets/images/icon_star_shadow_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happy-se-life/like/HEAD/assets/images/icon_star_shadow_off.png -------------------------------------------------------------------------------- /assets/images/icon_star_shadow_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happy-se-life/like/HEAD/assets/images/icon_star_shadow_on.png -------------------------------------------------------------------------------- /assets/images/icon_thumbsup_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happy-se-life/like/HEAD/assets/images/icon_thumbsup_off.png -------------------------------------------------------------------------------- /assets/images/icon_thumbsup_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happy-se-life/like/HEAD/assets/images/icon_thumbsup_on.png -------------------------------------------------------------------------------- /assets/images/icon_thumbsup_shadow_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happy-se-life/like/HEAD/assets/images/icon_thumbsup_shadow_off.png -------------------------------------------------------------------------------- /assets/images/icon_thumbsup_shadow_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happy-se-life/like/HEAD/assets/images/icon_thumbsup_shadow_on.png -------------------------------------------------------------------------------- /assets/images/issue_page_ss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happy-se-life/like/HEAD/assets/images/issue_page_ss.png -------------------------------------------------------------------------------- /assets/images/like_tooltip_ss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happy-se-life/like/HEAD/assets/images/like_tooltip_ss.png -------------------------------------------------------------------------------- /assets/images/like_total.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happy-se-life/like/HEAD/assets/images/like_total.png -------------------------------------------------------------------------------- /assets/images/summary_page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happy-se-life/like/HEAD/assets/images/summary_page.png -------------------------------------------------------------------------------- /assets/images/type_of_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happy-se-life/like/HEAD/assets/images/type_of_icons.png -------------------------------------------------------------------------------- /assets/images/wiki_page_ss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happy-se-life/like/HEAD/assets/images/wiki_page_ss.png -------------------------------------------------------------------------------- /assets/javascripts/like.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happy-se-life/like/HEAD/assets/javascripts/like.js -------------------------------------------------------------------------------- /assets/stylesheets/like.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happy-se-life/like/HEAD/assets/stylesheets/like.css -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happy-se-life/like/HEAD/config/locales/en.yml -------------------------------------------------------------------------------- /config/locales/ja.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happy-se-life/like/HEAD/config/locales/ja.yml -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happy-se-life/like/HEAD/config/routes.rb -------------------------------------------------------------------------------- /db/migrate/001_create_likes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happy-se-life/like/HEAD/db/migrate/001_create_likes.rb -------------------------------------------------------------------------------- /db/migrate/202204292130_add_author_id_to_likes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happy-se-life/like/HEAD/db/migrate/202204292130_add_author_id_to_likes.rb -------------------------------------------------------------------------------- /init.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happy-se-life/like/HEAD/init.rb -------------------------------------------------------------------------------- /lib/like/hooks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happy-se-life/like/HEAD/lib/like/hooks.rb -------------------------------------------------------------------------------- /test/functional/like_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happy-se-life/like/HEAD/test/functional/like_controller_test.rb -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happy-se-life/like/HEAD/test/test_helper.rb -------------------------------------------------------------------------------- /test/unit/like_mailer_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happy-se-life/like/HEAD/test/unit/like_mailer_test.rb -------------------------------------------------------------------------------- /test/unit/like_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happy-se-life/like/HEAD/test/unit/like_test.rb --------------------------------------------------------------------------------