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, public_only = false)  ⇒ Result 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of Result.
 
Constructor Details
#initialize(type, attribute_name, message, public_only = false) ⇒ Result
Returns a new instance of Result.
      975 976 977 978  | 
    
      # File 'lib/cocoapods/validator.rb', line 975 def initialize(type, attribute_name, , public_only = false) super(type, attribute_name, , public_only) @subspecs = [] end  | 
  
Instance Attribute Details
#subspecs ⇒ Object (readonly)
Returns the value of attribute subspecs.
      980 981 982  | 
    
      # File 'lib/cocoapods/validator.rb', line 980 def subspecs @subspecs end  |