class Pod::Downloader::Cache

Public Class Methods

new(root) click to toggle source

override

# File lib/cocoapods_plugin.rb, line 9
def initialize(root)
  @root = Pathname.new(Dir.home) + "Library/Caches/CocoaPods/#{Pod::VERSION}" # this line is added by plugin
  #ensure_matching_version # this line is deleted by plugin
  UI.message "Using pods cache of path: #{@root} (by cocoapods-keep-multiversion-cache)" # this line is added by plugin
end