summaryrefslogtreecommitdiff
path: root/lib/gitlab/dependency_linker/cartfile_linker.rb
blob: 0e33f0956dd69736eb9ba8637c71b1862f77f046 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# 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