From 7cb8e9ccbaccafc2bb2a242dbaf494b8e2be4d7f Mon Sep 17 00:00:00 2001 From: aboutqx <1004945442@qq.com> Date: Mon, 31 Oct 2016 16:08:58 +0800 Subject: [PATCH] Update processor.rb --- lib/paperclip/processor.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/paperclip/processor.rb b/lib/paperclip/processor.rb index c50b3670f..d89079b18 100644 --- a/lib/paperclip/processor.rb +++ b/lib/paperclip/processor.rb @@ -43,7 +43,7 @@ def convert(arguments = "", local_options = {}) # The identify method runs the identify binary with the provided arguments. # See Paperclip.run for the available options. def identify(arguments = "", local_options = {}) - Paperclip.run(Gem.win_platform?"magick identify":"identify", arguments, local_options) + Paperclip.run(Gem.win_platform? ? "magick identify" : "identify", arguments, local_options) end end end