Skip to content

Instantly share code, notes, and snippets.

@welbesw
Created May 1, 2015 22:01
Show Gist options
  • Save welbesw/cf5a855ee3519372ba8b to your computer and use it in GitHub Desktop.
Save welbesw/cf5a855ee3519372ba8b to your computer and use it in GitHub Desktop.
Parse with Extensions Podfile
platform:ios, '8.0'
use_frameworks!
source 'https://github.com/CocoaPods/Specs.git'
link_with 'AppName', 'AppName WatchKit Extension'
def shared_pods
pod 'Parse', '~> 1.7.2'
end
target :'AppName' do
shared_pods
pod 'AFNetworking', '~> 2.5.3'
pod 'hpple', '0.2.0'
pod 'MBProgressHUD', '~> 0.9.1'
pod 'TUSafariActivity', '~> 1.0.1'
pod 'GoogleAnalytics-iOS-SDK', '~> 3.10'
end
target :'AppName WatchKit Extension' do
shared_pods
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment