class Pod::AggregateTarget

Public Instance Methods

reset_header_search_with_relative_hmap_path(hmap_path) click to toggle source
# File lib/cocoapods-hmap-prebuilt/pod_target.rb, line 51
def reset_header_search_with_relative_hmap_path(hmap_path)
  xcconfigs.each do |config_name, config_file|
    config_file.reset_header_search_with_relative_hmap_path(hmap_path)
    config_path = xcconfig_path(config_name)
    config_file.save_as(config_path)
  end

  pod_targets.each do |target|
    unless ($skip_hmap_for_pods.include?(target.name) || $fail_generate_hmap_pods.include?(target.name))
      target.addition_aggregate_hmapfile_to_pod_target(hmap_path)
    end
  end
end