Skip to content

Instantly share code, notes, and snippets.

@cheeyeo
Created November 2, 2010 11:34
Show Gist options
  • Save cheeyeo/659513 to your computer and use it in GitHub Desktop.
Save cheeyeo/659513 to your computer and use it in GitHub Desktop.
Text object class for Adapter pattern
class TextObject
attr_accessor :text, :colour, :size_inches
def initialize(text,colour,size_inches)
@text = text
@colour = colour
@size_inches = size_inches
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment