From f2458f61603e76ea38ec868bfcfee5bf2b6039b9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Janko=20Marohni=C4=87?= Date: Thu, 22 Mar 2018 01:04:59 +0100 Subject: [PATCH] [minimagick] Don't print old API deprecation warning twice for IO objects --- lib/image_processing/mini_magick/deprecated_api.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/image_processing/mini_magick/deprecated_api.rb b/lib/image_processing/mini_magick/deprecated_api.rb index b0e9b85..9e3641f 100644 --- a/lib/image_processing/mini_magick/deprecated_api.rb +++ b/lib/image_processing/mini_magick/deprecated_api.rb @@ -21,7 +21,7 @@ module ImageProcessing instance_exec(file, *args, block, &body) else Utils.copy_to_tempfile(file) do |tempfile| - send(name, tempfile, *args, &block) + instance_exec(tempfile, *args, block, &body) end end end