Skip to content

Instantly share code, notes, and snippets.

@AlejandroJL
Created July 27, 2013 01:01
Show Gist options
  • Save AlejandroJL/6093210 to your computer and use it in GitHub Desktop.
Save AlejandroJL/6093210 to your computer and use it in GitHub Desktop.
Parse CocoaPods
Pod::Spec.new do |s|
s.name = 'Parse'
s.version = '1.2.11'
s.license = { :type => 'Commercial', :text => 'See https://parse.com/about/terms' }
s.platform = :ios
s.summary = 'iOS framework for developing apps using the Parse BaaS.'
s.description = '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' => 'support@parse.com' }
s.source = { :git => 'https://github.com/jessbowers/Parse.git', :tag => "#{s.version}" }
s.source_files = 'ParseDummy.{m,h}'
s.preserve_paths = 'Parse.framework'
s.requires_arc = true
s.frameworks = 'StoreKit', 'AudioToolbox', 'CFNetwork', 'SystemConfiguration', 'MobileCoreServices', 'CoreGraphics', 'Security', 'QuartzCore', 'CoreLocation', 'Parse'
s.weak_frameworks = 'AdSupport','Social', 'Accounts'
s.xcconfig = { 'FRAMEWORK_SEARCH_PATHS' => '"$(PODS_ROOT)/Parse"' }
s.library = 'z', 'sqlite3'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment