388cb319d5
Partially addresses #47424.
17 lines
272 B
Ruby
17 lines
272 B
Ruby
# 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
|