Class: Pod::Command::Bin::Repo::Update
- Inherits:
 - 
      Pod::Command::Bin::Repo
      
        
- Object
 - Pod::Command
 - Pod::Command::Bin
 - Pod::Command::Bin::Repo
 - Pod::Command::Bin::Repo::Update
 
 
- Defined in:
 - lib/cocoapods-mtxx-bin/command/bin/repo/update.rb
 
Class Method Summary collapse
Instance Method Summary collapse
- 
  
    
      #initialize(argv)  ⇒ Update 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of Update.
 - #run ⇒ Object
 
Methods included from CBin::SpecFilesHelper
#binary_spec, #binary_spec_files, #binary_template_spec, #binary_template_spec_file, #binary_template_spec_files, #clear_binary_spec_file_if_needed, #code_spec, #code_spec_files, #create_binary_spec_file, #find_spec_file, #spec_files
Methods included from CBin::SourcesHelper
#binary_source, #code_source_list, #sources_manager, #sources_option, #valid_sources
Constructor Details
#initialize(argv) ⇒ Update
Returns a new instance of Update.
      20 21 22 23 24  | 
    
      # File 'lib/cocoapods-mtxx-bin/command/bin/repo/update.rb', line 20 def initialize(argv) @all = argv.flag?('all') @name = argv.shift_argument super end  | 
  
Class Method Details
.options ⇒ Object
      14 15 16 17 18  | 
    
      # File 'lib/cocoapods-mtxx-bin/command/bin/repo/update.rb', line 14 def self. [ ['--all', '更新所有私有源,默认只更新二进制相关私有源'] ].concat(super) end  | 
  
Instance Method Details
#run ⇒ Object
      26 27 28 29 30 31 32 33 34 35  | 
    
      # File 'lib/cocoapods-mtxx-bin/command/bin/repo/update.rb', line 26 def run if @all config.sources_manager.update() else valid_sources.map { |source| UI.puts "更新私有源仓库 #{source.to_s}" source.update(false) } end end  |