create_thumbnails_job.rb 161 Bytes Edit Raw Blame History 1 2 3 4 5 6 class CreateThumbnailsJob < Struct.new(:class_name, :file_id) def perform file = class_name.constantize.find(file_id) file.create_thumbnails end end