gitlab-org--gitlab-foss/app/models/blob_viewer/cartfile.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
272 B
Ruby
Raw Normal View History

# frozen_string_literal: true
module BlobViewer
class Cartfile < DependencyManager
include Static
self.file_types = %i(cartfile)
def manager_name
'Carthage'
end
def manager_url
'https://github.com/Carthage/Carthage'
end
end
end