-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathVATextureKitRx.podspec
29 lines (23 loc) · 1.07 KB
/
VATextureKitRx.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 = 'VATextureKitRx'
s.version = '3.0.0'
s.summary = 'Texture library wrapper with Rx additions.'
s.description = <<-DESC
This library is designed to make it easier to work with Texture.
It provides an easier syntax and includes modern features to make developing faster.
Includes RxSwift additions.
DESC
s.homepage = 'https://github.com/VAndrJ/VATextureKit'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Volodymyr Andriienko' => '[email protected]' }
s.source = { :git => 'https://github.com/VAndrJ/VATextureKit.git', :tag => s.version.to_s }
s.ios.deployment_target = '14.0'
s.source_files = 'VATextureKit/ClassesRx/**/*'
s.dependency 'Texture', '~> 3.2.0'
s.dependency 'RxSwift', '~> 6.5.0'
s.dependency 'RxCocoa', '~> 6.5.0'
s.dependency 'Differentiator', '~> 5.0.0'
s.dependency 'VATextureKitSpec', '3.0.0'
s.dependency 'VATextureKit', '3.0.0'
s.swift_versions = '6.0'
end