-
Notifications
You must be signed in to change notification settings - Fork 2
/
STDevRxExt.podspec
29 lines (24 loc) · 1009 Bytes
/
STDevRxExt.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
29
Pod::Spec.new do |s|
s.name = 'STDevRxExt'
s.version = '1.1.0'
s.summary = 'STDevRxExt contains some extension functions for RxSwift and RxCoca which makes our live easy.'
s.swift_version = '5.0'
s.description = <<-DESC
STDevRxExt contains following 3 type of extensions for RxSwift and RxCocoa:
* Filter Extensions
* Map Extensions
* Cast Extensions
* more coming soon
DESC
s.homepage = 'https://github.com/STDevTM/STDevRxExt'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Tigran Hambardzumyan' => '[email protected]' }
s.source = { :git => 'https://github.com/STDevTM/STDevRxExt.git', :tag => s.version.to_s }
s.ios.deployment_target = '9.0'
s.osx.deployment_target = '10.9'
s.watchos.deployment_target = '3.0'
s.tvos.deployment_target = '9.0'
s.source_files = 'Sources/STDevRxExt/**/*'
s.dependency 'RxSwift', '~> 6'
s.dependency 'RxCocoa', '~> 6'
end