summaryrefslogtreecommitdiff
path: root/app/models/blob_viewer/cartfile.rb
blob: d8471bc33c0b41d72d29409cd2d676203b8b6dbf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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