Skip to content

Instantly share code, notes, and snippets.

@waltflanagan
Created January 3, 2017 15:53
Show Gist options
  • Save waltflanagan/6068cbdb89d8f01b22f81136f42bac8a to your computer and use it in GitHub Desktop.
Save waltflanagan/6068cbdb89d8f01b22f81136f42bac8a to your computer and use it in GitHub Desktop.
platform :ios, '9.0'
use_frameworks!
inhibit_all_warnings!
workspace 'Food52.xcworkspace'
pod 'Alamofire', '~>4.0'
pod 'CocoaLumberjack/Swift', '~>3.0'
pod 'PINRemoteImage','~> 2.0'
target 'PantryExtension' do
target 'NotRecipeNotificationService' do
end
target 'NotRecipesNotificationUI' do
end
target 'TrendingIngredients' do
end
end
target 'Pantry' do
target 'PantryTests' do
inherit! :search_paths
pod 'OHHTTPStubs', '~>5.2'
pod 'OHHTTPStubs/Swift', '~>5.2'
end
target 'PantryPerformanceTests' do
inherit! :search_paths
end
target 'InterfacePlayground' do
project 'InterfacePlayground/InterfacePlayground.xcodeproj'
pod 'NYTPhotoViewer/Core', '~> 1.1.0'
end
target 'NotRecipes' do
pod 'Reveal-SDK', :configurations => ['Debug']
pod 'FBSDKLoginKit', '~>4.3'
pod 'FBSDKShareKit', '~>4.3'
pod 'OAStackView', '~> 0.1'
pod 'DeepLinkKit', '~> 1.1.0'
pod 'GPUImage', '~> 0.1'
pod 'Crashlytics'
pod 'Fuzi', '~> 1.0.0'
pod 'NYTPhotoViewer/Core', '~> 1.1.0'
target 'NotRecipesTests' do
inherit! :search_paths
pod 'Fuzi', '~> 1.0.0'
end
end
end
@waltflanagan
Copy link
Author

pod 'Alamofire', '~>4.0'
pod 'CocoaLumberjack/Swift', '~>3.0'
pod 'PINRemoteImage','~> 2.0'

creates an implicit abstract target

target 'Pantry' do and target 'PantryExtension' do are shared frameworks that need the above pods

target 'NotRecipes' do and target 'InterfacePlayground' do are apps that link to the above shared frameworks

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