class Pod::Installer::Analyzer

Analyzes the Podfile, the Lockfile, and the sandbox manifest to generate the information relative to a CocoaPods installation.

Public Instance Methods

origin_update_repositories()
Alias for: update_repositories
update_repositories() click to toggle source
# File lib/cocoapods-pdk8/hook/analyzer.rb, line 9
def update_repositories
  threads = []
  sources.each do |source|
    threads << Thread.new {
      if source.updateable?
        sources_manager.update(source.name, true)
      else
        UI.message "Skipping `#{source.name}` update because the repository is not an updateable repository."
      end
    }
  end
  threads.each {|thr| thr.join}
  @specs_updated = true
end
Also aliased as: origin_update_repositories, origin_update_repositories