-
Notifications
You must be signed in to change notification settings - Fork 26
/
AMBTableViewController.podspec
29 lines (23 loc) · 1.49 KB
/
AMBTableViewController.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 = "AMBTableViewController"
s.version = "1.2.1"
s.summary = "Storyboard and Prototype Cells-centric block-based UITableView controller to manage complex layouts."
s.description = <<-DESC
* Use Storyboards' Prototype Cells to design your cells.
* Separate table code with AMBTableViewSection's.
* Uses blocks instead of delegate calls and avoid having section code separated through multiple methods.
* Individual hide/shown, add/remove sections and rows.
* Support for dynamic height cells.
* Support for special "No Content Cell"'s for empty sections.
DESC
s.homepage = "http://cyberagent.github.io/AMBTableViewController/"
s.license = { :type => 'Apache License, Version 2.0', :file => 'LICENSE' }
s.author = { "CyberAgent Inc." => "", "Ernesto Rivera" => "rivera_ernesto@cyberagent.co.jp" }
s.screenshots = [ "http://cyberagent.github.io/AMBTableViewController/images/screenshot1.png",
"http://cyberagent.github.io/AMBTableViewController/images/screenshot2.png" ]
s.source = { :git => "https://github.com/CyberAgent/AMBTableViewController.git", :tag => "#{s.version}" }
s.platform = :ios, '5.0'
s.requires_arc = true
s.source_files = 'Source/*.{h,m}'
s.preserve_paths = "README.md", "NOTICE"
end