diff --git a/lib/paperclip/processor.rb b/lib/paperclip/processor.rb index 4db1312c4..32cb8a41a 100644 --- a/lib/paperclip/processor.rb +++ b/lib/paperclip/processor.rb @@ -37,13 +37,21 @@ def self.make file, options = {}, attachment = nil # The convert method runs the convert binary with the provided arguments. # See Paperclip.run for the available options. def convert(arguments = "", local_options = {}) - Paperclip.run(Gem.win_platform ? "magick convert" : "convert", arguments, local_options) + Paperclip.run( + Gem.win_platform ? "magick convert" : "convert", + arguments, + local_options + ) end # 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