-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRxPagination.podspec
27 lines (22 loc) · 1 KB
/
RxPagination.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
Pod::Spec.new do |spec|
spec.name = "RxPagination"
spec.version = "0.0.3"
spec.summary = "Handle paginated APIs easily, based on RxSwift Action"
spec.description = <<-DESC
Handle paginated APIs easily, based on RxSwift Action. Including 3 pagination styles.
DESC
spec.homepage = "https://github.com/khoi-truong/RxPagination"
spec.license = { :type => "MIT", :file => "LICENSE" }
spec.author = { "Khoi Truong" => "khoi.truongminh@gmail.com" }
spec.swift_version = "5.0"
spec.platform = :ios, "12.0"
spec.source = { :git => "https://github.com/khoi-truong/RxPagination.git",
:tag => spec.version.to_s }
spec.source_files = "Sources/**/*.{swift}"
spec.frameworks = "Foundation"
spec.dependency "RxSwift", "~> 6.0"
spec.dependency "RxCocoa", "~> 6.0"
spec.dependency "RxSwiftExt", "~> 6.0"
spec.dependency "RxOptional", "~> 5.0"
spec.dependency "Action", "~> 5.0"
end