Может быть, эта строка поможет вам
Rails.application.routes.url_helpers.rails_blob_path(Object.attachement, only_path:true)
Вы можете добавить этот метод в вашу модель
def attachment_url
if self.attachment.attached?
Rails.application.routes.url_helpers.rails_blob_path(self.attachement, only_path:true)
else
nil
end
end
И звони из любой точки.
Если в вашей модели много вложений
def attachment_url(item_attached)
if item_attached.attached?
Rails.application.routes.url_helpers.rails_blob_path(item_attached, only_path:true)
else
nil
end
end
Object.attachement_url(Object.image)