Skip to content

Instantly share code, notes, and snippets.

@samdods
Created March 14, 2018 18:38
Show Gist options
  • Save samdods/bd0df88f9076bca253e7cc14c6cf9e3f to your computer and use it in GitHub Desktop.
Save samdods/bd0df88f9076bca253e7cc14c6cf9e3f to your computer and use it in GitHub Desktop.
# sources
source 'https://github.com/CocoaPods/Specs.git'
# global config
platform :ios, '11.0'
use_frameworks!
workspace 'FunkySocial'
# methods to ensure the same version of each library is used across targets
def networkAndParsingPods
pod 'JSONUtilities', '5.0.0'
pod 'TABResourceLoader', '7.2.1'
end
def uiPods
pod 'AdobeMobileSDK', '~> 4.13'
end
# targets
target 'FunkySocial' do
project 'FunkySocial/FunkySocial'
networkAndParsingPods
uiPods
target 'FunkySocialTests' do
end
end
target 'ProfileUI' do
project 'ProfileUI'
uiPods
target 'ProfileUITests' do
end
end
target 'Profile' do
project 'Profile'
networkAndParsingPods
target 'ProfileTests' do
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment