Class: Pod::Source::HealthReporter::HealthReport
- Inherits:
-
Object
- Object
- Pod::Source::HealthReporter::HealthReport
- Defined in:
- lib/cocoapods-core/source/health_reporter.rb
Overview
Encapsulates the information about the state of a repo.
Private helpers collapse
-
#analyzed_paths ⇒ Array<Pathname>
The list of the analyzed paths.
-
#pods_by_error ⇒ Hash{ String => Hash }
The pods (the version grouped by name) grouped by an error message.
-
#pods_by_warning ⇒ Hash{ String => Hash }
The pods (the version grouped by name) grouped by a warning message.
-
#source ⇒ Source
readonly
The source analyzed.
Private helpers collapse
-
#add_message(type, message, spec_name, spec_version = nil) ⇒ void
Adds a message with the given type for the specification with the given name and version.
-
#initialize(source) ⇒ HealthReport
constructor
A new instance of HealthReport.
Constructor Details
#initialize(source) ⇒ HealthReport
Returns a new instance of HealthReport.
143 144 145 146 147 148 |
# File 'lib/cocoapods-core/source/health_reporter.rb', line 143 def initialize(source) @source = source @analyzed_paths = [] @pods_by_error = {} @pods_by_warning = {} end |
Instance Attribute Details
#analyzed_paths ⇒ Array<Pathname>
Returns The list of the analyzed paths.
152 153 154 |
# File 'lib/cocoapods-core/source/health_reporter.rb', line 152 def analyzed_paths @analyzed_paths end |
#pods_by_error ⇒ Hash{ String => Hash }
Returns The pods (the version grouped by name) grouped by an error message.
157 158 159 |
# File 'lib/cocoapods-core/source/health_reporter.rb', line 157 def pods_by_error @pods_by_error end |
#pods_by_warning ⇒ Hash{ String => Hash }
Returns The pods (the version grouped by name) grouped by a warning message.
162 163 164 |
# File 'lib/cocoapods-core/source/health_reporter.rb', line 162 def pods_by_warning @pods_by_warning end |
#source ⇒ Source (readonly)
Returns the source analyzed.
139 140 141 |
# File 'lib/cocoapods-core/source/health_reporter.rb', line 139 def source @source end |
Instance Method Details
#add_message(type, message, spec_name, spec_version = nil) ⇒ void
This method returns an undefined value.
Adds a message with the given type for the specification with the given name and version.
181 182 183 184 185 186 |
# File 'lib/cocoapods-core/source/health_reporter.rb', line 181 def (type, , spec_name, spec_version = nil) pods = send(:"pods_by_#{type}") pods[] ||= {} pods[][spec_name] ||= [] pods[][spec_name] << spec_version end |