We're using RMagick to identify image types in cases where the file extensions are unavailable or wrong. The format
attribute works on my local Mac dev box, but on Heroku it returns nil...
irb> require 'RMagick'
irb> image = Magick::Image::read('https://s3.amazonaws.com/com.appgrinders.test/images/dog.gif')[0]
irb> image.format
=> nil
Any ideas?