-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathATTableView.podspec
More file actions
28 lines (19 loc) · 1 KB
/
ATTableView.podspec
File metadata and controls
28 lines (19 loc) · 1 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
Pod::Spec.new do |s|
s.name = "ATTableView"
s.version = "1.2"
s.summary = "A lazy way for smart developers to deal with UITableView."
s.description = <<-DESC
How many times do you have to implement UITableViewDatasource and UITableViewDelegate?
Is it boring? And how to deal with different UITableViewCells in one TableView?
You're smart so you need to find a smart way to do it.
ATTableView is for you, it's easy to display model in UITableView. Also support different UITableViewCells.
DESC
s.homepage = "https://github.com/tuanphung/ATTableView"
s.license = "MIT"
s.author = { "Tuan Phung" => "tuanphunglk@gmail.com" }
s.social_media_url = "https://github.com/tuanphung"
s.platform = :ios, "8.0"
s.source = { :git => "https://github.com/tuanphung/ATTableView.git", :tag => s.version }
s.source_files = "Source/*.swift"
s.requires_arc = true
end