Skip to content

Instantly share code, notes, and snippets.

@toddhopkinson
Created October 25, 2016 21:00
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 toddhopkinson/52e73342767c487e8228ce94a2d71127 to your computer and use it in GitHub Desktop.
Save toddhopkinson/52e73342767c487e8228ce94a2d71127 to your computer and use it in GitHub Desktop.
Podfile that makes available pod to test target for XCTests in an imaginary lavaApp
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '9.0'
use_frameworks!
target 'lavaApp' do
pod 'ARSLineProgress', '~> 2.0'
pod 'Alamofire', '~> 4.0'
pod 'Willow', '~> 2.0'
pod 'SwiftyJSON', '~> 3.1.1'
target 'lavaAppTests' do
pod 'SwiftyJSON', '~> 3.1.1'
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment