gitlab-org--gitlab-foss/lib/gitlab/dependency_linker/cartfile_linker.rb

17 lines
354 B
Ruby

# frozen_string_literal: true
module Gitlab
module DependencyLinker
class CartfileLinker < MethodLinker
self.file_type = :cartfile
private
def link_dependencies
link_method_call('github', REPO_REGEX, &method(:github_url))
link_method_call(%w[github git binary], URL_REGEX, &:itself)
end
end
end
end