Created
August 19, 2018 10:11
-
-
Save launchkit-codes/6b3e4e1abd740ca94b57f2a9d5f2f63f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| module Commentable | |
| def self.included(commentable_entity) | |
| puts "The #{commentable_entity} entity now accepts comments !" | |
| end | |
| end | |
| class MediumPost | |
| include Commentable | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment