Skip to content

Instantly share code, notes, and snippets.

@mleszcz
Created May 14, 2018 11:55
Show Gist options
  • Save mleszcz/533d00c4a067d0a208a388739c76f86d to your computer and use it in GitHub Desktop.
Save mleszcz/533d00c4a067d0a208a388739c76f86d to your computer and use it in GitHub Desktop.
class BlogActions
def create_post; end
def edit_post; end
def delete_post; end
end
class Moderator < BlogActions
end
moderator = Moderator.new
# not wanted!
moderator.delete_post
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment