Skip to content

Instantly share code, notes, and snippets.

@ahmetardal
Created October 21, 2017 04:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ahmetardal/6c712bb10f4db5ea12f6e31713227f97 to your computer and use it in GitHub Desktop.
Save ahmetardal/6c712bb10f4db5ea12f6e31713227f97 to your computer and use it in GitHub Desktop.
post_install do |installer|
installer.pods_project.targets.each do |target|
puts target.name
target.build_configurations.each do |config|
next unless config.name == 'Debug'
puts config.name
puts config.build_settings['LD_RUNPATH_SEARCH_PATHS']
puts "------------\n"
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment