Skip to content

Instantly share code, notes, and snippets.

@mleszcz
Last active May 16, 2018 12:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mleszcz/dc3a5871bf30ffbc41cbc485490dd5e3 to your computer and use it in GitHub Desktop.
Save mleszcz/dc3a5871bf30ffbc41cbc485490dd5e3 to your computer and use it in GitHub Desktop.
class Square < Rectangle
def set_width(width)
@width = width
@height = height
some_ui_width_related_callbacks
some_ui_height_related_callbacks
end
def set_height(height)
set_width(height)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment