Created
October 25, 2016 21:00
-
-
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
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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