Skip to content

Instantly share code, notes, and snippets.

@taylorlapeyre
Created December 17, 2012 23:28
Show Gist options
  • Save taylorlapeyre/4323434 to your computer and use it in GitHub Desktop.
Save taylorlapeyre/4323434 to your computer and use it in GitHub Desktop.
Basic outline / idea for a GalleryImage model
class GalleryImage
attr_reader :url, :description
def initialize(url, description)
@url = url
@description = description
end
def to_html
"<img src=\"#{@url}\" alt=\"#{@description}\" />"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment