-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathRxSocialConnect.podspec
More file actions
34 lines (26 loc) · 1.04 KB
/
RxSocialConnect.podspec
File metadata and controls
34 lines (26 loc) · 1.04 KB
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
Pod::Spec.new do |s|
s.name = "RxSocialConnect"
s.version = "1.0.0"
s.summary = "OAuth RxSwift extension for iOS."
s.homepage = "https://github.com/FuckBoilerplate/RxSocialConnect-iOS"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Roberto Frontado" => "robertofrontado@gmail.com" }
s.source = { :git => "https://github.com/FuckBoilerplate/RxSocialConnect-iOS.git", :tag => s.version.to_s }
s.social_media_url = "https://github.com/FuckBoilerplate"
s.ios.deployment_target = '9.0'
s.requires_arc = true
s.default_subspec = "Core"
s.subspec "Core" do |ss|
ss.source_files = 'Sources/Core/**/*'
ss.dependency 'OAuthSwift', '~> 1.0.0'
ss.dependency 'RxSwift', '~> 3.0'
ss.dependency 'RxBlocking', '~> 3.0'
end
s.subspec "Moya" do |ss|
ss.source_files = 'Sources/Moya/**/*'
ss.dependency 'RxSocialConnect/Core'
ss.dependency 'Alamofire', '~> 4.0'
ss.dependency 'Moya', '~> 8.0.0-beta.2'
ss.dependency 'Moya/RxSwift'
end
end