Class: Pod::Downloader::Response
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Pod::Downloader::Response
 
 
- Defined in:
 - lib/cocoapods/downloader/response.rb
 
Overview
A response to a download request.
Instance Attribute Summary collapse
- 
  
    
      #checkout_options  ⇒ Hash<Symbol, String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
the downloader parameters necessary to recreate this exact download.
 - 
  
    
      #location  ⇒ Pathname 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
the location where this downloaded pod is stored on disk.
 - 
  
    
      #spec  ⇒ Specification 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
the specification that describes this downloaded pod.
 
Instance Attribute Details
#checkout_options ⇒ Hash<Symbol, String>
the downloader parameters necessary to recreate this exact download.
      14 15 16  | 
    
      # File 'lib/cocoapods/downloader/response.rb', line 14 def @checkout_options end  | 
  
#location ⇒ Pathname
the location where this downloaded pod is stored on disk.
      14 15 16  | 
    
      # File 'lib/cocoapods/downloader/response.rb', line 14 def location @location end  | 
  
#spec ⇒ Specification
the specification that describes this downloaded pod.
      14 15 16  | 
    
      # File 'lib/cocoapods/downloader/response.rb', line 14 def spec @spec end  |