mirror of
https://github.com/openSUSE/osem.git
synced 2026-01-24 13:58:56 -05:00
11 lines
302 B
Ruby
11 lines
302 B
Ruby
# frozen_string_literal: true
|
|
|
|
namespace :data do
|
|
namespace :migrate do
|
|
desc 'Resize existing logo of sponsors after change in image manipulation specifications'
|
|
task logo_reprocess: :environment do
|
|
Sponsor.find_each { |s| s.picture.recreate_versions! if s.picture? }
|
|
end
|
|
end
|
|
end
|