Skip to content

Instantly share code, notes, and snippets.

@shadeslayer
Created September 16, 2015 14:11
Show Gist options
  • Save shadeslayer/e6704e1e5de1bd20dd19 to your computer and use it in GitHub Desktop.
Save shadeslayer/e6704e1e5de1bd20dd19 to your computer and use it in GitHub Desktop.
module CI
class BaseImage
def initialize(flavor, series)
@flavor = flavor
@series = series
end
def to_s
"pangea/#{@flavor}:#{@series}"
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment