Skip to content

Instantly share code, notes, and snippets.

@cheeyeo
Created November 2, 2010 11:33
Show Gist options
  • Save cheeyeo/659512 to your computer and use it in GitHub Desktop.
Save cheeyeo/659512 to your computer and use it in GitHub Desktop.
Renderer class for Adapter pattern
class Renderer
def render(text_object)
text = text_object.text
colour = text_object.colour
size = text_object.size_inches
# render the text here
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment