Skip to content

Instantly share code, notes, and snippets.

@kouyaf77
Created May 19, 2020 13:28
Show Gist options
  • Select an option

  • Save kouyaf77/642a38b7939e07263be5dfb3bf911f7e to your computer and use it in GitHub Desktop.

Select an option

Save kouyaf77/642a38b7939e07263be5dfb3bf911f7e to your computer and use it in GitHub Desktop.
polymorphic_good_pattern.rb
like.likable.execute
class Post
def execute
PostExcutor.call(self)
end
end
class Comment
def execute
CommentExcutor.call(like)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment