forked from SwiftKickMobile/TLIndexPathTools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTLIndexPathTools.podspec
More file actions
26 lines (24 loc) · 1.36 KB
/
TLIndexPathTools.podspec
File metadata and controls
26 lines (24 loc) · 1.36 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
Pod::Spec.new do |s|
s.name = "TLIndexPathTools"
s.version = "0.3.7"
s.summary = "TLIndexPathTools is a small set of classes that can greatly simplify your table and collection views."
s.description = <<-DESC
TLIndexPathTools is a small set of classes that can greatly simplify your table and collection views. Here are some of the awesome things TLIndexPathTools does:
* Organize data into sections with ease (now with blocks!)
* Calculate and perform animated batch updates (inserts, moves and deletions)
* Simplify data source and delegate methods via rich data model APIs
* Provide a simpler alternative to Core Data NSFetchedResultsController
* Provide base table view and collection view classes with advanced features
0.3.7
* Invoke completion block on `UITableView` when updating from nil dataModel
DESC
s.homepage = "http://tlindexpathtools.com"
s.license = { :type => "MIT" }
s.author = { "wtmoose" => "wtm@tractablelabs.com" }
s.source = { :git => "https://github.com/wtmoose/TLIndexPathTools.git", :tag => '0.3.7' }
s.platform = :ios, '6.0'
s.ios.deployment_target = '6.0'
s.source_files = 'TLIndexPathTools/**/*.{h,m}'
s.frameworks = 'UIKit', 'QuartzCore', 'CoreData', 'Foundation'
s.requires_arc = true
end