How to do you manually reganerate a variant with active storage? Example class:
class Doc has_many_attached :uploads do |attachable| attachable.variant :pdf_thumb, resize_to_limit: [400, nil] end end
I want to be able force the regeneration of the pdf_thumb
from the example