mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-16 08:51:42 +00:00
20 lines
279 B
Ruby
20 lines
279 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
# Reindexa los artículos al terminar la compilación
|
||
|
class DeployReindex < Deploy
|
||
|
def deploy
|
||
|
site.reset
|
||
|
site.indexed_posts.destroy_all
|
||
|
site.index_posts!
|
||
|
site.touch
|
||
|
end
|
||
|
|
||
|
def limit
|
||
|
1
|
||
|
end
|
||
|
|
||
|
def hostname
|
||
|
nil
|
||
|
end
|
||
|
end
|