Skip to content

Instantly share code, notes, and snippets.

@ecgreb
Last active December 16, 2015 22:39
Show Gist options
  • Save ecgreb/5508957 to your computer and use it in GitHub Desktop.
Save ecgreb/5508957 to your computer and use it in GitHub Desktop.
Simple Podfile
platform :ios
# Add logging framework to all targets.
pod 'CocoaLumberjack'
# Add Kiwi to unit test target only.
target :UnitTests, :exclusive => true do
pod 'Kiwi'
end
# Add KIF to integration test target only.
target :IntegrationTests, :exclusive => true do
pod 'KIF'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment