10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# File 'lib/cocoapods-mtxx-bin/native/gen.rb', line 10
def run
UI.puts "[pod gen] Running with #{configuration.to_s.gsub("\n", " \n")}" if configuration.pod_config.verbose?
update_sources if configuration.repo_update?
installers = []
Generate::PodfileGenerator.new(configuration).podfiles_by_spec.each do |spec, podfile|
installer = Generate::Installer.new(configuration, spec, podfile).install!
installers << installer
end
remove_warnings(UI.warnings)
installers
end
|