Skip to content

Instantly share code, notes, and snippets.

@phillbaker
Created July 26, 2012 21:37
Show Gist options
  • Save phillbaker/3184709 to your computer and use it in GitHub Desktop.
Save phillbaker/3184709 to your computer and use it in GitHub Desktop.
Facebook-iOS-SDK v3.0.6.b
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