mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-23 01:06:22 +00:00
17 lines
406 B
Ruby
17 lines
406 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
# Permite traer los cambios cada vez que se
|
||
|
# hace un push al repositorio
|
||
|
class GitPullJob < ApplicationJob
|
||
|
# @param :site [Site]
|
||
|
# @return [nil]
|
||
|
def perform(site)
|
||
|
# hace un fetch para ver cambios
|
||
|
site.repository.fetch
|
||
|
|
||
|
# hace un merge
|
||
|
site.repository.merge(site.usuarie)
|
||
|
site.repository.git_sh("git lfs fetch")
|
||
|
|
||
|
end
|
||
|
end
|