forked from gonzalezreal/TGRDataSource
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTGRDataSource.podspec
25 lines (19 loc) · 1.42 KB
/
TGRDataSource.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
Pod::Spec.new do |s|
s.name = "TGRDataSource"
s.version = "0.2"
s.summary = "Convenience UITableView and UICollectionView data sources."
s.description = <<-DESC
Convenience UITableView and UICollectionView data sources.
* `TGRArrayDataSource` and `TGRFetchedResultsDataSource` are reusable classes that implement `UITableView` and `UICollectionView` data sources using `NSArray` and `NSFetchedResultsController` respectively. Inspired by [Lighter View Controllers](http://www.objc.io/issue-1/lighter-view-controllers.html).
* `TGRFetchedResultsTableViewController` is a reusable `UITableViewController` subclass that processes `NSFetchedResultsController` content changes the right way (based on code seen [here](http://www.fruitstandsoftware.com/blog/2013/02/uitableview-and-nsfetchedresultscontroller-updates-done-right/)).
DESC
s.homepage = "https://github.com/gonzalezreal/TGRDataSource"
s.license = { :type => "MIT", :file => "LICENSE.md" }
s.author = { "Guillermo Gonzalez" => "[email protected]" }
s.social_media_url = "https://twitter.com/gonzalezreal"
s.platform = :ios, "6.0"
s.source = { :git => "https://github.com/gonzalezreal/TGRDataSource.git", :tag => "0.2" }
s.source_files = "TGRDataSource"
s.frameworks = "Foundation", "UIKit", "CoreData"
s.requires_arc = true
end