forked from Roobiq/RBQFetchedResultsController
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRBQFetchedResultsController.podspec
More file actions
executable file
·22 lines (19 loc) · 1.38 KB
/
RBQFetchedResultsController.podspec
File metadata and controls
executable file
·22 lines (19 loc) · 1.38 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Pod::Spec.new do |s|
s.name = "RBQFetchedResultsController"
s.version = "4.0.4"
s.summary = "Drop-in replacement for NSFetchedResultsController backed by Realm."
s.description = <<-DESC
The RBQFetchedResultsController (FRC) is a replacement for NSFetchedResultsController when used in conjunction with RBQRealmNotificationManager and RBQRealmChangeLogger. The controller and delegate follow the same paradigm as NSFetchedResultsController, and allow the developer to monitor changes of an RLMObject subclass.
RBQFetchedResultsController supports tableview sections and implements a drop-in replacement delegate to pass the changes to the tableview for section and row animations.
DESC
s.homepage = "http://github.com/Roobiq/RBQFetchedResultsController"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Roobiq" => "support@roobiq.com" }
s.social_media_url = "http://twitter.com/Roobiq"
s.platform = :ios, "7.0"
s.source = { :git => "https://github.com/Roobiq/RBQFetchedResultsController.git", :tag => "v#{s.version}", :submodules => true }
s.source_files = "RBQFetchedResultsController/Source/**/*.{h,m}", "RBQFetchedResultsController/RBQFRC.h"
s.exclude_files = "RBQFetchedResultsController/Source/Swift/*"
s.requires_arc = true
s.dependency "Realm", ">=1.0.0"
end