Skip to content

Instantly share code, notes, and snippets.

@mleszcz
Last active May 16, 2018 11:29
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/8959b22f005d392934cc80e3e3ad4a90 to your computer and use it in GitHub Desktop.
Save mleszcz/8959b22f005d392934cc80e3e3ad4a90 to your computer and use it in GitHub Desktop.
class Rectangle
attr_accessor: :width, :height
def set_width(width)
@width = width
some_ui_width_related_callbacks
end
def set_height(height)
@height = height
some_ui_height_related_callbacks
end
end
class Square < Rectangle
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment