├── .gitignore ├── LICENSE ├── NSFetchedResultsController-MVVM.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── ash.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── ash.xcuserdatad │ └── xcschemes │ ├── NSFetchedResultsController-MVVM.xcscheme │ └── xcschememanagement.plist ├── NSFetchedResultsController-MVVM.xcworkspace ├── contents.xcworkspacedata └── xcuserdata │ └── ash.xcuserdatad │ └── UserInterfaceState.xcuserstate ├── NSFetchedResultsController-MVVM ├── ASHAppDelegate.h ├── ASHAppDelegate.m ├── ASHViewController.h ├── ASHViewController.m ├── ASHViewModel.h ├── ASHViewModel.m ├── Base.lproj │ └── Main.storyboard ├── Images.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── LaunchImage.launchimage │ │ └── Contents.json ├── NSFetchedResultsController-MVVM-Info.plist ├── NSFetchedResultsController-MVVM-Prefix.pch ├── en.lproj │ └── InfoPlist.strings └── main.m ├── NSFetchedResultsController-MVVMTests ├── NSFetchedResultsController-MVVMTests-Info.plist ├── NSFetchedResultsController_MVVMTests.m └── en.lproj │ └── InfoPlist.strings ├── Podfile ├── Podfile.lock ├── Pods ├── BuildHeaders │ ├── ReactiveCocoa │ │ ├── RACObjCRuntime.h │ │ └── ReactiveCocoa │ │ │ ├── NSArray+RACSequenceAdditions.h │ │ │ ├── NSData+RACSupport.h │ │ │ ├── NSDictionary+RACSequenceAdditions.h │ │ │ ├── NSEnumerator+RACSequenceAdditions.h │ │ │ ├── NSFileHandle+RACSupport.h │ │ │ ├── NSIndexSet+RACSequenceAdditions.h │ │ │ ├── NSInvocation+RACTypeParsing.h │ │ │ ├── NSNotificationCenter+RACSupport.h │ │ │ ├── NSObject+RACDeallocating.h │ │ │ ├── NSObject+RACDescription.h │ │ │ ├── NSObject+RACKVOWrapper.h │ │ │ ├── NSObject+RACLifting.h │ │ │ ├── NSObject+RACPropertySubscribing.h │ │ │ ├── NSObject+RACSelectorSignal.h │ │ │ ├── NSOrderedSet+RACSequenceAdditions.h │ │ │ ├── NSSet+RACSequenceAdditions.h │ │ │ ├── NSString+RACKeyPathUtilities.h │ │ │ ├── NSString+RACSequenceAdditions.h │ │ │ ├── NSString+RACSupport.h │ │ │ ├── NSURLConnection+RACSupport.h │ │ │ ├── NSUserDefaults+RACSupport.h │ │ │ ├── RACArraySequence.h │ │ │ ├── RACBacktrace.h │ │ │ ├── RACBehaviorSubject.h │ │ │ ├── RACBlockTrampoline.h │ │ │ ├── RACChannel.h │ │ │ ├── RACCommand.h │ │ │ ├── RACCompoundDisposable.h │ │ │ ├── RACDelegateProxy.h │ │ │ ├── RACDisposable.h │ │ │ ├── RACDynamicSequence.h │ │ │ ├── RACDynamicSignal.h │ │ │ ├── RACEXTKeyPathCoding.h │ │ │ ├── RACEXTRuntimeExtensions.h │ │ │ ├── RACEXTScope.h │ │ │ ├── RACEagerSequence.h │ │ │ ├── RACEmptySequence.h │ │ │ ├── RACEmptySignal.h │ │ │ ├── RACErrorSignal.h │ │ │ ├── RACEvent.h │ │ │ ├── RACGroupedSignal.h │ │ │ ├── RACImmediateScheduler.h │ │ │ ├── RACIndexSetSequence.h │ │ │ ├── RACKVOChannel.h │ │ │ ├── RACKVOTrampoline.h │ │ │ ├── RACMulticastConnection+Private.h │ │ │ ├── RACMulticastConnection.h │ │ │ ├── RACPassthroughSubscriber.h │ │ │ ├── RACQueueScheduler+Subclass.h │ │ │ ├── RACQueueScheduler.h │ │ │ ├── RACReplaySubject.h │ │ │ ├── RACReturnSignal.h │ │ │ ├── RACScheduler+Private.h │ │ │ ├── RACScheduler.h │ │ │ ├── RACScopedDisposable.h │ │ │ ├── RACSequence.h │ │ │ ├── RACSerialDisposable.h │ │ │ ├── RACSignal+Operations.h │ │ │ ├── RACSignal.h │ │ │ ├── RACSignalSequence.h │ │ │ ├── RACStream+Private.h │ │ │ ├── RACStream.h │ │ │ ├── RACStringSequence.h │ │ │ ├── RACSubject.h │ │ │ ├── RACSubscriber+Private.h │ │ │ ├── RACSubscriber.h │ │ │ ├── RACSubscriptingAssignmentTrampoline.h │ │ │ ├── RACSubscriptionScheduler.h │ │ │ ├── RACTargetQueueScheduler.h │ │ │ ├── RACTestScheduler.h │ │ │ ├── RACTuple.h │ │ │ ├── RACTupleSequence.h │ │ │ ├── RACUnarySequence.h │ │ │ ├── RACUnit.h │ │ │ ├── RACValueTransformer.h │ │ │ ├── RACmetamacros.h │ │ │ ├── ReactiveCocoa.h │ │ │ ├── UIActionSheet+RACSignalSupport.h │ │ │ ├── UIAlertView+RACSignalSupport.h │ │ │ ├── UIBarButtonItem+RACCommandSupport.h │ │ │ ├── UIButton+RACCommandSupport.h │ │ │ ├── UICollectionReusableView+RACSignalSupport.h │ │ │ ├── UIControl+RACSignalSupport.h │ │ │ ├── UIControl+RACSignalSupportPrivate.h │ │ │ ├── UIDatePicker+RACSignalSupport.h │ │ │ ├── UIGestureRecognizer+RACSignalSupport.h │ │ │ ├── UIImagePickerController+RACSignalSupport.h │ │ │ ├── UIRefreshControl+RACCommandSupport.h │ │ │ ├── UISegmentedControl+RACSignalSupport.h │ │ │ ├── UISlider+RACSignalSupport.h │ │ │ ├── UIStepper+RACSignalSupport.h │ │ │ ├── UISwitch+RACSignalSupport.h │ │ │ ├── UITableViewCell+RACSignalSupport.h │ │ │ ├── UITableViewHeaderFooterView+RACSignalSupport.h │ │ │ ├── UITextField+RACSignalSupport.h │ │ │ └── UITextView+RACSignalSupport.h │ ├── ReactiveViewModel │ │ ├── RVMViewModel.h │ │ └── ReactiveViewModel.h │ └── libextobjc │ │ ├── EXTRuntimeExtensions.h │ │ ├── EXTScope.h │ │ └── metamacros.h ├── Headers │ ├── ReactiveCocoa │ │ ├── RACObjCRuntime.h │ │ └── ReactiveCocoa │ │ │ ├── NSArray+RACSequenceAdditions.h │ │ │ ├── NSData+RACSupport.h │ │ │ ├── NSDictionary+RACSequenceAdditions.h │ │ │ ├── NSEnumerator+RACSequenceAdditions.h │ │ │ ├── NSFileHandle+RACSupport.h │ │ │ ├── NSIndexSet+RACSequenceAdditions.h │ │ │ ├── NSInvocation+RACTypeParsing.h │ │ │ ├── NSNotificationCenter+RACSupport.h │ │ │ ├── NSObject+RACDeallocating.h │ │ │ ├── NSObject+RACDescription.h │ │ │ ├── NSObject+RACKVOWrapper.h │ │ │ ├── NSObject+RACLifting.h │ │ │ ├── NSObject+RACPropertySubscribing.h │ │ │ ├── NSObject+RACSelectorSignal.h │ │ │ ├── NSOrderedSet+RACSequenceAdditions.h │ │ │ ├── NSSet+RACSequenceAdditions.h │ │ │ ├── NSString+RACKeyPathUtilities.h │ │ │ ├── NSString+RACSequenceAdditions.h │ │ │ ├── NSString+RACSupport.h │ │ │ ├── NSURLConnection+RACSupport.h │ │ │ ├── NSUserDefaults+RACSupport.h │ │ │ ├── RACArraySequence.h │ │ │ ├── RACBacktrace.h │ │ │ ├── RACBehaviorSubject.h │ │ │ ├── RACBlockTrampoline.h │ │ │ ├── RACChannel.h │ │ │ ├── RACCommand.h │ │ │ ├── RACCompoundDisposable.h │ │ │ ├── RACDelegateProxy.h │ │ │ ├── RACDisposable.h │ │ │ ├── RACDynamicSequence.h │ │ │ ├── RACDynamicSignal.h │ │ │ ├── RACEXTKeyPathCoding.h │ │ │ ├── RACEXTScope.h │ │ │ ├── RACEagerSequence.h │ │ │ ├── RACEmptySequence.h │ │ │ ├── RACEmptySignal.h │ │ │ ├── RACErrorSignal.h │ │ │ ├── RACEvent.h │ │ │ ├── RACGroupedSignal.h │ │ │ ├── RACImmediateScheduler.h │ │ │ ├── RACIndexSetSequence.h │ │ │ ├── RACKVOChannel.h │ │ │ ├── RACKVOTrampoline.h │ │ │ ├── RACMulticastConnection.h │ │ │ ├── RACPassthroughSubscriber.h │ │ │ ├── RACQueueScheduler+Subclass.h │ │ │ ├── RACQueueScheduler.h │ │ │ ├── RACReplaySubject.h │ │ │ ├── RACReturnSignal.h │ │ │ ├── RACScheduler.h │ │ │ ├── RACScopedDisposable.h │ │ │ ├── RACSequence.h │ │ │ ├── RACSerialDisposable.h │ │ │ ├── RACSignal+Operations.h │ │ │ ├── RACSignal.h │ │ │ ├── RACSignalSequence.h │ │ │ ├── RACStream.h │ │ │ ├── RACStringSequence.h │ │ │ ├── RACSubject.h │ │ │ ├── RACSubscriber.h │ │ │ ├── RACSubscriptingAssignmentTrampoline.h │ │ │ ├── RACSubscriptionScheduler.h │ │ │ ├── RACTargetQueueScheduler.h │ │ │ ├── RACTestScheduler.h │ │ │ ├── RACTuple.h │ │ │ ├── RACTupleSequence.h │ │ │ ├── RACUnarySequence.h │ │ │ ├── RACUnit.h │ │ │ ├── RACValueTransformer.h │ │ │ ├── RACmetamacros.h │ │ │ ├── ReactiveCocoa.h │ │ │ ├── UIActionSheet+RACSignalSupport.h │ │ │ ├── UIAlertView+RACSignalSupport.h │ │ │ ├── UIBarButtonItem+RACCommandSupport.h │ │ │ ├── UIButton+RACCommandSupport.h │ │ │ ├── UICollectionReusableView+RACSignalSupport.h │ │ │ ├── UIControl+RACSignalSupport.h │ │ │ ├── UIControl+RACSignalSupportPrivate.h │ │ │ ├── UIDatePicker+RACSignalSupport.h │ │ │ ├── UIGestureRecognizer+RACSignalSupport.h │ │ │ ├── UIImagePickerController+RACSignalSupport.h │ │ │ ├── UIRefreshControl+RACCommandSupport.h │ │ │ ├── UISegmentedControl+RACSignalSupport.h │ │ │ ├── UISlider+RACSignalSupport.h │ │ │ ├── UIStepper+RACSignalSupport.h │ │ │ ├── UISwitch+RACSignalSupport.h │ │ │ ├── UITableViewCell+RACSignalSupport.h │ │ │ ├── UITableViewHeaderFooterView+RACSignalSupport.h │ │ │ ├── UITextField+RACSignalSupport.h │ │ │ └── UITextView+RACSignalSupport.h │ ├── ReactiveViewModel │ │ ├── RVMViewModel.h │ │ └── ReactiveViewModel.h │ └── libextobjc │ │ ├── EXTRuntimeExtensions.h │ │ ├── EXTScope.h │ │ └── metamacros.h ├── Manifest.lock ├── Pods-NSFetchedResultsController-MVVM-ReactiveCocoa-Private.xcconfig ├── Pods-NSFetchedResultsController-MVVM-ReactiveCocoa-dummy.m ├── Pods-NSFetchedResultsController-MVVM-ReactiveCocoa-prefix.pch ├── Pods-NSFetchedResultsController-MVVM-ReactiveCocoa.xcconfig ├── Pods-NSFetchedResultsController-MVVM-ReactiveViewModel-Private.xcconfig ├── Pods-NSFetchedResultsController-MVVM-ReactiveViewModel-dummy.m ├── Pods-NSFetchedResultsController-MVVM-ReactiveViewModel-prefix.pch ├── Pods-NSFetchedResultsController-MVVM-ReactiveViewModel.xcconfig ├── Pods-NSFetchedResultsController-MVVM-acknowledgements.markdown ├── Pods-NSFetchedResultsController-MVVM-acknowledgements.plist ├── Pods-NSFetchedResultsController-MVVM-dummy.m ├── Pods-NSFetchedResultsController-MVVM-environment.h ├── Pods-NSFetchedResultsController-MVVM-libextobjc-Private.xcconfig ├── Pods-NSFetchedResultsController-MVVM-libextobjc-dummy.m ├── Pods-NSFetchedResultsController-MVVM-libextobjc-prefix.pch ├── Pods-NSFetchedResultsController-MVVM-libextobjc.xcconfig ├── Pods-NSFetchedResultsController-MVVM-resources.sh ├── Pods-NSFetchedResultsController-MVVM.xcconfig ├── Pods.xcodeproj │ ├── project.pbxproj │ └── xcuserdata │ │ └── ash.xcuserdatad │ │ └── xcschemes │ │ ├── Pods-NSFetchedResultsController-MVVM-ReactiveCocoa.xcscheme │ │ ├── Pods-NSFetchedResultsController-MVVM-ReactiveViewModel.xcscheme │ │ ├── Pods-NSFetchedResultsController-MVVM-libextobjc.xcscheme │ │ ├── Pods-NSFetchedResultsController-MVVM.xcscheme │ │ └── xcschememanagement.plist ├── ReactiveCocoa │ ├── LICENSE.md │ ├── README.md │ └── ReactiveCocoaFramework │ │ └── ReactiveCocoa │ │ ├── NSArray+RACSequenceAdditions.h │ │ ├── NSArray+RACSequenceAdditions.m │ │ ├── NSData+RACSupport.h │ │ ├── NSData+RACSupport.m │ │ ├── NSDictionary+RACSequenceAdditions.h │ │ ├── NSDictionary+RACSequenceAdditions.m │ │ ├── NSEnumerator+RACSequenceAdditions.h │ │ ├── NSEnumerator+RACSequenceAdditions.m │ │ ├── NSFileHandle+RACSupport.h │ │ ├── NSFileHandle+RACSupport.m │ │ ├── NSIndexSet+RACSequenceAdditions.h │ │ ├── NSIndexSet+RACSequenceAdditions.m │ │ ├── NSInvocation+RACTypeParsing.h │ │ ├── NSInvocation+RACTypeParsing.m │ │ ├── NSNotificationCenter+RACSupport.h │ │ ├── NSNotificationCenter+RACSupport.m │ │ ├── NSObject+RACDeallocating.h │ │ ├── NSObject+RACDeallocating.m │ │ ├── NSObject+RACDescription.h │ │ ├── NSObject+RACDescription.m │ │ ├── NSObject+RACKVOWrapper.h │ │ ├── NSObject+RACKVOWrapper.m │ │ ├── NSObject+RACLifting.h │ │ ├── NSObject+RACLifting.m │ │ ├── NSObject+RACPropertySubscribing.h │ │ ├── NSObject+RACPropertySubscribing.m │ │ ├── NSObject+RACSelectorSignal.h │ │ ├── NSObject+RACSelectorSignal.m │ │ ├── NSOrderedSet+RACSequenceAdditions.h │ │ ├── NSOrderedSet+RACSequenceAdditions.m │ │ ├── NSSet+RACSequenceAdditions.h │ │ ├── NSSet+RACSequenceAdditions.m │ │ ├── NSString+RACKeyPathUtilities.h │ │ ├── NSString+RACKeyPathUtilities.m │ │ ├── NSString+RACSequenceAdditions.h │ │ ├── NSString+RACSequenceAdditions.m │ │ ├── NSString+RACSupport.h │ │ ├── NSString+RACSupport.m │ │ ├── NSURLConnection+RACSupport.h │ │ ├── NSURLConnection+RACSupport.m │ │ ├── NSUserDefaults+RACSupport.h │ │ ├── NSUserDefaults+RACSupport.m │ │ ├── RACArraySequence.h │ │ ├── RACArraySequence.m │ │ ├── RACBacktrace.h │ │ ├── RACBacktrace.m │ │ ├── RACBehaviorSubject.h │ │ ├── RACBehaviorSubject.m │ │ ├── RACBlockTrampoline.h │ │ ├── RACBlockTrampoline.m │ │ ├── RACChannel.h │ │ ├── RACChannel.m │ │ ├── RACCommand.h │ │ ├── RACCommand.m │ │ ├── RACCompoundDisposable.h │ │ ├── RACCompoundDisposable.m │ │ ├── RACCompoundDisposableProvider.d │ │ ├── RACDelegateProxy.h │ │ ├── RACDelegateProxy.m │ │ ├── RACDisposable.h │ │ ├── RACDisposable.m │ │ ├── RACDynamicSequence.h │ │ ├── RACDynamicSequence.m │ │ ├── RACDynamicSignal.h │ │ ├── RACDynamicSignal.m │ │ ├── RACEagerSequence.h │ │ ├── RACEagerSequence.m │ │ ├── RACEmptySequence.h │ │ ├── RACEmptySequence.m │ │ ├── RACEmptySignal.h │ │ ├── RACEmptySignal.m │ │ ├── RACErrorSignal.h │ │ ├── RACErrorSignal.m │ │ ├── RACEvent.h │ │ ├── RACEvent.m │ │ ├── RACGroupedSignal.h │ │ ├── RACGroupedSignal.m │ │ ├── RACImmediateScheduler.h │ │ ├── RACImmediateScheduler.m │ │ ├── RACIndexSetSequence.h │ │ ├── RACIndexSetSequence.m │ │ ├── RACKVOChannel.h │ │ ├── RACKVOChannel.m │ │ ├── RACKVOTrampoline.h │ │ ├── RACKVOTrampoline.m │ │ ├── RACMulticastConnection+Private.h │ │ ├── RACMulticastConnection.h │ │ ├── RACMulticastConnection.m │ │ ├── RACObjCRuntime.h │ │ ├── RACObjCRuntime.m │ │ ├── RACPassthroughSubscriber.h │ │ ├── RACPassthroughSubscriber.m │ │ ├── RACQueueScheduler+Subclass.h │ │ ├── RACQueueScheduler.h │ │ ├── RACQueueScheduler.m │ │ ├── RACReplaySubject.h │ │ ├── RACReplaySubject.m │ │ ├── RACReturnSignal.h │ │ ├── RACReturnSignal.m │ │ ├── RACScheduler+Private.h │ │ ├── RACScheduler.h │ │ ├── RACScheduler.m │ │ ├── RACScopedDisposable.h │ │ ├── RACScopedDisposable.m │ │ ├── RACSequence.h │ │ ├── RACSequence.m │ │ ├── RACSerialDisposable.h │ │ ├── RACSerialDisposable.m │ │ ├── RACSignal+Operations.h │ │ ├── RACSignal+Operations.m │ │ ├── RACSignal.h │ │ ├── RACSignal.m │ │ ├── RACSignalProvider.d │ │ ├── RACSignalSequence.h │ │ ├── RACSignalSequence.m │ │ ├── RACStream+Private.h │ │ ├── RACStream.h │ │ ├── RACStream.m │ │ ├── RACStringSequence.h │ │ ├── RACStringSequence.m │ │ ├── RACSubject.h │ │ ├── RACSubject.m │ │ ├── RACSubscriber+Private.h │ │ ├── RACSubscriber.h │ │ ├── RACSubscriber.m │ │ ├── RACSubscriptingAssignmentTrampoline.h │ │ ├── RACSubscriptingAssignmentTrampoline.m │ │ ├── RACSubscriptionScheduler.h │ │ ├── RACSubscriptionScheduler.m │ │ ├── RACTargetQueueScheduler.h │ │ ├── RACTargetQueueScheduler.m │ │ ├── RACTestScheduler.h │ │ ├── RACTestScheduler.m │ │ ├── RACTuple.h │ │ ├── RACTuple.m │ │ ├── RACTupleSequence.h │ │ ├── RACTupleSequence.m │ │ ├── RACUnarySequence.h │ │ ├── RACUnarySequence.m │ │ ├── RACUnit.h │ │ ├── RACUnit.m │ │ ├── RACValueTransformer.h │ │ ├── RACValueTransformer.m │ │ ├── ReactiveCocoa.h │ │ ├── UIActionSheet+RACSignalSupport.h │ │ ├── UIActionSheet+RACSignalSupport.m │ │ ├── UIAlertView+RACSignalSupport.h │ │ ├── UIAlertView+RACSignalSupport.m │ │ ├── UIBarButtonItem+RACCommandSupport.h │ │ ├── UIBarButtonItem+RACCommandSupport.m │ │ ├── UIButton+RACCommandSupport.h │ │ ├── UIButton+RACCommandSupport.m │ │ ├── UICollectionReusableView+RACSignalSupport.h │ │ ├── UICollectionReusableView+RACSignalSupport.m │ │ ├── UIControl+RACSignalSupport.h │ │ ├── UIControl+RACSignalSupport.m │ │ ├── UIControl+RACSignalSupportPrivate.h │ │ ├── UIControl+RACSignalSupportPrivate.m │ │ ├── UIDatePicker+RACSignalSupport.h │ │ ├── UIDatePicker+RACSignalSupport.m │ │ ├── UIGestureRecognizer+RACSignalSupport.h │ │ ├── UIGestureRecognizer+RACSignalSupport.m │ │ ├── UIImagePickerController+RACSignalSupport.h │ │ ├── UIImagePickerController+RACSignalSupport.m │ │ ├── UIRefreshControl+RACCommandSupport.h │ │ ├── UIRefreshControl+RACCommandSupport.m │ │ ├── UISegmentedControl+RACSignalSupport.h │ │ ├── UISegmentedControl+RACSignalSupport.m │ │ ├── UISlider+RACSignalSupport.h │ │ ├── UISlider+RACSignalSupport.m │ │ ├── UIStepper+RACSignalSupport.h │ │ ├── UIStepper+RACSignalSupport.m │ │ ├── UISwitch+RACSignalSupport.h │ │ ├── UISwitch+RACSignalSupport.m │ │ ├── UITableViewCell+RACSignalSupport.h │ │ ├── UITableViewCell+RACSignalSupport.m │ │ ├── UITableViewHeaderFooterView+RACSignalSupport.h │ │ ├── UITableViewHeaderFooterView+RACSignalSupport.m │ │ ├── UITextField+RACSignalSupport.h │ │ ├── UITextField+RACSignalSupport.m │ │ ├── UITextView+RACSignalSupport.h │ │ ├── UITextView+RACSignalSupport.m │ │ └── extobjc │ │ ├── RACEXTKeyPathCoding.h │ │ ├── RACEXTRuntimeExtensions.h │ │ ├── RACEXTRuntimeExtensions.m │ │ ├── RACEXTScope.h │ │ └── RACmetamacros.h ├── ReactiveViewModel │ ├── LICENSE.md │ ├── README.md │ └── ReactiveViewModel │ │ ├── RVMViewModel.h │ │ ├── RVMViewModel.m │ │ └── ReactiveViewModel.h └── libextobjc │ ├── LICENSE.md │ ├── README.md │ └── extobjc │ ├── EXTRuntimeExtensions.h │ ├── EXTRuntimeExtensions.m │ ├── EXTScope.h │ ├── EXTScope.m │ └── metamacros.h └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/LICENSE -------------------------------------------------------------------------------- /NSFetchedResultsController-MVVM.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/NSFetchedResultsController-MVVM.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /NSFetchedResultsController-MVVM.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/NSFetchedResultsController-MVVM.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /NSFetchedResultsController-MVVM.xcodeproj/project.xcworkspace/xcuserdata/ash.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/NSFetchedResultsController-MVVM.xcodeproj/project.xcworkspace/xcuserdata/ash.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /NSFetchedResultsController-MVVM.xcodeproj/xcuserdata/ash.xcuserdatad/xcschemes/NSFetchedResultsController-MVVM.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/NSFetchedResultsController-MVVM.xcodeproj/xcuserdata/ash.xcuserdatad/xcschemes/NSFetchedResultsController-MVVM.xcscheme -------------------------------------------------------------------------------- /NSFetchedResultsController-MVVM.xcodeproj/xcuserdata/ash.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/NSFetchedResultsController-MVVM.xcodeproj/xcuserdata/ash.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /NSFetchedResultsController-MVVM.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/NSFetchedResultsController-MVVM.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /NSFetchedResultsController-MVVM.xcworkspace/xcuserdata/ash.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/NSFetchedResultsController-MVVM.xcworkspace/xcuserdata/ash.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /NSFetchedResultsController-MVVM/ASHAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/NSFetchedResultsController-MVVM/ASHAppDelegate.h -------------------------------------------------------------------------------- /NSFetchedResultsController-MVVM/ASHAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/NSFetchedResultsController-MVVM/ASHAppDelegate.m -------------------------------------------------------------------------------- /NSFetchedResultsController-MVVM/ASHViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/NSFetchedResultsController-MVVM/ASHViewController.h -------------------------------------------------------------------------------- /NSFetchedResultsController-MVVM/ASHViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/NSFetchedResultsController-MVVM/ASHViewController.m -------------------------------------------------------------------------------- /NSFetchedResultsController-MVVM/ASHViewModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/NSFetchedResultsController-MVVM/ASHViewModel.h -------------------------------------------------------------------------------- /NSFetchedResultsController-MVVM/ASHViewModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/NSFetchedResultsController-MVVM/ASHViewModel.m -------------------------------------------------------------------------------- /NSFetchedResultsController-MVVM/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/NSFetchedResultsController-MVVM/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /NSFetchedResultsController-MVVM/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/NSFetchedResultsController-MVVM/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /NSFetchedResultsController-MVVM/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/NSFetchedResultsController-MVVM/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /NSFetchedResultsController-MVVM/NSFetchedResultsController-MVVM-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/NSFetchedResultsController-MVVM/NSFetchedResultsController-MVVM-Info.plist -------------------------------------------------------------------------------- /NSFetchedResultsController-MVVM/NSFetchedResultsController-MVVM-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/NSFetchedResultsController-MVVM/NSFetchedResultsController-MVVM-Prefix.pch -------------------------------------------------------------------------------- /NSFetchedResultsController-MVVM/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /NSFetchedResultsController-MVVM/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/NSFetchedResultsController-MVVM/main.m -------------------------------------------------------------------------------- /NSFetchedResultsController-MVVMTests/NSFetchedResultsController-MVVMTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/NSFetchedResultsController-MVVMTests/NSFetchedResultsController-MVVMTests-Info.plist -------------------------------------------------------------------------------- /NSFetchedResultsController-MVVMTests/NSFetchedResultsController_MVVMTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/NSFetchedResultsController-MVVMTests/NSFetchedResultsController_MVVMTests.m -------------------------------------------------------------------------------- /NSFetchedResultsController-MVVMTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Podfile.lock -------------------------------------------------------------------------------- /Pods/BuildHeaders/ReactiveCocoa/RACObjCRuntime.h: -------------------------------------------------------------------------------- 1 | ../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACObjCRuntime.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/ReactiveCocoa/ReactiveCocoa/NSArray+RACSequenceAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/NSArray+RACSequenceAdditions.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/ReactiveCocoa/ReactiveCocoa/NSData+RACSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/NSData+RACSupport.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/ReactiveCocoa/ReactiveCocoa/NSDictionary+RACSequenceAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/NSDictionary+RACSequenceAdditions.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/ReactiveCocoa/ReactiveCocoa/NSEnumerator+RACSequenceAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/NSEnumerator+RACSequenceAdditions.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/ReactiveCocoa/ReactiveCocoa/NSFileHandle+RACSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/NSFileHandle+RACSupport.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/ReactiveCocoa/ReactiveCocoa/NSIndexSet+RACSequenceAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/NSIndexSet+RACSequenceAdditions.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/ReactiveCocoa/ReactiveCocoa/NSInvocation+RACTypeParsing.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/NSInvocation+RACTypeParsing.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/ReactiveCocoa/ReactiveCocoa/NSNotificationCenter+RACSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/NSNotificationCenter+RACSupport.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/ReactiveCocoa/ReactiveCocoa/NSObject+RACDeallocating.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/NSObject+RACDeallocating.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/ReactiveCocoa/ReactiveCocoa/NSObject+RACDescription.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/NSObject+RACDescription.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/ReactiveCocoa/ReactiveCocoa/NSObject+RACKVOWrapper.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/NSObject+RACKVOWrapper.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/ReactiveCocoa/ReactiveCocoa/NSObject+RACLifting.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/NSObject+RACLifting.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/ReactiveCocoa/ReactiveCocoa/NSObject+RACPropertySubscribing.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/NSObject+RACPropertySubscribing.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/ReactiveCocoa/ReactiveCocoa/NSObject+RACSelectorSignal.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/NSObject+RACSelectorSignal.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/ReactiveCocoa/ReactiveCocoa/NSOrderedSet+RACSequenceAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/NSOrderedSet+RACSequenceAdditions.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/ReactiveCocoa/ReactiveCocoa/NSSet+RACSequenceAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/NSSet+RACSequenceAdditions.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/ReactiveCocoa/ReactiveCocoa/NSString+RACKeyPathUtilities.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/NSString+RACKeyPathUtilities.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/ReactiveCocoa/ReactiveCocoa/NSString+RACSequenceAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/NSString+RACSequenceAdditions.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/ReactiveCocoa/ReactiveCocoa/NSString+RACSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/NSString+RACSupport.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/ReactiveCocoa/ReactiveCocoa/NSURLConnection+RACSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/NSURLConnection+RACSupport.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/ReactiveCocoa/ReactiveCocoa/NSUserDefaults+RACSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/NSUserDefaults+RACSupport.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/ReactiveCocoa/ReactiveCocoa/RACArraySequence.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACArraySequence.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/ReactiveCocoa/ReactiveCocoa/RACBacktrace.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACBacktrace.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/ReactiveCocoa/ReactiveCocoa/RACBehaviorSubject.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACBehaviorSubject.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/ReactiveCocoa/ReactiveCocoa/RACBlockTrampoline.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACBlockTrampoline.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/ReactiveCocoa/ReactiveCocoa/RACChannel.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACChannel.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/ReactiveCocoa/ReactiveCocoa/RACCommand.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACCommand.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/ReactiveCocoa/ReactiveCocoa/RACCompoundDisposable.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACCompoundDisposable.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/ReactiveCocoa/ReactiveCocoa/RACDelegateProxy.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACDelegateProxy.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/ReactiveCocoa/ReactiveCocoa/RACDisposable.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACDisposable.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/ReactiveCocoa/ReactiveCocoa/RACDynamicSequence.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACDynamicSequence.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/ReactiveCocoa/ReactiveCocoa/RACDynamicSignal.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACDynamicSignal.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/ReactiveCocoa/ReactiveCocoa/RACEXTKeyPathCoding.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/extobjc/RACEXTKeyPathCoding.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/ReactiveCocoa/ReactiveCocoa/RACEXTRuntimeExtensions.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/extobjc/RACEXTRuntimeExtensions.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/ReactiveCocoa/ReactiveCocoa/RACEXTScope.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/extobjc/RACEXTScope.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/ReactiveCocoa/ReactiveCocoa/RACEagerSequence.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACEagerSequence.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/ReactiveCocoa/ReactiveCocoa/RACEmptySequence.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACEmptySequence.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/ReactiveCocoa/ReactiveCocoa/RACEmptySignal.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACEmptySignal.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/ReactiveCocoa/ReactiveCocoa/RACErrorSignal.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACErrorSignal.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/ReactiveCocoa/ReactiveCocoa/RACEvent.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACEvent.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/ReactiveCocoa/ReactiveCocoa/RACGroupedSignal.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACGroupedSignal.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/ReactiveCocoa/ReactiveCocoa/RACImmediateScheduler.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACImmediateScheduler.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/ReactiveCocoa/ReactiveCocoa/RACIndexSetSequence.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACIndexSetSequence.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/ReactiveCocoa/ReactiveCocoa/RACKVOChannel.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACKVOChannel.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/ReactiveCocoa/ReactiveCocoa/RACKVOTrampoline.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACKVOTrampoline.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/ReactiveCocoa/ReactiveCocoa/RACMulticastConnection+Private.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACMulticastConnection+Private.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/ReactiveCocoa/ReactiveCocoa/RACMulticastConnection.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACMulticastConnection.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/ReactiveCocoa/ReactiveCocoa/RACPassthroughSubscriber.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACPassthroughSubscriber.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/ReactiveCocoa/ReactiveCocoa/RACQueueScheduler+Subclass.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACQueueScheduler+Subclass.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/ReactiveCocoa/ReactiveCocoa/RACQueueScheduler.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACQueueScheduler.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/ReactiveCocoa/ReactiveCocoa/RACReplaySubject.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACReplaySubject.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/ReactiveCocoa/ReactiveCocoa/RACReturnSignal.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACReturnSignal.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/ReactiveCocoa/ReactiveCocoa/RACScheduler+Private.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACScheduler+Private.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/ReactiveCocoa/ReactiveCocoa/RACScheduler.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACScheduler.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/ReactiveCocoa/ReactiveCocoa/RACScopedDisposable.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACScopedDisposable.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/ReactiveCocoa/ReactiveCocoa/RACSequence.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACSequence.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/ReactiveCocoa/ReactiveCocoa/RACSerialDisposable.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACSerialDisposable.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/ReactiveCocoa/ReactiveCocoa/RACSignal+Operations.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACSignal+Operations.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/ReactiveCocoa/ReactiveCocoa/RACSignal.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACSignal.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/ReactiveCocoa/ReactiveCocoa/RACSignalSequence.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACSignalSequence.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/ReactiveCocoa/ReactiveCocoa/RACStream+Private.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACStream+Private.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/ReactiveCocoa/ReactiveCocoa/RACStream.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACStream.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/ReactiveCocoa/ReactiveCocoa/RACStringSequence.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACStringSequence.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/ReactiveCocoa/ReactiveCocoa/RACSubject.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACSubject.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/ReactiveCocoa/ReactiveCocoa/RACSubscriber+Private.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACSubscriber+Private.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/ReactiveCocoa/ReactiveCocoa/RACSubscriber.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACSubscriber.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/ReactiveCocoa/ReactiveCocoa/RACSubscriptingAssignmentTrampoline.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACSubscriptingAssignmentTrampoline.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/ReactiveCocoa/ReactiveCocoa/RACSubscriptionScheduler.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACSubscriptionScheduler.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/ReactiveCocoa/ReactiveCocoa/RACTargetQueueScheduler.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACTargetQueueScheduler.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/ReactiveCocoa/ReactiveCocoa/RACTestScheduler.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACTestScheduler.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/ReactiveCocoa/ReactiveCocoa/RACTuple.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACTuple.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/ReactiveCocoa/ReactiveCocoa/RACTupleSequence.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACTupleSequence.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/ReactiveCocoa/ReactiveCocoa/RACUnarySequence.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACUnarySequence.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/ReactiveCocoa/ReactiveCocoa/RACUnit.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACUnit.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/ReactiveCocoa/ReactiveCocoa/RACValueTransformer.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACValueTransformer.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/ReactiveCocoa/ReactiveCocoa/RACmetamacros.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/extobjc/RACmetamacros.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/ReactiveCocoa/ReactiveCocoa/ReactiveCocoa.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/ReactiveCocoa.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/ReactiveCocoa/ReactiveCocoa/UIActionSheet+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/UIActionSheet+RACSignalSupport.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/ReactiveCocoa/ReactiveCocoa/UIAlertView+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/UIAlertView+RACSignalSupport.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/ReactiveCocoa/ReactiveCocoa/UIBarButtonItem+RACCommandSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/UIBarButtonItem+RACCommandSupport.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/ReactiveCocoa/ReactiveCocoa/UIButton+RACCommandSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/UIButton+RACCommandSupport.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/ReactiveCocoa/ReactiveCocoa/UICollectionReusableView+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/UICollectionReusableView+RACSignalSupport.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/ReactiveCocoa/ReactiveCocoa/UIControl+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/UIControl+RACSignalSupport.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/ReactiveCocoa/ReactiveCocoa/UIControl+RACSignalSupportPrivate.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/UIControl+RACSignalSupportPrivate.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/ReactiveCocoa/ReactiveCocoa/UIDatePicker+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/UIDatePicker+RACSignalSupport.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/ReactiveCocoa/ReactiveCocoa/UIGestureRecognizer+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/UIGestureRecognizer+RACSignalSupport.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/ReactiveCocoa/ReactiveCocoa/UIImagePickerController+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/UIImagePickerController+RACSignalSupport.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/ReactiveCocoa/ReactiveCocoa/UIRefreshControl+RACCommandSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/UIRefreshControl+RACCommandSupport.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/ReactiveCocoa/ReactiveCocoa/UISegmentedControl+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/UISegmentedControl+RACSignalSupport.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/ReactiveCocoa/ReactiveCocoa/UISlider+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/UISlider+RACSignalSupport.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/ReactiveCocoa/ReactiveCocoa/UIStepper+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/UIStepper+RACSignalSupport.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/ReactiveCocoa/ReactiveCocoa/UISwitch+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/UISwitch+RACSignalSupport.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/ReactiveCocoa/ReactiveCocoa/UITableViewCell+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/UITableViewCell+RACSignalSupport.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/ReactiveCocoa/ReactiveCocoa/UITableViewHeaderFooterView+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/UITableViewHeaderFooterView+RACSignalSupport.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/ReactiveCocoa/ReactiveCocoa/UITextField+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/UITextField+RACSignalSupport.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/ReactiveCocoa/ReactiveCocoa/UITextView+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/UITextView+RACSignalSupport.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/ReactiveViewModel/RVMViewModel.h: -------------------------------------------------------------------------------- 1 | ../../ReactiveViewModel/ReactiveViewModel/RVMViewModel.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/ReactiveViewModel/ReactiveViewModel.h: -------------------------------------------------------------------------------- 1 | ../../ReactiveViewModel/ReactiveViewModel/ReactiveViewModel.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/libextobjc/EXTRuntimeExtensions.h: -------------------------------------------------------------------------------- 1 | ../../libextobjc/extobjc/EXTRuntimeExtensions.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/libextobjc/EXTScope.h: -------------------------------------------------------------------------------- 1 | ../../libextobjc/extobjc/EXTScope.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/libextobjc/metamacros.h: -------------------------------------------------------------------------------- 1 | ../../libextobjc/extobjc/metamacros.h -------------------------------------------------------------------------------- /Pods/Headers/ReactiveCocoa/RACObjCRuntime.h: -------------------------------------------------------------------------------- 1 | ../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACObjCRuntime.h -------------------------------------------------------------------------------- /Pods/Headers/ReactiveCocoa/ReactiveCocoa/NSArray+RACSequenceAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/NSArray+RACSequenceAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/ReactiveCocoa/ReactiveCocoa/NSData+RACSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/NSData+RACSupport.h -------------------------------------------------------------------------------- /Pods/Headers/ReactiveCocoa/ReactiveCocoa/NSDictionary+RACSequenceAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/NSDictionary+RACSequenceAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/ReactiveCocoa/ReactiveCocoa/NSEnumerator+RACSequenceAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/NSEnumerator+RACSequenceAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/ReactiveCocoa/ReactiveCocoa/NSFileHandle+RACSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/NSFileHandle+RACSupport.h -------------------------------------------------------------------------------- /Pods/Headers/ReactiveCocoa/ReactiveCocoa/NSIndexSet+RACSequenceAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/NSIndexSet+RACSequenceAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/ReactiveCocoa/ReactiveCocoa/NSInvocation+RACTypeParsing.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/NSInvocation+RACTypeParsing.h -------------------------------------------------------------------------------- /Pods/Headers/ReactiveCocoa/ReactiveCocoa/NSNotificationCenter+RACSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/NSNotificationCenter+RACSupport.h -------------------------------------------------------------------------------- /Pods/Headers/ReactiveCocoa/ReactiveCocoa/NSObject+RACDeallocating.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/NSObject+RACDeallocating.h -------------------------------------------------------------------------------- /Pods/Headers/ReactiveCocoa/ReactiveCocoa/NSObject+RACDescription.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/NSObject+RACDescription.h -------------------------------------------------------------------------------- /Pods/Headers/ReactiveCocoa/ReactiveCocoa/NSObject+RACKVOWrapper.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/NSObject+RACKVOWrapper.h -------------------------------------------------------------------------------- /Pods/Headers/ReactiveCocoa/ReactiveCocoa/NSObject+RACLifting.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/NSObject+RACLifting.h -------------------------------------------------------------------------------- /Pods/Headers/ReactiveCocoa/ReactiveCocoa/NSObject+RACPropertySubscribing.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/NSObject+RACPropertySubscribing.h -------------------------------------------------------------------------------- /Pods/Headers/ReactiveCocoa/ReactiveCocoa/NSObject+RACSelectorSignal.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/NSObject+RACSelectorSignal.h -------------------------------------------------------------------------------- /Pods/Headers/ReactiveCocoa/ReactiveCocoa/NSOrderedSet+RACSequenceAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/NSOrderedSet+RACSequenceAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/ReactiveCocoa/ReactiveCocoa/NSSet+RACSequenceAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/NSSet+RACSequenceAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/ReactiveCocoa/ReactiveCocoa/NSString+RACKeyPathUtilities.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/NSString+RACKeyPathUtilities.h -------------------------------------------------------------------------------- /Pods/Headers/ReactiveCocoa/ReactiveCocoa/NSString+RACSequenceAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/NSString+RACSequenceAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/ReactiveCocoa/ReactiveCocoa/NSString+RACSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/NSString+RACSupport.h -------------------------------------------------------------------------------- /Pods/Headers/ReactiveCocoa/ReactiveCocoa/NSURLConnection+RACSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/NSURLConnection+RACSupport.h -------------------------------------------------------------------------------- /Pods/Headers/ReactiveCocoa/ReactiveCocoa/NSUserDefaults+RACSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/NSUserDefaults+RACSupport.h -------------------------------------------------------------------------------- /Pods/Headers/ReactiveCocoa/ReactiveCocoa/RACArraySequence.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACArraySequence.h -------------------------------------------------------------------------------- /Pods/Headers/ReactiveCocoa/ReactiveCocoa/RACBacktrace.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACBacktrace.h -------------------------------------------------------------------------------- /Pods/Headers/ReactiveCocoa/ReactiveCocoa/RACBehaviorSubject.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACBehaviorSubject.h -------------------------------------------------------------------------------- /Pods/Headers/ReactiveCocoa/ReactiveCocoa/RACBlockTrampoline.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACBlockTrampoline.h -------------------------------------------------------------------------------- /Pods/Headers/ReactiveCocoa/ReactiveCocoa/RACChannel.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACChannel.h -------------------------------------------------------------------------------- /Pods/Headers/ReactiveCocoa/ReactiveCocoa/RACCommand.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACCommand.h -------------------------------------------------------------------------------- /Pods/Headers/ReactiveCocoa/ReactiveCocoa/RACCompoundDisposable.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACCompoundDisposable.h -------------------------------------------------------------------------------- /Pods/Headers/ReactiveCocoa/ReactiveCocoa/RACDelegateProxy.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACDelegateProxy.h -------------------------------------------------------------------------------- /Pods/Headers/ReactiveCocoa/ReactiveCocoa/RACDisposable.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACDisposable.h -------------------------------------------------------------------------------- /Pods/Headers/ReactiveCocoa/ReactiveCocoa/RACDynamicSequence.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACDynamicSequence.h -------------------------------------------------------------------------------- /Pods/Headers/ReactiveCocoa/ReactiveCocoa/RACDynamicSignal.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACDynamicSignal.h -------------------------------------------------------------------------------- /Pods/Headers/ReactiveCocoa/ReactiveCocoa/RACEXTKeyPathCoding.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/extobjc/RACEXTKeyPathCoding.h -------------------------------------------------------------------------------- /Pods/Headers/ReactiveCocoa/ReactiveCocoa/RACEXTScope.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/extobjc/RACEXTScope.h -------------------------------------------------------------------------------- /Pods/Headers/ReactiveCocoa/ReactiveCocoa/RACEagerSequence.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACEagerSequence.h -------------------------------------------------------------------------------- /Pods/Headers/ReactiveCocoa/ReactiveCocoa/RACEmptySequence.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACEmptySequence.h -------------------------------------------------------------------------------- /Pods/Headers/ReactiveCocoa/ReactiveCocoa/RACEmptySignal.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACEmptySignal.h -------------------------------------------------------------------------------- /Pods/Headers/ReactiveCocoa/ReactiveCocoa/RACErrorSignal.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACErrorSignal.h -------------------------------------------------------------------------------- /Pods/Headers/ReactiveCocoa/ReactiveCocoa/RACEvent.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACEvent.h -------------------------------------------------------------------------------- /Pods/Headers/ReactiveCocoa/ReactiveCocoa/RACGroupedSignal.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACGroupedSignal.h -------------------------------------------------------------------------------- /Pods/Headers/ReactiveCocoa/ReactiveCocoa/RACImmediateScheduler.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACImmediateScheduler.h -------------------------------------------------------------------------------- /Pods/Headers/ReactiveCocoa/ReactiveCocoa/RACIndexSetSequence.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACIndexSetSequence.h -------------------------------------------------------------------------------- /Pods/Headers/ReactiveCocoa/ReactiveCocoa/RACKVOChannel.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACKVOChannel.h -------------------------------------------------------------------------------- /Pods/Headers/ReactiveCocoa/ReactiveCocoa/RACKVOTrampoline.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACKVOTrampoline.h -------------------------------------------------------------------------------- /Pods/Headers/ReactiveCocoa/ReactiveCocoa/RACMulticastConnection.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACMulticastConnection.h -------------------------------------------------------------------------------- /Pods/Headers/ReactiveCocoa/ReactiveCocoa/RACPassthroughSubscriber.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACPassthroughSubscriber.h -------------------------------------------------------------------------------- /Pods/Headers/ReactiveCocoa/ReactiveCocoa/RACQueueScheduler+Subclass.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACQueueScheduler+Subclass.h -------------------------------------------------------------------------------- /Pods/Headers/ReactiveCocoa/ReactiveCocoa/RACQueueScheduler.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACQueueScheduler.h -------------------------------------------------------------------------------- /Pods/Headers/ReactiveCocoa/ReactiveCocoa/RACReplaySubject.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACReplaySubject.h -------------------------------------------------------------------------------- /Pods/Headers/ReactiveCocoa/ReactiveCocoa/RACReturnSignal.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACReturnSignal.h -------------------------------------------------------------------------------- /Pods/Headers/ReactiveCocoa/ReactiveCocoa/RACScheduler.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACScheduler.h -------------------------------------------------------------------------------- /Pods/Headers/ReactiveCocoa/ReactiveCocoa/RACScopedDisposable.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACScopedDisposable.h -------------------------------------------------------------------------------- /Pods/Headers/ReactiveCocoa/ReactiveCocoa/RACSequence.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACSequence.h -------------------------------------------------------------------------------- /Pods/Headers/ReactiveCocoa/ReactiveCocoa/RACSerialDisposable.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACSerialDisposable.h -------------------------------------------------------------------------------- /Pods/Headers/ReactiveCocoa/ReactiveCocoa/RACSignal+Operations.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACSignal+Operations.h -------------------------------------------------------------------------------- /Pods/Headers/ReactiveCocoa/ReactiveCocoa/RACSignal.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACSignal.h -------------------------------------------------------------------------------- /Pods/Headers/ReactiveCocoa/ReactiveCocoa/RACSignalSequence.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACSignalSequence.h -------------------------------------------------------------------------------- /Pods/Headers/ReactiveCocoa/ReactiveCocoa/RACStream.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACStream.h -------------------------------------------------------------------------------- /Pods/Headers/ReactiveCocoa/ReactiveCocoa/RACStringSequence.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACStringSequence.h -------------------------------------------------------------------------------- /Pods/Headers/ReactiveCocoa/ReactiveCocoa/RACSubject.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACSubject.h -------------------------------------------------------------------------------- /Pods/Headers/ReactiveCocoa/ReactiveCocoa/RACSubscriber.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACSubscriber.h -------------------------------------------------------------------------------- /Pods/Headers/ReactiveCocoa/ReactiveCocoa/RACSubscriptingAssignmentTrampoline.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACSubscriptingAssignmentTrampoline.h -------------------------------------------------------------------------------- /Pods/Headers/ReactiveCocoa/ReactiveCocoa/RACSubscriptionScheduler.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACSubscriptionScheduler.h -------------------------------------------------------------------------------- /Pods/Headers/ReactiveCocoa/ReactiveCocoa/RACTargetQueueScheduler.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACTargetQueueScheduler.h -------------------------------------------------------------------------------- /Pods/Headers/ReactiveCocoa/ReactiveCocoa/RACTestScheduler.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACTestScheduler.h -------------------------------------------------------------------------------- /Pods/Headers/ReactiveCocoa/ReactiveCocoa/RACTuple.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACTuple.h -------------------------------------------------------------------------------- /Pods/Headers/ReactiveCocoa/ReactiveCocoa/RACTupleSequence.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACTupleSequence.h -------------------------------------------------------------------------------- /Pods/Headers/ReactiveCocoa/ReactiveCocoa/RACUnarySequence.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACUnarySequence.h -------------------------------------------------------------------------------- /Pods/Headers/ReactiveCocoa/ReactiveCocoa/RACUnit.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACUnit.h -------------------------------------------------------------------------------- /Pods/Headers/ReactiveCocoa/ReactiveCocoa/RACValueTransformer.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACValueTransformer.h -------------------------------------------------------------------------------- /Pods/Headers/ReactiveCocoa/ReactiveCocoa/RACmetamacros.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/extobjc/RACmetamacros.h -------------------------------------------------------------------------------- /Pods/Headers/ReactiveCocoa/ReactiveCocoa/ReactiveCocoa.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/ReactiveCocoa.h -------------------------------------------------------------------------------- /Pods/Headers/ReactiveCocoa/ReactiveCocoa/UIActionSheet+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/UIActionSheet+RACSignalSupport.h -------------------------------------------------------------------------------- /Pods/Headers/ReactiveCocoa/ReactiveCocoa/UIAlertView+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/UIAlertView+RACSignalSupport.h -------------------------------------------------------------------------------- /Pods/Headers/ReactiveCocoa/ReactiveCocoa/UIBarButtonItem+RACCommandSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/UIBarButtonItem+RACCommandSupport.h -------------------------------------------------------------------------------- /Pods/Headers/ReactiveCocoa/ReactiveCocoa/UIButton+RACCommandSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/UIButton+RACCommandSupport.h -------------------------------------------------------------------------------- /Pods/Headers/ReactiveCocoa/ReactiveCocoa/UICollectionReusableView+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/UICollectionReusableView+RACSignalSupport.h -------------------------------------------------------------------------------- /Pods/Headers/ReactiveCocoa/ReactiveCocoa/UIControl+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/UIControl+RACSignalSupport.h -------------------------------------------------------------------------------- /Pods/Headers/ReactiveCocoa/ReactiveCocoa/UIControl+RACSignalSupportPrivate.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/UIControl+RACSignalSupportPrivate.h -------------------------------------------------------------------------------- /Pods/Headers/ReactiveCocoa/ReactiveCocoa/UIDatePicker+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/UIDatePicker+RACSignalSupport.h -------------------------------------------------------------------------------- /Pods/Headers/ReactiveCocoa/ReactiveCocoa/UIGestureRecognizer+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/UIGestureRecognizer+RACSignalSupport.h -------------------------------------------------------------------------------- /Pods/Headers/ReactiveCocoa/ReactiveCocoa/UIImagePickerController+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/UIImagePickerController+RACSignalSupport.h -------------------------------------------------------------------------------- /Pods/Headers/ReactiveCocoa/ReactiveCocoa/UIRefreshControl+RACCommandSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/UIRefreshControl+RACCommandSupport.h -------------------------------------------------------------------------------- /Pods/Headers/ReactiveCocoa/ReactiveCocoa/UISegmentedControl+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/UISegmentedControl+RACSignalSupport.h -------------------------------------------------------------------------------- /Pods/Headers/ReactiveCocoa/ReactiveCocoa/UISlider+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/UISlider+RACSignalSupport.h -------------------------------------------------------------------------------- /Pods/Headers/ReactiveCocoa/ReactiveCocoa/UIStepper+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/UIStepper+RACSignalSupport.h -------------------------------------------------------------------------------- /Pods/Headers/ReactiveCocoa/ReactiveCocoa/UISwitch+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/UISwitch+RACSignalSupport.h -------------------------------------------------------------------------------- /Pods/Headers/ReactiveCocoa/ReactiveCocoa/UITableViewCell+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/UITableViewCell+RACSignalSupport.h -------------------------------------------------------------------------------- /Pods/Headers/ReactiveCocoa/ReactiveCocoa/UITableViewHeaderFooterView+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/UITableViewHeaderFooterView+RACSignalSupport.h -------------------------------------------------------------------------------- /Pods/Headers/ReactiveCocoa/ReactiveCocoa/UITextField+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/UITextField+RACSignalSupport.h -------------------------------------------------------------------------------- /Pods/Headers/ReactiveCocoa/ReactiveCocoa/UITextView+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/UITextView+RACSignalSupport.h -------------------------------------------------------------------------------- /Pods/Headers/ReactiveViewModel/RVMViewModel.h: -------------------------------------------------------------------------------- 1 | ../../ReactiveViewModel/ReactiveViewModel/RVMViewModel.h -------------------------------------------------------------------------------- /Pods/Headers/ReactiveViewModel/ReactiveViewModel.h: -------------------------------------------------------------------------------- 1 | ../../ReactiveViewModel/ReactiveViewModel/ReactiveViewModel.h -------------------------------------------------------------------------------- /Pods/Headers/libextobjc/EXTRuntimeExtensions.h: -------------------------------------------------------------------------------- 1 | ../../libextobjc/extobjc/EXTRuntimeExtensions.h -------------------------------------------------------------------------------- /Pods/Headers/libextobjc/EXTScope.h: -------------------------------------------------------------------------------- 1 | ../../libextobjc/extobjc/EXTScope.h -------------------------------------------------------------------------------- /Pods/Headers/libextobjc/metamacros.h: -------------------------------------------------------------------------------- 1 | ../../libextobjc/extobjc/metamacros.h -------------------------------------------------------------------------------- /Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/Manifest.lock -------------------------------------------------------------------------------- /Pods/Pods-NSFetchedResultsController-MVVM-ReactiveCocoa-Private.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/Pods-NSFetchedResultsController-MVVM-ReactiveCocoa-Private.xcconfig -------------------------------------------------------------------------------- /Pods/Pods-NSFetchedResultsController-MVVM-ReactiveCocoa-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/Pods-NSFetchedResultsController-MVVM-ReactiveCocoa-dummy.m -------------------------------------------------------------------------------- /Pods/Pods-NSFetchedResultsController-MVVM-ReactiveCocoa-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/Pods-NSFetchedResultsController-MVVM-ReactiveCocoa-prefix.pch -------------------------------------------------------------------------------- /Pods/Pods-NSFetchedResultsController-MVVM-ReactiveCocoa.xcconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pods/Pods-NSFetchedResultsController-MVVM-ReactiveViewModel-Private.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/Pods-NSFetchedResultsController-MVVM-ReactiveViewModel-Private.xcconfig -------------------------------------------------------------------------------- /Pods/Pods-NSFetchedResultsController-MVVM-ReactiveViewModel-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/Pods-NSFetchedResultsController-MVVM-ReactiveViewModel-dummy.m -------------------------------------------------------------------------------- /Pods/Pods-NSFetchedResultsController-MVVM-ReactiveViewModel-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/Pods-NSFetchedResultsController-MVVM-ReactiveViewModel-prefix.pch -------------------------------------------------------------------------------- /Pods/Pods-NSFetchedResultsController-MVVM-ReactiveViewModel.xcconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pods/Pods-NSFetchedResultsController-MVVM-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/Pods-NSFetchedResultsController-MVVM-acknowledgements.markdown -------------------------------------------------------------------------------- /Pods/Pods-NSFetchedResultsController-MVVM-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/Pods-NSFetchedResultsController-MVVM-acknowledgements.plist -------------------------------------------------------------------------------- /Pods/Pods-NSFetchedResultsController-MVVM-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/Pods-NSFetchedResultsController-MVVM-dummy.m -------------------------------------------------------------------------------- /Pods/Pods-NSFetchedResultsController-MVVM-environment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/Pods-NSFetchedResultsController-MVVM-environment.h -------------------------------------------------------------------------------- /Pods/Pods-NSFetchedResultsController-MVVM-libextobjc-Private.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/Pods-NSFetchedResultsController-MVVM-libextobjc-Private.xcconfig -------------------------------------------------------------------------------- /Pods/Pods-NSFetchedResultsController-MVVM-libextobjc-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/Pods-NSFetchedResultsController-MVVM-libextobjc-dummy.m -------------------------------------------------------------------------------- /Pods/Pods-NSFetchedResultsController-MVVM-libextobjc-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/Pods-NSFetchedResultsController-MVVM-libextobjc-prefix.pch -------------------------------------------------------------------------------- /Pods/Pods-NSFetchedResultsController-MVVM-libextobjc.xcconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pods/Pods-NSFetchedResultsController-MVVM-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/Pods-NSFetchedResultsController-MVVM-resources.sh -------------------------------------------------------------------------------- /Pods/Pods-NSFetchedResultsController-MVVM.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/Pods-NSFetchedResultsController-MVVM.xcconfig -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/ash.xcuserdatad/xcschemes/Pods-NSFetchedResultsController-MVVM-ReactiveCocoa.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/Pods.xcodeproj/xcuserdata/ash.xcuserdatad/xcschemes/Pods-NSFetchedResultsController-MVVM-ReactiveCocoa.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/ash.xcuserdatad/xcschemes/Pods-NSFetchedResultsController-MVVM-ReactiveViewModel.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/Pods.xcodeproj/xcuserdata/ash.xcuserdatad/xcschemes/Pods-NSFetchedResultsController-MVVM-ReactiveViewModel.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/ash.xcuserdatad/xcschemes/Pods-NSFetchedResultsController-MVVM-libextobjc.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/Pods.xcodeproj/xcuserdata/ash.xcuserdatad/xcschemes/Pods-NSFetchedResultsController-MVVM-libextobjc.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/ash.xcuserdatad/xcschemes/Pods-NSFetchedResultsController-MVVM.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/Pods.xcodeproj/xcuserdata/ash.xcuserdatad/xcschemes/Pods-NSFetchedResultsController-MVVM.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/ash.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/Pods.xcodeproj/xcuserdata/ash.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/LICENSE.md -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/README.md -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/NSArray+RACSequenceAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/NSArray+RACSequenceAdditions.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/NSArray+RACSequenceAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/NSArray+RACSequenceAdditions.m -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/NSData+RACSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/NSData+RACSupport.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/NSData+RACSupport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/NSData+RACSupport.m -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/NSDictionary+RACSequenceAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/NSDictionary+RACSequenceAdditions.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/NSDictionary+RACSequenceAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/NSDictionary+RACSequenceAdditions.m -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/NSEnumerator+RACSequenceAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/NSEnumerator+RACSequenceAdditions.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/NSEnumerator+RACSequenceAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/NSEnumerator+RACSequenceAdditions.m -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/NSFileHandle+RACSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/NSFileHandle+RACSupport.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/NSFileHandle+RACSupport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/NSFileHandle+RACSupport.m -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/NSIndexSet+RACSequenceAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/NSIndexSet+RACSequenceAdditions.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/NSIndexSet+RACSequenceAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/NSIndexSet+RACSequenceAdditions.m -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/NSInvocation+RACTypeParsing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/NSInvocation+RACTypeParsing.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/NSInvocation+RACTypeParsing.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/NSInvocation+RACTypeParsing.m -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/NSNotificationCenter+RACSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/NSNotificationCenter+RACSupport.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/NSNotificationCenter+RACSupport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/NSNotificationCenter+RACSupport.m -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/NSObject+RACDeallocating.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/NSObject+RACDeallocating.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/NSObject+RACDeallocating.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/NSObject+RACDeallocating.m -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/NSObject+RACDescription.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/NSObject+RACDescription.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/NSObject+RACDescription.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/NSObject+RACDescription.m -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/NSObject+RACKVOWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/NSObject+RACKVOWrapper.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/NSObject+RACKVOWrapper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/NSObject+RACKVOWrapper.m -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/NSObject+RACLifting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/NSObject+RACLifting.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/NSObject+RACLifting.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/NSObject+RACLifting.m -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/NSObject+RACPropertySubscribing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/NSObject+RACPropertySubscribing.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/NSObject+RACPropertySubscribing.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/NSObject+RACPropertySubscribing.m -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/NSObject+RACSelectorSignal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/NSObject+RACSelectorSignal.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/NSObject+RACSelectorSignal.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/NSObject+RACSelectorSignal.m -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/NSOrderedSet+RACSequenceAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/NSOrderedSet+RACSequenceAdditions.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/NSOrderedSet+RACSequenceAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/NSOrderedSet+RACSequenceAdditions.m -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/NSSet+RACSequenceAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/NSSet+RACSequenceAdditions.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/NSSet+RACSequenceAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/NSSet+RACSequenceAdditions.m -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/NSString+RACKeyPathUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/NSString+RACKeyPathUtilities.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/NSString+RACKeyPathUtilities.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/NSString+RACKeyPathUtilities.m -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/NSString+RACSequenceAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/NSString+RACSequenceAdditions.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/NSString+RACSequenceAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/NSString+RACSequenceAdditions.m -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/NSString+RACSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/NSString+RACSupport.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/NSString+RACSupport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/NSString+RACSupport.m -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/NSURLConnection+RACSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/NSURLConnection+RACSupport.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/NSURLConnection+RACSupport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/NSURLConnection+RACSupport.m -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/NSUserDefaults+RACSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/NSUserDefaults+RACSupport.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/NSUserDefaults+RACSupport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/NSUserDefaults+RACSupport.m -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACArraySequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACArraySequence.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACArraySequence.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACArraySequence.m -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACBacktrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACBacktrace.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACBacktrace.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACBacktrace.m -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACBehaviorSubject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACBehaviorSubject.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACBehaviorSubject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACBehaviorSubject.m -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACBlockTrampoline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACBlockTrampoline.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACBlockTrampoline.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACBlockTrampoline.m -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACChannel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACChannel.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACChannel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACChannel.m -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACCommand.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACCommand.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACCommand.m -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACCompoundDisposable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACCompoundDisposable.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACCompoundDisposable.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACCompoundDisposable.m -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACCompoundDisposableProvider.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACCompoundDisposableProvider.d -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACDelegateProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACDelegateProxy.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACDelegateProxy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACDelegateProxy.m -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACDisposable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACDisposable.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACDisposable.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACDisposable.m -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACDynamicSequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACDynamicSequence.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACDynamicSequence.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACDynamicSequence.m -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACDynamicSignal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACDynamicSignal.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACDynamicSignal.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACDynamicSignal.m -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACEagerSequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACEagerSequence.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACEagerSequence.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACEagerSequence.m -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACEmptySequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACEmptySequence.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACEmptySequence.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACEmptySequence.m -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACEmptySignal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACEmptySignal.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACEmptySignal.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACEmptySignal.m -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACErrorSignal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACErrorSignal.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACErrorSignal.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACErrorSignal.m -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACEvent.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACEvent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACEvent.m -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACGroupedSignal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACGroupedSignal.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACGroupedSignal.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACGroupedSignal.m -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACImmediateScheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACImmediateScheduler.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACImmediateScheduler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACImmediateScheduler.m -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACIndexSetSequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACIndexSetSequence.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACIndexSetSequence.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACIndexSetSequence.m -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACKVOChannel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACKVOChannel.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACKVOChannel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACKVOChannel.m -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACKVOTrampoline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACKVOTrampoline.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACKVOTrampoline.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACKVOTrampoline.m -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACMulticastConnection+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACMulticastConnection+Private.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACMulticastConnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACMulticastConnection.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACMulticastConnection.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACMulticastConnection.m -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACObjCRuntime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACObjCRuntime.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACObjCRuntime.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACObjCRuntime.m -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACPassthroughSubscriber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACPassthroughSubscriber.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACPassthroughSubscriber.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACPassthroughSubscriber.m -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACQueueScheduler+Subclass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACQueueScheduler+Subclass.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACQueueScheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACQueueScheduler.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACQueueScheduler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACQueueScheduler.m -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACReplaySubject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACReplaySubject.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACReplaySubject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACReplaySubject.m -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACReturnSignal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACReturnSignal.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACReturnSignal.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACReturnSignal.m -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACScheduler+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACScheduler+Private.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACScheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACScheduler.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACScheduler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACScheduler.m -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACScopedDisposable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACScopedDisposable.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACScopedDisposable.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACScopedDisposable.m -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACSequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACSequence.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACSequence.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACSequence.m -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACSerialDisposable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACSerialDisposable.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACSerialDisposable.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACSerialDisposable.m -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACSignal+Operations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACSignal+Operations.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACSignal+Operations.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACSignal+Operations.m -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACSignal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACSignal.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACSignal.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACSignal.m -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACSignalProvider.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACSignalProvider.d -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACSignalSequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACSignalSequence.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACSignalSequence.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACSignalSequence.m -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACStream+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACStream+Private.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACStream.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACStream.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACStream.m -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACStringSequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACStringSequence.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACStringSequence.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACStringSequence.m -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACSubject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACSubject.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACSubject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACSubject.m -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACSubscriber+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACSubscriber+Private.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACSubscriber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACSubscriber.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACSubscriber.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACSubscriber.m -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACSubscriptingAssignmentTrampoline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACSubscriptingAssignmentTrampoline.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACSubscriptingAssignmentTrampoline.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACSubscriptingAssignmentTrampoline.m -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACSubscriptionScheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACSubscriptionScheduler.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACSubscriptionScheduler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACSubscriptionScheduler.m -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACTargetQueueScheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACTargetQueueScheduler.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACTargetQueueScheduler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACTargetQueueScheduler.m -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACTestScheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACTestScheduler.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACTestScheduler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACTestScheduler.m -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACTuple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACTuple.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACTuple.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACTuple.m -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACTupleSequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACTupleSequence.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACTupleSequence.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACTupleSequence.m -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACUnarySequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACUnarySequence.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACUnarySequence.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACUnarySequence.m -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACUnit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACUnit.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACUnit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACUnit.m -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACValueTransformer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACValueTransformer.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACValueTransformer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/RACValueTransformer.m -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/ReactiveCocoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/ReactiveCocoa.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/UIActionSheet+RACSignalSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/UIActionSheet+RACSignalSupport.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/UIActionSheet+RACSignalSupport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/UIActionSheet+RACSignalSupport.m -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/UIAlertView+RACSignalSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/UIAlertView+RACSignalSupport.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/UIAlertView+RACSignalSupport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/UIAlertView+RACSignalSupport.m -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/UIBarButtonItem+RACCommandSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/UIBarButtonItem+RACCommandSupport.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/UIBarButtonItem+RACCommandSupport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/UIBarButtonItem+RACCommandSupport.m -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/UIButton+RACCommandSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/UIButton+RACCommandSupport.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/UIButton+RACCommandSupport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/UIButton+RACCommandSupport.m -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/UICollectionReusableView+RACSignalSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/UICollectionReusableView+RACSignalSupport.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/UICollectionReusableView+RACSignalSupport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/UICollectionReusableView+RACSignalSupport.m -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/UIControl+RACSignalSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/UIControl+RACSignalSupport.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/UIControl+RACSignalSupport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/UIControl+RACSignalSupport.m -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/UIControl+RACSignalSupportPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/UIControl+RACSignalSupportPrivate.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/UIControl+RACSignalSupportPrivate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/UIControl+RACSignalSupportPrivate.m -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/UIDatePicker+RACSignalSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/UIDatePicker+RACSignalSupport.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/UIDatePicker+RACSignalSupport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/UIDatePicker+RACSignalSupport.m -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/UIGestureRecognizer+RACSignalSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/UIGestureRecognizer+RACSignalSupport.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/UIGestureRecognizer+RACSignalSupport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/UIGestureRecognizer+RACSignalSupport.m -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/UIImagePickerController+RACSignalSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/UIImagePickerController+RACSignalSupport.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/UIImagePickerController+RACSignalSupport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/UIImagePickerController+RACSignalSupport.m -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/UIRefreshControl+RACCommandSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/UIRefreshControl+RACCommandSupport.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/UIRefreshControl+RACCommandSupport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/UIRefreshControl+RACCommandSupport.m -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/UISegmentedControl+RACSignalSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/UISegmentedControl+RACSignalSupport.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/UISegmentedControl+RACSignalSupport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/UISegmentedControl+RACSignalSupport.m -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/UISlider+RACSignalSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/UISlider+RACSignalSupport.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/UISlider+RACSignalSupport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/UISlider+RACSignalSupport.m -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/UIStepper+RACSignalSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/UIStepper+RACSignalSupport.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/UIStepper+RACSignalSupport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/UIStepper+RACSignalSupport.m -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/UISwitch+RACSignalSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/UISwitch+RACSignalSupport.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/UISwitch+RACSignalSupport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/UISwitch+RACSignalSupport.m -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/UITableViewCell+RACSignalSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/UITableViewCell+RACSignalSupport.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/UITableViewCell+RACSignalSupport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/UITableViewCell+RACSignalSupport.m -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/UITableViewHeaderFooterView+RACSignalSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/UITableViewHeaderFooterView+RACSignalSupport.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/UITableViewHeaderFooterView+RACSignalSupport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/UITableViewHeaderFooterView+RACSignalSupport.m -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/UITextField+RACSignalSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/UITextField+RACSignalSupport.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/UITextField+RACSignalSupport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/UITextField+RACSignalSupport.m -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/UITextView+RACSignalSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/UITextView+RACSignalSupport.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/UITextView+RACSignalSupport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/UITextView+RACSignalSupport.m -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/extobjc/RACEXTKeyPathCoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/extobjc/RACEXTKeyPathCoding.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/extobjc/RACEXTRuntimeExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/extobjc/RACEXTRuntimeExtensions.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/extobjc/RACEXTRuntimeExtensions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/extobjc/RACEXTRuntimeExtensions.m -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/extobjc/RACEXTScope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/extobjc/RACEXTScope.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/extobjc/RACmetamacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa/extobjc/RACmetamacros.h -------------------------------------------------------------------------------- /Pods/ReactiveViewModel/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveViewModel/LICENSE.md -------------------------------------------------------------------------------- /Pods/ReactiveViewModel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveViewModel/README.md -------------------------------------------------------------------------------- /Pods/ReactiveViewModel/ReactiveViewModel/RVMViewModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveViewModel/ReactiveViewModel/RVMViewModel.h -------------------------------------------------------------------------------- /Pods/ReactiveViewModel/ReactiveViewModel/RVMViewModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveViewModel/ReactiveViewModel/RVMViewModel.m -------------------------------------------------------------------------------- /Pods/ReactiveViewModel/ReactiveViewModel/ReactiveViewModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/ReactiveViewModel/ReactiveViewModel/ReactiveViewModel.h -------------------------------------------------------------------------------- /Pods/libextobjc/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/libextobjc/LICENSE.md -------------------------------------------------------------------------------- /Pods/libextobjc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/libextobjc/README.md -------------------------------------------------------------------------------- /Pods/libextobjc/extobjc/EXTRuntimeExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/libextobjc/extobjc/EXTRuntimeExtensions.h -------------------------------------------------------------------------------- /Pods/libextobjc/extobjc/EXTRuntimeExtensions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/libextobjc/extobjc/EXTRuntimeExtensions.m -------------------------------------------------------------------------------- /Pods/libextobjc/extobjc/EXTScope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/libextobjc/extobjc/EXTScope.h -------------------------------------------------------------------------------- /Pods/libextobjc/extobjc/EXTScope.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/libextobjc/extobjc/EXTScope.m -------------------------------------------------------------------------------- /Pods/libextobjc/extobjc/metamacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/Pods/libextobjc/extobjc/metamacros.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/NSFetchedResultsController-MVVM/HEAD/README.md --------------------------------------------------------------------------------