-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathASPTableViewController.podspec
More file actions
31 lines (23 loc) · 1.2 KB
/
ASPTableViewController.podspec
File metadata and controls
31 lines (23 loc) · 1.2 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
29
30
31
Pod::Spec.new do |s|
s.name = "ASPTableViewController"
s.version = "1.0.1"
s.summary = "A UITableViewController subclass that moves cells to their own controller classes, and makes the tree's data source data-driven."
s.description = <<-DESC
A UITableViewController subclass that:
* moves cell logic to their own controller classes
* makes the tree's data source data-driven
* can load the table structure from JSON
This is especially useful when:
* the data structure is variable, or unknown at build time
* you have a shared cell style across several table views.
DESC
s.homepage = "https://github.com/gperks/ASPTableViewController"
s.license = 'MIT'
s.author = { "A Single Pixel, LLC" => "gperks@asinglepixel.com" }
s.source = { :git => "https://github.com/gperks/ASPTableViewController.git", :tag => s.version.to_s }
s.platform = :ios, '7.0'
s.ios.deployment_target = '7.0'
s.source_files = 'Classes/*.{m,h}'
s.public_header_files = 'Classes/*.h'
s.requires_arc = true
end