-
Notifications
You must be signed in to change notification settings - Fork 96
/
Copy pathSCFacebook.podspec
39 lines (27 loc) · 1.38 KB
/
SCFacebook.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#
# Be sure to run `pod spec lint SCFacebook.podspec' to ensure this is a
# valid spec and to remove all comments including this before submitting the spec.
#
# To learn more about Podspec attributes see http://docs.cocoapods.org/specification.html
# To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/
#
Pod::Spec.new do |s|
s.name = "SCFacebook"
s.version = "4.1"
s.summary = "The SCFacebook is a simpler and cleaner to use the api facebook-ios-sdk Objective-C "
s.description = <<-DESC
The SCFacebook is a simpler and cleaner to use the api facebook-ios-sdk Objective-C (https://github.com/facebook/facebook-ios-sdk) to perform login, get friends list, information about the user and posting on the wall with ^Block for iPhone.
http://www.lucascorrea.com
DESC
s.homepage = "http://www.lucascorrea.com"
s.license = { :type => "MIT", :text => "SCFacebook is licensed under the MIT License" }
s.author = { "Lucas Correa" => "[email protected]" }
s.platform = :ios, "9.0"
s.ios.deployment_target = "9.0"
s.source = { :git => "https://github.com/lucascorrea/SCFacebook.git", :tag => "4.1" }
s.source_files = "SCFacebook/**/*SCFacebook.{h,m}"
s.requires_arc = true
s.dependency "FBSDKCoreKit"
s.dependency "FBSDKShareKit"
s.dependency "FBSDKLoginKit"
end