gitlab-org--gitlab-foss/app/models/blob_viewer/cartfile.rb
2017-05-17 14:10:00 -05:00

15 lines
241 B
Ruby

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