module EasyImaging

Constants

AVAILABLE_METHODS
VERSION

Public Instance Methods

process(style, method_called, *args) click to toggle source
# File lib/easy_imaging.rb, line 32
def process(style, method_called, *args)
  path = self.paperclip_image.path(style)
  source = MiniMagick::Image.open(path)
  source = source.send(method_called, *args)
  source.write(path)
end