Created
January 3, 2017 15:53
-
-
Save waltflanagan/6068cbdb89d8f01b22f81136f42bac8a to your computer and use it in GitHub Desktop.
This file contains hidden or 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
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 | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
creates an implicit abstract target
target 'Pantry' do
andtarget 'PantryExtension' do
are shared frameworks that need the above podstarget 'NotRecipes' do
andtarget 'InterfacePlayground' do
are apps that link to the above shared frameworks