16 lines
226 B
Ruby
16 lines
226 B
Ruby
|
module BlobViewer
|
||
|
class Podfile < DependencyManager
|
||
|
include Static
|
||
|
|
||
|
self.file_types = %i(podfile)
|
||
|
|
||
|
def manager_name
|
||
|
'CocoaPods'
|
||
|
end
|
||
|
|
||
|
def manager_url
|
||
|
'https://cocoapods.org/'
|
||
|
end
|
||
|
end
|
||
|
end
|