forked from RxSwiftCommunity/RxKingfisher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
RxKingfisher.podspec
25 lines (22 loc) · 1 KB
/
RxKingfisher.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
Pod::Spec.new do |s|
s.name = "RxKingfisher"
s.version = "0.5.0"
s.summary = "Reactive extension for the Kingfisher image downloading and caching library"
s.description = <<-DESC
Reactive extension for the Kingfisher image downloading and caching library
DESC
s.homepage = "https://github.com/RxSwiftCommunity/RxKingfisher"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Shai Mishali" => "[email protected]" }
s.social_media_url = "https://raw.githubusercontent.com/RxSwiftCommunity/RxKingfisher/master/Images/logo.png"
s.source = { :git => "https://github.com/RxSwiftCommunity/RxKingfisher.git", :tag => s.version.to_s }
s.source_files = "Sources/**/*"
s.frameworks = "Foundation"
s.swift_version = "4.2"
s.ios.deployment_target = "10.0"
s.tvos.deployment_target = "10.0"
s.osx.deployment_target = "10.12"
s.dependency 'Kingfisher', '~> 5'
s.dependency 'RxSwift', '~> 4.3'
s.dependency 'RxCocoa', '~> 4.3'
end