Skip to content

Instantly share code, notes, and snippets.

@launchkit-codes
Created August 19, 2018 10:11
Show Gist options
  • Select an option

  • Save launchkit-codes/6b3e4e1abd740ca94b57f2a9d5f2f63f to your computer and use it in GitHub Desktop.

Select an option

Save launchkit-codes/6b3e4e1abd740ca94b57f2a9d5f2f63f to your computer and use it in GitHub Desktop.
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