2024-04-29 00:17:15 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2022-02-22 09:21:35 +01:00
|
|
|
namespace :after_party do
|
|
|
|
desc 'Deployment task: setup_first_stats'
|
|
|
|
task setup_first_stats: :environment do
|
|
|
|
Stat.update_stats
|
|
|
|
|
|
|
|
# Update task as completed. If you remove the line below, the task will
|
|
|
|
# run with every deploy (or every time you call after_party:run).
|
|
|
|
AfterParty::TaskRecord
|
|
|
|
.create version: AfterParty::TaskRecorder.new(__FILE__).timestamp
|
|
|
|
end
|
|
|
|
end
|