class Pod::Installer

Public Instance Methods

clean_sandbox(pod_targets) click to toggle source
# File lib/cocoapods-headermap/installer.rb, line 19
def clean_sandbox(pod_targets)
    new_clean_sandbox(pod_targets)
    sandbox.public_headers.rm_headers_root!
end
Also aliased as: new_clean_sandbox
new_clean_sandbox(pod_targets)
Alias for: clean_sandbox
new_run_podfile_post_install_hooks()
run_podfile_post_install_hooks() click to toggle source
# File lib/cocoapods-headermap/installer.rb, line 8
def run_podfile_post_install_hooks
    unless @pods_project.nil?
        @pods_project.targets.each do |target|
            target.build_configurations.each do |config|
                config.build_settings['USE_HEADERMAP'] = 'NO' if Configuration.disable_system_headermap && !Configuration.enabled_headermap_pods.include?(target.name)
            end
        end
    end
    new_run_podfile_post_install_hooks
end