forked from apploft/APLArrayDataSource
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAPLArrayDataSource.podspec
More file actions
33 lines (21 loc) · 1.12 KB
/
APLArrayDataSource.podspec
File metadata and controls
33 lines (21 loc) · 1.12 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
32
33
Pod::Spec.new do |s|
s.name = "APLArrayDataSource"
s.version = "0.0.3"
s.summary = "UITableViewDataSource for NSArray"
s.description = <<-DESC
A UITableViewDataSource for data represented as NSArray being displayed in a UITableView.
Concept and code is from this great objc.io article:
http://www.objc.io/issue-1/lighter-view-controllers.html
Additionally supports:
* cell editing (deletion only)
* sections, with nested NSArrays as data source (use subclass APLArrayWithSectionsDataSource)
DESC
s.homepage = "http://www.objc.io/issue-1/lighter-view-controllers.html"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = 'Chris Eidhof', 'Michael Kamphausen'
s.platform = :ios
s.source = { :git => "https://github.com/apploft/APLArrayDataSource.git", :tag => s.version.to_s }
s.source_files = 'Classes', 'Classes/**/*.{h,m}'
s.exclude_files = 'Classes/Exclude'
s.requires_arc = true
end