-
Notifications
You must be signed in to change notification settings - Fork 50
/
Copy pathSocialize.podspec
29 lines (29 loc) · 1.32 KB
/
Socialize.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
Pod::Spec.new do |s|
s.name = "Socialize"
s.platform = :ios, '7.0'
s.version = "3.1.3"
s.summary = "Socialize SDK for iOS devices."
s.description = "An iOS social sharing SDK for native apps. Learn more at http://getsocialize.com/"
s.homepage = "https://github.com/socialize/socialize-sdk-ios"
s.documentation_url = 'http://socialize.github.io/socialize-sdk-ios/'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { "David Jedeikin" => "[email protected]" }
s.source = { :git => "https://github.com/socialize/socialize-sdk-ios.git", :tag => "3.1.3" }
s.dependency 'Loopy'
s.dependency 'Facebook-iOS-SDK', '3.20.0'
s.dependency 'SZOAuthConsumer'
s.dependency 'SZJSONKit'
s.dependency 'BlocksKit'
s.dependency 'STTwitter', '0.1.4'
s.resources = 'Socialize/Resources/*.png','Socialize/Resources/*.xib','Socialize/Resources/*.plist','Socialize/Resources/*.htm'
s.subspec 'no-arc' do |ss1|
ss1.source_files = 'Socialize-noarc/**/*.{h,m}'
ss1.requires_arc = false
ss1.compiler_flags = '-fno-objc-arc'
end
s.subspec 'arc' do |ss2|
ss2.source_files = 'Socialize/**/*.{h,m}'
ss2.dependency 'Socialize/no-arc'
ss2.requires_arc = true
end
end