Created
July 26, 2012 21:37
-
-
Save phillbaker/3184709 to your computer and use it in GitHub Desktop.
Facebook-iOS-SDK v3.0.6.b
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
Pod::Spec.new do |s| | |
s.name = 'Facebook-iOS-SDK' | |
s.version = '3.0.6.b' | |
s.platform = :ios | |
s.license = 'Apache License, Version 2.0' | |
s.summary = 'The iOS SDK provides Facebook Platform support for iOS apps.' | |
s.description = 'The Facebook iOS SDK enables you to access the Facebook Platform APIs including the Graph API, FQL, and Dialogs.' | |
s.homepage = 'http://developers.facebook.com/docs/reference/iossdk' | |
s.author = 'Facebook' | |
s.source = { :git => 'https://github.com/facebook/facebook-ios-sdk.git', :tag => 'sdk-version-3.0.6.b' } | |
s.source_files = 'src/*.{h,m}' | |
s.resource = 'src/FBiOSSDKResources.bundle' | |
s.library = 'sqlite3.0' | |
s.dependency 'SBJson', '2.2.3' | |
def s.post_install(target) | |
File.open( config.project_pods_root + 'Facebook-iOS-SDK/src/FBSDKVersion-generated.h', "w" ) { |file| file.puts '#define FB_IOS_SDK_VERSION_STRING @"3.0.6.b"' } | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment