2018-09-03 16:20:57 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module GitHelpers
|
2018-10-01 23:21:46 -04:00
|
|
|
def rugged_repo(repository)
|
|
|
|
path = File.join(TestEnv.repos_path, repository.disk_path + '.git')
|
|
|
|
|
|
|
|
Rugged::Repository.new(path)
|
|
|
|
end
|
|
|
|
|
2018-09-03 16:20:57 -04:00
|
|
|
def project_hook_exists?(project)
|
|
|
|
Gitlab::GitalyClient::StorageSettings.allow_disk_access do
|
|
|
|
project_path = project.repository.raw_repository.path
|
|
|
|
|
|
|
|
File.exist?(File.join(project_path, 'hooks', 'post-receive'))
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|