forked from RxSwiftCommunity/RxOptional
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRxOptional.podspec
28 lines (23 loc) · 897 Bytes
/
RxOptional.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
Pod::Spec.new do |s|
s.name = 'RxOptional'
s.version = '4.0.0'
s.summary = 'RxSwift extensions for Swift optionals and Occupiable types'
s.description = <<-DESC
RxSwift extensions for Swift optionals and "Occupiable" types.
DESC
s.homepage = 'https://github.com/RxSwiftCommunity/RxOptional'
s.license = 'MIT'
s.author = { 'RxSwift Community' => '[email protected]' }
s.source = {
:git => 'https://github.com/RxSwiftCommunity/RxOptional.git',
:tag => s.version.to_s
}
s.ios.deployment_target = '9.0'
s.osx.deployment_target = '10.10'
s.watchos.deployment_target = '3.0'
s.tvos.deployment_target = '9.0'
s.source_files = 'Source/*.swift'
s.dependency 'RxSwift', '~> 5'
s.dependency 'RxCocoa', '~> 5'
s.frameworks = 'Foundation'
end