module Pod::Command::Project

def self.included(base)

def self.included(base)
  base.extend Options
end

def initialize(argv)

def initialize(argv)
  config.clean = argv.flag?('clean', config.clean)
  config.integrate_targets = argv.flag?('integrate', config.integrate_targets)
  config.skip_repo_update = !argv.flag?('repo-update', !config.skip_repo_update)
  super
end

def run_install_with_update(update)

Returns:
  • (void) -

Parameters:
  • whether (update) -- the installer should be run in update mode.
def run_install_with_update(update)
  installer = Installer.new(config.sandbox, config.podfile, config.lockfile)
  installer.update_mode = update
  installer.install!
end