Class: Pod::Installer::Analyzer::AnalysisResult

Inherits:
Object
  • Object
show all
Defined in:
lib/cocoapods/installer/analyzer/analysis_result.rb

Overview

A simple container produced after a analysis is completed by the Pod::Installer::Analyzer.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(podfile_state, specs_by_target, specs_by_source, specifications, sandbox_state, targets, pod_targets, podfile_dependency_cache) ⇒ AnalysisResult



39
40
41
42
43
44
45
46
47
48
49
# File 'lib/cocoapods/installer/analyzer/analysis_result.rb', line 39

def initialize(podfile_state, specs_by_target, specs_by_source, specifications, sandbox_state, targets, pod_targets,
               podfile_dependency_cache)
  @podfile_state = podfile_state
  @specs_by_target = specs_by_target
  @specs_by_source = specs_by_source
  @specifications = specifications
  @sandbox_state = sandbox_state
  @targets = targets
  @pod_targets = pod_targets
  @podfile_dependency_cache = podfile_dependency_cache
end

Instance Attribute Details

#pod_targetsArray<PodTarget> (readonly)



33
34
35
# File 'lib/cocoapods/installer/analyzer/analysis_result.rb', line 33

def pod_targets
  @pod_targets
end

#podfile_dependency_cachePodfileDependencyCache (readonly)



37
38
39
# File 'lib/cocoapods/installer/analyzer/analysis_result.rb', line 37

def podfile_dependency_cache
  @podfile_dependency_cache
end

#podfile_stateSpecsState (readonly)



9
10
11
# File 'lib/cocoapods/installer/analyzer/analysis_result.rb', line 9

def podfile_state
  @podfile_state
end

#sandbox_stateSpecsState (readonly)



25
26
27
# File 'lib/cocoapods/installer/analyzer/analysis_result.rb', line 25

def sandbox_state
  @sandbox_state
end

#specificationsArray<Specification> (readonly)



21
22
23
# File 'lib/cocoapods/installer/analyzer/analysis_result.rb', line 21

def specifications
  @specifications
end

#specs_by_sourceHash{Source => Array<Specification>} (readonly)



17
18
19
# File 'lib/cocoapods/installer/analyzer/analysis_result.rb', line 17

def specs_by_source
  @specs_by_source
end

#specs_by_targetHash{TargetDefinition => Array<Specification>} (readonly)



13
14
15
# File 'lib/cocoapods/installer/analyzer/analysis_result.rb', line 13

def specs_by_target
  @specs_by_target
end

#targetsArray<AggregateTarget> (readonly)



29
30
31
# File 'lib/cocoapods/installer/analyzer/analysis_result.rb', line 29

def targets
  @targets
end

Instance Method Details

#all_user_build_configurationsHash{String=>Symbol}



56
57
58
59
60
# File 'lib/cocoapods/installer/analyzer/analysis_result.rb', line 56

def all_user_build_configurations
  targets.reduce({}) do |result, target|
    result.merge(target.user_build_configurations)
  end
end

#needs_install?Boolean



65
66
67
# File 'lib/cocoapods/installer/analyzer/analysis_result.rb', line 65

def needs_install?
  podfile_needs_install? || sandbox_needs_install?
end

#podfile_needs_install?Boolean



71
72
73
74
75
# File 'lib/cocoapods/installer/analyzer/analysis_result.rb', line 71

def podfile_needs_install?
  state = podfile_state
  needing_install = state.added.length + state.changed.length + state.deleted.length
  needing_install > 0
end

#sandbox_needs_install?Boolean



79
80
81
82
83
# File 'lib/cocoapods/installer/analyzer/analysis_result.rb', line 79

def sandbox_needs_install?
  state = sandbox_state
  needing_install = state.added.length + state.changed.length + state.deleted.length
  needing_install > 0
end