Skip to content

Instantly share code, notes, and snippets.

@StanislavK
Created February 24, 2019 11:38
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 StanislavK/9233c7f229f58fc10d03f9518dd5e3d4 to your computer and use it in GitHub Desktop.
Save StanislavK/9233c7f229f58fc10d03f9518dd5e3d4 to your computer and use it in GitHub Desktop.
Play
#Use this when you need to have working playground and project: see more at https://www.twilio.com/blog/intro-to-markov-models-with-swift
@StanislavK
Copy link
Author

post_install do |installer|
    installer.pods_project.build_configurations.each do |config|
        config.build_settings.delete('CODE_SIGNING_ALLOWED')
        config.build_settings.delete('CODE_SIGNING_REQUIRED')
    end

    installer.pods_project.targets.each do |target|
        target.build_configurations.each do |config|
            config.build_settings['CONFIGURATION_BUILD_DIR'] = '$PODS_CONFIGURATION_BUILD_DIR'
        end
    end
end

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment