Class: Pod::Sandbox::PodspecFinder
- Inherits:
 - 
      Object
      
        
- Object
 - Pod::Sandbox::PodspecFinder
 
 
- Defined in:
 - lib/cocoapods/sandbox/podspec_finder.rb
 
Instance Attribute Summary collapse
- 
  
    
      #root  ⇒ Object 
    
    
  
  
  
  
    
      readonly
    
    
  
  
  
  
  
  
    
Returns the value of attribute root.
 
Instance Method Summary collapse
- 
  
    
      #initialize(root)  ⇒ PodspecFinder 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of PodspecFinder.
 - #podspecs ⇒ Object
 
Constructor Details
#initialize(root) ⇒ PodspecFinder
Returns a new instance of PodspecFinder.
      6 7 8  | 
    
      # File 'lib/cocoapods/sandbox/podspec_finder.rb', line 6 def initialize(root) @root = root end  | 
  
Instance Attribute Details
#root ⇒ Object (readonly)
Returns the value of attribute root.
      4 5 6  | 
    
      # File 'lib/cocoapods/sandbox/podspec_finder.rb', line 4 def root @root end  | 
  
Instance Method Details
#podspecs ⇒ Object
      10 11 12 13 14 15 16 17 18 19 20  | 
    
      # File 'lib/cocoapods/sandbox/podspec_finder.rb', line 10 def podspecs return @specs_by_name if @specs_by_name @specs_by_name = {} spec_files = Pathname.glob(root + '{,*}.podspec{,.json}') spec_files.sort_by { |p| -p.to_path.split(File::SEPARATOR).size }.each do |file| spec = Specification.from_file(file) spec.validate_cocoapods_version @specs_by_name[spec.name] = spec end @specs_by_name end  |