2018-08-03 03:15:25 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-05-17 12:27:30 -04:00
|
|
|
module BlobViewer
|
|
|
|
class Gemfile < DependencyManager
|
|
|
|
include Static
|
|
|
|
|
|
|
|
self.file_types = %i(gemfile gemfile_lock)
|
|
|
|
|
|
|
|
def manager_name
|
|
|
|
'Bundler'
|
|
|
|
end
|
|
|
|
|
|
|
|
def manager_url
|
|
|
|
'http://bundler.io/'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|