-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathRxStatusProvider.podspec
More file actions
26 lines (20 loc) · 935 Bytes
/
RxStatusProvider.podspec
File metadata and controls
26 lines (20 loc) · 935 Bytes
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
Pod::Spec.new do |s|
s.name = "RxStatusProvider"
s.version = "1.0.2"
s.summary = "RxSwift extensions for StatusProvider."
s.description = <<-DESC
Some Rx extensions for StatusProvider, a protocol to handle initial Loadings, Empty Views and Error Handling in a ViewController & views
DESC
s.homepage = "https://github.com/qiuncheng/RxStatusProvider"
# s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2'
s.license = {:type => "MIT", :file => "LICENSE"}
s.author = {"qiuncheng" => "qiuncheng@gmail.com"}
s.source = {:git => "https://github.com/qiuncheng/RxStatusProvider.git", :tag => s.version.to_s}
s.social_media_url = "https://twitter.com/vsccw"
s.ios.deployment_target = "9.0"
s.swift_version = "5.0"
s.source_files = "RxStatusProvider/Classes/**/*"
s.dependency "StatusProvider"
s.dependency "RxSwift"
s.dependency "RxCocoa"
end