Re: [Rails] Re: Paperclip - 'identify' command.

2010-09-11 Thread radhames brito
install imagemagick if you are in windows there is a problem with the command paperclip user since it call the shell as if is a linux shell and you get that errot try upgrading paperclip if it still not working , reply with a bit more info. but is mainly a problem with imagemagick On Sat, Sep 11

[Rails] Re: Paperclip - 'identify' command.

2010-09-11 Thread Abder-Rahman Ali
Abder-Rahman Ali wrote: > I followed the issue following this: > > I just needed to replace the "'#{m}'" with "\"#{m} > \"" in the quote_command_options method. > > def quote_command_options(*options) > options.map do |option| > option.split("'").map{|m| "\"#{m}\"" }.join("\\'") >

[Rails] Re: Paperclip - 'identify' command.

2010-09-11 Thread Abder-Rahman Ali
I followed the issue following this: I just needed to replace the "'#{m}'" with "\"#{m} \"" in the quote_command_options method. def quote_command_options(*options) options.map do |option| option.split("'").map{|m| "\"#{m}\"" }.join("\\'") end end From: http://groups.g