forked from SwiftKickMobile/TLIndexPathTools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
TLIndexPathTools.podspec
27 lines (24 loc) · 1.31 KB
/
TLIndexPathTools.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
Pod::Spec.new do |s|
s.name = "TLIndexPathTools"
s.version = "0.3.15"
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.15
* Convert TLIndexPathTools target into a Cocoa Touch framework
DESC
s.homepage = "http://tlindexpathtools.com"
s.license = { :type => "MIT" }
s.author = { "wtmoose" => "[email protected]" }
s.source = { :git => "https://github.com/wtmoose/TLIndexPathTools.git", :tag => '0.3.15' }
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