Created
July 27, 2013 01:01
-
-
Save AlejandroJL/6093210 to your computer and use it in GitHub Desktop.
Parse CocoaPods
This file contains 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
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' => '[email protected]' } | |
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