Method: PodBuilder::Command::Clean.call

Defined in:
lib/pod_builder/command/clean.rb

.callObject



7
8
9
10
11
12
13
14
15
16
17
18
19
20
# File 'lib/pod_builder/command/clean.rb', line 7

def self.call
  Configuration.check_inited
  PodBuilder::prepare_basepath

  install_update_repo = OPTIONS.fetch(:update_repos, true)
  installer, analyzer = Analyze.installer_at(PodBuilder::basepath, install_update_repo)
  all_buildable_items = Analyze.podfile_items(installer, analyzer)

  prebuilt_items(all_buildable_items)
  install_sources(all_buildable_items)

  puts "\n\nšŸŽ‰ done!\n".green
  return 0
end