Read more

Check whether a Paperclip attachment exists

Henning Koch
July 28, 2011Software engineer at makandra GmbH

Don't simply test for the presence of the magic Paperclip attribute, it will return a paperclip Attachment object and thus always be true:

- if user.photo.present? # always true
  = image_tag(user.photo.url)
Illustration online protection

Rails Long Term Support

Rails LTS provides security patches for old versions of Ruby on Rails (2.3, 3.2, 4.2 and 5.2)

  • Prevents you from data breaches and liability risks
  • Upgrade at your own pace
  • Works with modern Rubies
Read more Show archive.org snapshot

Use #exists? instead:

- if user.photo.exists?
  = image_tag(user.photo.url)
Posted by Henning Koch to makandra dev (2011-07-28 18:15)