Skip to content

Instantly share code, notes, and snippets.

@pi-chan
Last active August 29, 2015 14:02
Show Gist options
  • Save pi-chan/451f4f383e6654c9c585 to your computer and use it in GitHub Desktop.
Save pi-chan/451f4f383e6654c9c585 to your computer and use it in GitHub Desktop.
Parse.podspec
Pod::Spec.new do |s|
s.name = 'Parse'
s.version = '1.2.19'
s.license = { :type => 'Commercial', :text => 'See https://parse.com/about/terms' }
s.platform = :ios, '5.0'
s.summary = 'Parse iOS SDK for developing apps using the Parse cloud app platform.'
s.description = 'The Parse iOS SDK enables access to the parse.com cloud app platform. Requires an account with parse.com. To integrate after adding this pod, continue with step 9 in the QuickStart: (https://parse.com/apps/quickstart).'
s.homepage = 'http://parse.com'
s.author = 'Parse'
s.source = { :http => "http://parse-ios.s3.amazonaws.com/66888d7d226541c93c33aa76e5f8e086/parse-library-#{s.version}.zip" }
s.vendored_frameworks = "Parse/Parse.framework"
s.public_header_files = "Parse/Parse.framework/Headers/*.h"
s.preserve_paths = "Parse/Parse.framework"
s.xcconfig = { 'FRAMEWORK_SEARCH_PATHS' => '"$(PODS_ROOT)/Parse"' }
s.requires_arc = true
s.frameworks = 'AudioToolbox', 'CFNetwork', 'CoreGraphics', 'CoreLocation', 'MobileCoreServices', 'QuartzCore', 'Security', 'StoreKit', 'SystemConfiguration'
s.dependency 'Facebook-iOS-SDK', '~> 3.11'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment