Skip to content

Instantly share code, notes, and snippets.

@troystribling
Last active November 22, 2016 19:57
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 troystribling/2d4630200d3dd4e3fc8b6d5e14e4732a to your computer and use it in GitHub Desktop.
Save troystribling/2d4630200d3dd4e3fc8b6d5e14e4732a to your computer and use it in GitHub Desktop.
Pod file post_install hook to enable BlueCapKit DBUG output
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
if config.name == 'Debug'
config.build_settings['OTHER_SWIFT_FLAGS'] ||= ['$(inherited)', '-D DEBUG']
end
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment