-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMVZTableView.podspec
More file actions
51 lines (50 loc) · 2.05 KB
/
MVZTableView.podspec
File metadata and controls
51 lines (50 loc) · 2.05 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
47
48
49
50
51
Pod::Spec.new do |s|
s.name = "MVZTableView"
s.version = "0.0.1"
s.summary = "UITableView with MVVM"
s.homepage = "https://github.com/medvedzzz/MVZTableView"
s.license = 'MIT'
s.author = { "Evgeny Mikhaylov" => "evgenmikhaylov@gmail.com" }
s.source = { :git => "https://github.com/medvedzzz/MVZTableView.git", :tag => s.version }
s.platform = :ios, '8.0'
s.requires_arc = true
s.source_files = 'MVZTableView/*.{h,m}'
s.subspec 'ViewModel' do |ss|
ss.source_files = 'MVZTableView/ViewModel/*.{h,m}'
end
s.subspec 'SectionFactories' do |ss|
ss.source_files = 'MVZTableView/SectionFactories/*.{h,m}'
ss.subspec 'SectionItemsFactory' do |sss|
sss.source_files = 'MVZTableView/SectionFactories/SectionItemsFactory/*.{h,m}'
end
end
s.subspec 'Sections' do |ss|
# ss.dependency 'RSBTableViewManager/Protocols'
ss.source_files = 'MVZTableView/Sections/*.{h,m}'
ss.subspec 'Section' do |sss|
sss.source_files = 'MVZTableView/Sections/Section/*.{h,m}'
sss.subspec 'SectionModel' do |ssss|
ssss.source_files = 'MVZTableView/Sections/Section/SectionModel/*.{h,m}'
end
sss.subspec 'CellFactories' do |ssss|
ssss.source_files = 'MVZTableView/Sections/Section/CellFactories/*.{h,m}'
ssss.subspec 'CellItemsFactory' do |sssss|
sssss.source_files = 'MVZTableView/Sections/Section/CellFactories/CellItemsFactory/*.{h,m}'
end
end
sss.subspec 'Cells' do |ssss|
ssss.source_files = 'MVZTableView/Sections/Section/Cells/*.{h,m}'
ssss.subspec 'Cell' do |sssss|
sssss.source_files = 'MVZTableView/Sections/Section/Cells/Cell/*.{h,m}'
sssss.subspec 'CellModel' do |ssssss|
ssssss.source_files = 'MVZTableView/Sections/Section/Cells/Cell/CellModel/*.{h,m}'
end
end
end
end
end
s.dependency 'ReactiveCocoa', '~> 2.5'
s.dependency 'RSBTableViewManager'
s.dependency 'MVZMutableArray'
s.dependency 'MVZExtensions'
end