-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathPhDownloader.podspec
27 lines (24 loc) · 1.15 KB
/
PhDownloader.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 = "PhDownloader"
spec.version = '0.7.0'
spec.summary = "Petrus Hoc's Downloader - Simple, reactive and functional downloader for iOS Swift with the power of RxSwift, RxAlamofire"
spec.homepage = "https://github.com/hoc081098/PhDownloader"
spec.license = { :type => "MIT", :file => "LICENSE" }
spec.author = { "Petrus Nguyễn Thái Học" => "hoc081098@gmail.com" }
spec.social_media_url = "https://twitter.com/hoc081098"
spec.platform = :ios
spec.ios.deployment_target = "12.0"
spec.swift_version = "5.1"
spec.source = { :git => "https://github.com/hoc081098/PhDownloader.git", :tag => "#{spec.version}" }
spec.source_files = "PhDownloader/**/*.{swift}"
spec.requires_arc = true
spec.framework = "Foundation"
spec.dependency 'Alamofire', '~> 5.6'
spec.dependency 'RxAlamofire', '~> 6.1'
spec.dependency 'RxSwift', '~> 6.5'
spec.dependency 'RxRelay', '~> 6.5'
spec.dependency 'Realm', '~> 10.40.1'
spec.dependency 'RealmSwift', '~> 10.40.1'
# FIXME https://github.com/RxSwiftCommunity/RxRealm/issues/201
spec.dependency 'RxRealm', '~> 5.0.6'
end