15 lines
237 B
Ruby
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
|