-
Notifications
You must be signed in to change notification settings - Fork 70
/
SwiftFetchedResultsController.podspec
25 lines (23 loc) · 1.45 KB
/
SwiftFetchedResultsController.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 = "SwiftFetchedResultsController"
s.version = "5.0.2"
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" => "support@roobiq.com" }
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", ">=2.1.1"
s.dependency "RBQFetchedResultsController", ">=#{s.version}"
s.dependency "SafeRealmObject"
end