This repository was archived by the owner on Jul 4, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIndex.podspec
More file actions
46 lines (37 loc) · 1.77 KB
/
Index.podspec
File metadata and controls
46 lines (37 loc) · 1.77 KB
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#
# Be sure to run `pod lib lint Index.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see https://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'Index'
s.version = '1.1.1'
s.summary = 'Index helps with data collection for cells like UITableViewCell giving more information besides only the object'
s.homepage = 'https://github.com/umobi/Index'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'brennobemoura' => 'brenno@umobi.com.br' }
s.source = { :git => 'https://github.com/umobi/Index.git', :tag => s.version.to_s }
s.ios.deployment_target = '10.0'
s.swift_version = "5.1"
s.description = <<-DESC
Index has Row, Section, and SectionRow as your data provider for collection of views. You can transform Object into Row<Object> easily. The Section is for data that has the same feeling for section with rows and you can transform them into Section or SectionRow with you want to have a one-dimensional data.
DESC
s.default_subspec = "Core"
s.subspec 'Core' do |s|
s.source_files = "Sources/Index/Core/**/*.swift"
end
s.subspec 'IndexBindable' do |s|
s.source_files = "Sources/Index/IndexBindable/**/*.swift"
s.dependency "Index/Core"
s.dependency "UMUtils/UMViewModel", "~> 1.1.3"
s.dependency "RxSwift", "~> 5.0.0"
s.dependency "RxCocoa", "~> 5.0.0"
end
s.subspec 'IndexContainer' do |s|
s.source_files = "Sources/Index/IndexContainer/**/*.swift"
s.dependency "Index/IndexBindable"
s.dependency "UIContainer", '~> 1.2.0-beta.9'
end
end