jeremyboles-graffic 0.2.2 → 0.2.3
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/graffic.rb +1 -1
- metadata +1 -1
data/lib/graffic.rb
CHANGED
@@ -270,7 +270,7 @@ protected
|
|
270
270
|
def run_processors
|
271
271
|
logger.debug("***** Graffic[#{self.id}](#{self.name}): Running processor")
|
272
272
|
unless self.processor.blank?
|
273
|
-
@image = processor.call(image)
|
273
|
+
@image = processor.call(image, self)
|
274
274
|
raise 'You need to return an image' unless @image.is_a?(Magick::Image)
|
275
275
|
end
|
276
276
|
end
|