-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTYTableView.podspec
More file actions
27 lines (18 loc) · 906 Bytes
/
TYTableView.podspec
File metadata and controls
27 lines (18 loc) · 906 Bytes
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
Pod::Spec.new do |s|
s.name = "TYTableView"
s.version = "0.0.3"
s.summary = "A deep package for UITableView."
s.description = <<-DESC
A longer description of TYTableView in Markdown format.
* A deep package for UITableView using MVC model,
* Simplify the amount of code to use UITableView.
DESC
s.homepage = "https://github.com/chengdonghai/TYTableView"
s.license = { :type => "MIT", :file => "LICENSE" }
s.source = { :git => "https://github.com/chengdonghai/TYTableView.git", :tag => "0.0.3" }
s.source_files = "TYTableViewProj/TYTableView","TYTableViewProj/TYTableView/*.{h,m}"
s.public_header_files = "TYTableViewProj/TYTableView/*.h"
s.requires_arc = true
s.platform = :ios, "6.0"
end