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

15 lines
237 B
Ruby

module BlobViewer
class GodepsJson < DependencyManager
include Static
self.file_types = %i(godeps_json)
def manager_name
'godep'
end
def manager_url
'https://github.com/tools/godep'
end
end
end