Module: Songdrop::ImageHelper

Included in:
Artist, Mix, Song, User
Defined in:
lib/songdrop/objects/image_helper.rb

Instance Method Summary collapse

Instance Method Details

#image(options = {}) ⇒ Object



4
5
6
7
8
# File 'lib/songdrop/objects/image_helper.rb', line 4

def image(options={})
  options[:action] ||= 'crop'
  options[:size] ||= '50x50'
  self.image_url.gsub('ACTION', options[:action]).gsub('WIDTHxHEIGHT', options[:size])
end