Results 5 comments of Amit Chakradeo

Can this now be released as a new version. It's been a while since rails has been released.

Try using the git version of the gem. Unfortunately, the owner/maintainer of the gem is not releasing a new version of this gem!

I got hit by this today after I upgraded to newer version of this gem. How do I specify that an attachment is optional now? This was my code before:...

Thanks! So the new code then should be: ``` has_one_attached :profile_picture validates :profile_picture, content_type: ["image/jpg", "image/jpeg", "image/png", "image/gif", "image/webp"] ``` Correct? This allows no attachment as valid, but if it...