-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathTableManager.podspec
More file actions
20 lines (16 loc) · 894 Bytes
/
TableManager.podspec
File metadata and controls
20 lines (16 loc) · 894 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Pod::Spec.new do |s|
s.name = "TableManager"
s.version = "1.11.0"
s.summary = "An extension of UITableView. The table the way it should be."
s.description = <<-DESC
TableManager is an extension of UITableView. Manipulate your table in an easier way. Add sections and rows. Configure headers and footers. Hide and show rows individually. And this library will handle all the protocols for you. The table the way it should be.
DESC
s.homepage = "https://github.com/Morbix/TableManager"
s.license = "MIT"
s.author = { "Henrique Morbin" => "morbin_@hotmail.com" }
s.social_media_url = "http://twitter.com/Morbin_"
s.platform = :ios, "8.0"
s.swift_version = '4.2'
s.source = { :git => "https://github.com/Morbix/TableManager.git", :tag => s.version.to_s }
s.source_files = 'Pod/Classes/**/*'
end