forked from Roobiq/RBQFetchedResultsController
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSwiftFetchedResultsController.podspec
More file actions
executable file
·22 lines (19 loc) · 1.41 KB
/
Copy pathSwiftFetchedResultsController.podspec
File metadata and controls
executable file
·22 lines (19 loc) · 1.41 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 = "SwiftFetchedResultsController"
s.version = "4.0.4"
s.summary = "Swift drop-in replacement for NSFetchedResultsController backed by Realm"
s.description = <<-DESC
The FetchedResultsController (FRC) is a Swift replacement for NSFetchedResultsController when used in conjunction with the ChangeLogger class. The controller and delegate follow the same paradigm as NSFetchedResultsController, and allow the developer to monitor changes of a Realm Swift Object subclass.
FetchedResultsController 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" => "[email protected]" }
s.social_media_url = "http://twitter.com/Roobiq"
s.platform = :ios, "8.0"
s.source = { :git => "https://github.com/Roobiq/RBQFetchedResultsController.git", :tag => "v#{s.version}", :submodules => true }
s.source_files = "RBQFetchedResultsController/Source/Swift/*.{h,swift}", "RBQFetchedResultsController/Source/RBQSafeRealmObject/*.{swift}"
s.requires_arc = true
s.dependency "RealmSwift", ">=1.0.0"
s.dependency "RBQFetchedResultsController", ">=#{s.version}"
end