Class: Pod::Validator::Result
- Inherits:
-
Specification::Linter::Results::Result
- Object
- Specification::Linter::Results::Result
- Pod::Validator::Result
- Defined in:
- lib/cocoapods/validator.rb
Overview
Specialized Result to support subspecs aggregation
Instance Attribute Summary collapse
-
#subspecs ⇒ Object
readonly
Returns the value of attribute subspecs.
Instance Method Summary collapse
-
#initialize(type, attribute_name, message) ⇒ Result
constructor
A new instance of Result.
Constructor Details
#initialize(type, attribute_name, message) ⇒ Result
Returns a new instance of Result.
512 513 514 515 |
# File 'lib/cocoapods/validator.rb', line 512 def initialize(type, attribute_name, ) super(type, attribute_name, ) @subspecs = [] end |
Instance Attribute Details
#subspecs ⇒ Object (readonly)
Returns the value of attribute subspecs.
517 518 519 |
# File 'lib/cocoapods/validator.rb', line 517 def subspecs @subspecs end |