Created
December 17, 2012 23:28
-
-
Save taylorlapeyre/4323434 to your computer and use it in GitHub Desktop.
Basic outline / idea for a GalleryImage model
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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