2013-03-22 18:18:54 +00:00
|
|
|
|
|
|
|
namespace :product_build_list do
|
|
|
|
|
|
|
|
namespace :clear do
|
|
|
|
desc 'Remove outdated ProductBuildLists'
|
2014-01-21 04:51:49 +00:00
|
|
|
task outdated: :environment do
|
2013-03-22 18:18:54 +00:00
|
|
|
say "[#{Time.zone.now}] Removing outdated ProductBuildLists"
|
|
|
|
say "[#{Time.zone.now}] There are #{ProductBuildList.outdated.count} outdated ProductBuildLists"
|
|
|
|
ProductBuildList.outdated.destroy_all
|
|
|
|
say "[#{Time.zone.now}] Outdated BuildLists have been removed"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|