Class: Pod::Command::Cache::Clean
  
  
  
  
    
      Class Method Summary
      collapse
    
    
  
    
      Instance Method Summary
      collapse
    
    
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  #ensure_master_spec_repo_exists!, ensure_not_root_or_allowed!, report_error, run
  
  
  
  
  
  
  
  
  
  #config
  
  
  
  
  
  
  
  Constructor Details
  
    
  
  
    #initialize(argv)  ⇒ Clean 
  
  
  
  
    
Returns a new instance of Clean.
   
 
  
  
    
      
27
28
29
30
31 
     | 
    
      # File 'lib/cocoapods/command/cache/clean.rb', line 27
def initialize(argv)
  @pod_name = argv.shift_argument
  @wipe_all = argv.flag?('all')
  super
end
     | 
  
 
  
 
  
    Class Method Details
    
      
  
  
    .options  ⇒ Object 
  
  
  
  
    
      
21
22
23
24
25 
     | 
    
      # File 'lib/cocoapods/command/cache/clean.rb', line 21
def self.options
  [[
    '--all', 'Remove all the cached pods without asking'
  ]].concat(super)
end
     | 
  
 
    
   
  
    Instance Method Details
    
      
  
  
    #run  ⇒ Object 
  
  
  
  
    
      
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53 
     | 
    
      # File 'lib/cocoapods/command/cache/clean.rb', line 33
def run
  if @pod_name.nil?
            clear_cache
  else
        cache_descriptors = @cache.cache_descriptors_per_pod[@pod_name]
    if cache_descriptors.nil?
      UI.notice("No cache for pod named #{@pod_name} found")
    elsif cache_descriptors.count > 1 && !@wipe_all
            choices = cache_descriptors.map { |c| "#{@pod_name} v#{c[:version]} (#{pod_type(c)})" }
      index = UI.choose_from_array(choices, 'Which pod cache do you want to remove?')
      remove_caches([cache_descriptors[index]])
    else
            remove_caches(cache_descriptors)
    end
  end
end
     | 
  
 
    
      
  
  
    #validate!  ⇒ Object 
  
  
  
  
    
      
55
56
57
58
59
60
61 
     | 
    
      # File 'lib/cocoapods/command/cache/clean.rb', line 55
def validate!
  super
  if @pod_name.nil? && !@wipe_all
        help! 'You should either specify a pod name or use the --all flag'
  end
end
     |