-
Notifications
You must be signed in to change notification settings - Fork 9
/
ATTableView.podspec
28 lines (19 loc) · 1 KB
/
ATTableView.podspec
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