-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathZJTableViewManager.podspec
More file actions
24 lines (24 loc) · 1.13 KB
/
ZJTableViewManager.podspec
File metadata and controls
24 lines (24 loc) · 1.13 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
# encoding: utf-8
Pod::Spec.new do |s|
s.name = "ZJTableViewManager"
s.version = "1.0.8"
s.summary = "Powerful data driven content manager for UITableView.强大的数据驱动的TableView"
s.description = <<-DESC
ZJTableViewManager allows to manage the content of any UITableView with ease, both forms and lists. ZJTableViewManager is built on top of reusable cells technique and provides APIs for mapping any object class to any custom cell subclass.
DESC
s.homepage = "https://github.com/JavenZ/ZJTableViewManager"
s.license = { :type => "MIT", :file => "FILE_LICENSE" }
s.author = { "Javen" => "1074472615@qq.com" }
s.source = { :git => "https://github.com/JavenZ/ZJTableViewManager.git", :tag => "#{s.version}" }
# s.source_files = "ZJTableViewManager", "ZJTableViewManager/**/*"
s.platform = :ios, "8.0"
s.swift_version = ['4.0', '4.2', '5.1', '5.2']
# s.source_files = "ZJTableViewManager"
s.subspec "Core" do |ss|
ss.source_files = "ZJTableViewManager/Core/*"
end
s.subspec "Other" do |ss|
ss.source_files = "ZJTableViewManager/Other/*"
ss.dependency 'ZJTableViewManager/Core'
end
end