summaryrefslogtreecommitdiff
path: root/app/models/blob_viewer/requirements_txt.rb
blob: 83ac55f61d0ca9e51c41d43da55652ab00544b32 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
module BlobViewer
  class RequirementsTxt < DependencyManager
    include Static

    self.file_types = %i(requirements_txt)

    def manager_name
      'pip'
    end

    def manager_url
      'https://pip.pypa.io/'
    end
  end
end