-
Notifications
You must be signed in to change notification settings - Fork 4
/
ALDataRequestView.podspec
37 lines (32 loc) · 1.4 KB
/
ALDataRequestView.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
Pod::Spec.new do |s|
s.name = "ALDataRequestView"
s.version = "2.3.2"
s.summary = "A view representation for data requests. Support for ReactiveCocoa and RXSwift."
s.description = "A view representation for data requests. Support for ReactiveCocoa and RXSwift by attached it to signalproducers and observables."
s.homepage = "https://github.com/AvdLee/ALDataRequestView"
s.license = 'MIT'
s.author = { "Antoine van der Lee" => "[email protected]" }
s.source = { :git => "https://github.com/AvdLee/ALDataRequestView.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/twannl'
s.ios.deployment_target = '8.0'
s.tvos.deployment_target = '9.0'
s.requires_arc = true
s.default_subspec = "Core"
s.subspec "Core" do |ss|
ss.source_files = "Source/*.swift"
ss.dependency "PureLayout"
ss.dependency "ReachabilitySwift"
ss.framework = "Foundation"
end
s.subspec "RxSwift" do |ss|
ss.source_files = "Source/RxSwift/*.swift"
ss.dependency "RxSwift"
ss.dependency "RxCocoa"
ss.dependency "ALDataRequestView/Core"
end
s.subspec "ReactiveCocoa" do |ss|
ss.source_files = "Source/ReactiveCocoa/*.swift"
ss.dependency "ReactiveSwift"
ss.dependency "ALDataRequestView/Core"
end
end