Skip to content

Instantly share code, notes, and snippets.

@krzkrzkrz
Created September 19, 2015 15:10
Show Gist options
  • Save krzkrzkrz/f057ac03937ce7e37c12 to your computer and use it in GitHub Desktop.
Save krzkrzkrz/f057ac03937ce7e37c12 to your computer and use it in GitHub Desktop.
class ConvertProductImage
class << self
def call(*args)
new(*args).call
end
end
def call
puts args
end
end
ConvertProductImage.call('foo', 'bar')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment