├── .gitignore ├── DesignerNewsForObjc.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcshareddata │ └── xcschemes │ └── DesignerNewsForObjc.xcscheme ├── DesignerNewsForObjc.xcworkspace └── contents.xcworkspacedata ├── DesignerNewsForObjc ├── AppDelegate │ ├── AppDelegate.h │ └── AppDelegate.m ├── Base.lproj │ ├── LaunchScreen.xib │ └── Main.storyboard ├── DesignerNewsForObjc-Bridging-Header.h ├── General │ ├── Categories │ │ ├── NSString+Check.h │ │ └── NSString+Check.m │ ├── DataSources │ │ ├── ArrayDataSource.h │ │ └── ArrayDataSource.m │ ├── Network │ │ ├── DesignerNewsURL.h │ │ └── DesignerNewsURL.m │ └── Persistence │ │ ├── LocalStore.h │ │ └── LocalStore.m ├── Images.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── iPhone29@2x.png │ │ ├── iPhone29@3x.png │ │ ├── iPhone40@2x.png │ │ ├── iPhone60@2x-1.png │ │ ├── iPhone60@2x.png │ │ └── iPhone60@3x.png │ └── Vector │ │ ├── action-comment.imageset │ │ ├── Contents.json │ │ └── action-comment.pdf │ │ ├── action-reply.imageset │ │ ├── Contents.json │ │ └── action-reply.pdf │ │ ├── action-share.imageset │ │ ├── Contents.json │ │ └── action-share.pdf │ │ ├── action-upvote-active.imageset │ │ ├── Contents.json │ │ └── action-upvote-active.pdf │ │ ├── action-upvote.imageset │ │ ├── Contents.json │ │ └── action-upvote.pdf │ │ ├── badge-ama.imageset │ │ ├── Contents.json │ │ └── badge-ama.pdf │ │ ├── badge-apple.imageset │ │ ├── Contents.json │ │ └── badge-apple.pdf │ │ ├── badge-ask.imageset │ │ ├── Contents.json │ │ └── badge-ask.pdf │ │ ├── badge-css.imageset │ │ ├── Contents.json │ │ └── badge-css.pdf │ │ ├── badge-discussion.imageset │ │ ├── Contents.json │ │ └── badge-discussion.pdf │ │ ├── badge-pinned.imageset │ │ ├── Contents.json │ │ └── badge-pinned.pdf │ │ ├── badge-show.imageset │ │ ├── Contents.json │ │ └── badge-show.pdf │ │ ├── badge-sitedesign.imageset │ │ ├── Contents.json │ │ └── badge-sitedesign.pdf │ │ ├── badge-sketch.imageset │ │ ├── Contents.json │ │ └── badge-sketch.pdf │ │ ├── badge-type.imageset │ │ ├── Contents.json │ │ └── badge-type.pdf │ │ ├── badge-video.imageset │ │ ├── Contents.json │ │ └── badge-video.pdf │ │ ├── bg-1px.imageset │ │ ├── Contents.json │ │ └── bg-1px.pdf │ │ ├── bg-credits.imageset │ │ ├── Contents.json │ │ └── bg-credits.pdf │ │ ├── big-credits.imageset │ │ ├── Contents.json │ │ └── big-credits.pdf │ │ ├── big-login.imageset │ │ ├── Contents.json │ │ └── big-login.pdf │ │ ├── big-recent.imageset │ │ ├── Contents.json │ │ └── big-recent.pdf │ │ ├── big-top.imageset │ │ ├── Contents.json │ │ └── big-top.pdf │ │ ├── button-blue.imageset │ │ ├── Contents.json │ │ └── button-blue.pdf │ │ ├── content-art.imageset │ │ ├── Contents.json │ │ └── content-art.pdf │ │ ├── content-avatar-default.imageset │ │ ├── Contents.json │ │ └── content-avatar-default.pdf │ │ ├── content-avatar.imageset │ │ ├── Contents.json │ │ └── content-avatar.pdf │ │ ├── icon-book.imageset │ │ ├── Contents.json │ │ └── icon-book.pdf │ │ ├── icon-close.imageset │ │ ├── Contents.json │ │ └── icon-close.pdf │ │ ├── icon-comment-active.imageset │ │ ├── Contents.json │ │ └── icon-comment-active.pdf │ │ ├── icon-comment.imageset │ │ ├── Contents.json │ │ └── icon-comment.pdf │ │ ├── icon-hamburger.imageset │ │ ├── Contents.json │ │ └── icon-hamburger.pdf │ │ ├── icon-mail-active.imageset │ │ ├── Contents.json │ │ └── icon-mail-active.pdf │ │ ├── icon-mail.imageset │ │ ├── Contents.json │ │ └── icon-mail.pdf │ │ ├── icon-password-active.imageset │ │ ├── Contents.json │ │ └── icon-password-active.pdf │ │ ├── icon-password.imageset │ │ ├── Contents.json │ │ └── icon-password.pdf │ │ ├── icon-reply.imageset │ │ ├── Contents.json │ │ └── icon-reply.pdf │ │ ├── icon-sketch.imageset │ │ ├── Contents.json │ │ └── icon-sketch.pdf │ │ ├── icon-twitter.imageset │ │ ├── Contents.json │ │ └── icon-twitter.pdf │ │ ├── icon-upvote-active.imageset │ │ ├── Contents.json │ │ └── icon-upvote-active.pdf │ │ ├── icon-upvote.imageset │ │ ├── Contents.json │ │ └── icon-upvote.pdf │ │ ├── icon-xcode.imageset │ │ ├── Contents.json │ │ └── icon-xcode.pdf │ │ ├── input-outline-active.imageset │ │ ├── Contents.json │ │ └── input-outline-active.pdf │ │ ├── input-outline.imageset │ │ ├── Contents.json │ │ └── input-outline.pdf │ │ └── loading.imageset │ │ ├── Contents.json │ │ └── loading.pdf ├── Info.plist ├── Sections │ ├── Comment │ │ ├── Comment.h │ │ ├── Comment.m │ │ ├── CommentTableViewCell.h │ │ ├── CommentTableViewCell.m │ │ ├── CommentViewController.h │ │ ├── CommentViewController.m │ │ ├── CommentViewModel.h │ │ └── CommentViewModel.m │ ├── Learn │ │ ├── LearnViewController.h │ │ └── LearnViewController.m │ ├── Login │ │ ├── LoginClient.h │ │ ├── LoginClient.m │ │ ├── LoginViewController.h │ │ ├── LoginViewController.m │ │ ├── LoginViewModel.h │ │ └── LoginViewModel.m │ ├── Menu │ │ ├── MenuViewController.h │ │ └── MenuViewController.m │ ├── Story │ │ ├── Story.h │ │ ├── Story.m │ │ ├── StoryClient.h │ │ ├── StoryClient.m │ │ ├── StoryTableViewCell.h │ │ ├── StoryTableViewCell.m │ │ ├── StoryViewController.h │ │ ├── StoryViewController.m │ │ ├── StoryViewModel.h │ │ └── StoryViewModel.m │ └── Web │ │ ├── WebViewController.h │ │ └── WebViewController.m ├── Vendors │ └── Spring │ │ ├── AsyncButton.swift │ │ ├── AsyncImageView.swift │ │ ├── AutoTextView.swift │ │ ├── BlurView.swift │ │ ├── DesignableButton.swift │ │ ├── DesignableImageView.swift │ │ ├── DesignableLabel.swift │ │ ├── DesignableTabBarController.swift │ │ ├── DesignableTextField.swift │ │ ├── DesignableTextView.swift │ │ ├── DesignableView.swift │ │ ├── ImageLoader.swift │ │ ├── Info.plist │ │ ├── KeyboardLayoutConstraint.swift │ │ ├── LoadingView.swift │ │ ├── LoadingView.xib │ │ ├── Misc.swift │ │ ├── SoundPlayer.swift │ │ ├── Spring.h │ │ ├── Spring.swift │ │ ├── SpringAnimation.swift │ │ ├── SpringButton.swift │ │ ├── SpringImageView.swift │ │ ├── SpringLabel.swift │ │ ├── SpringTextField.swift │ │ ├── SpringTextView.swift │ │ ├── SpringView.swift │ │ ├── TransitionManager.swift │ │ ├── TransitionZoom.swift │ │ └── UnwindSegue.swift └── main.m ├── DesignerNewsForObjcTests ├── General │ ├── Categories │ │ ├── UIBarButtonItem+Specs.h │ │ ├── UIBarButtonItem+Specs.m │ │ ├── UIButton+Specs.h │ │ ├── UIButton+Specs.m │ │ ├── UIView+Specs.h │ │ ├── UIView+Specs.m │ │ ├── UIViewController+Storyboard.h │ │ └── UIViewController+Storyboard.m │ ├── DataSources │ │ └── ArrayDataSourceSpec.m │ ├── Network │ │ └── DesignerNewsURLSpec.m │ └── Persistence │ │ └── LocalStoreSpec.m ├── Helpers │ ├── TestHelper.h │ └── TestHelper.m ├── Info.plist ├── JSON │ ├── Login │ │ ├── login_conf.json │ │ └── login_response.json │ ├── Story │ │ ├── stories_conf.json │ │ ├── stories_response.json │ │ ├── story_upvote_conf.json │ │ └── story_upvote_response.json │ └── settings.json └── Sections │ ├── Comment │ └── CommentViewControllerSpec.m │ ├── Learn │ └── LearnViewControllerSpec.m │ ├── Login │ ├── LoginClientSpec.m │ ├── LoginViewControllerSpec.m │ └── LoginViewModelSpec.m │ ├── Menu │ └── MenuViewControllerSpec.m │ └── Story │ ├── StoryClientSpec.m │ ├── StorySpec.m │ ├── StoryViewControllerSpec.m │ └── StoryViewModelSpec.m ├── LICENSE ├── Podfile ├── Podfile.lock ├── Pods ├── AFNetworking │ ├── AFNetworking │ │ ├── AFHTTPRequestOperation.h │ │ ├── AFHTTPRequestOperation.m │ │ ├── AFHTTPRequestOperationManager.h │ │ ├── AFHTTPRequestOperationManager.m │ │ ├── AFHTTPSessionManager.h │ │ ├── AFHTTPSessionManager.m │ │ ├── AFNetworkReachabilityManager.h │ │ ├── AFNetworkReachabilityManager.m │ │ ├── AFNetworking.h │ │ ├── AFSecurityPolicy.h │ │ ├── AFSecurityPolicy.m │ │ ├── AFURLConnectionOperation.h │ │ ├── AFURLConnectionOperation.m │ │ ├── AFURLRequestSerialization.h │ │ ├── AFURLRequestSerialization.m │ │ ├── AFURLResponseSerialization.h │ │ ├── AFURLResponseSerialization.m │ │ ├── AFURLSessionManager.h │ │ └── AFURLSessionManager.m │ ├── LICENSE │ ├── README.md │ └── UIKit+AFNetworking │ │ ├── AFNetworkActivityIndicatorManager.h │ │ ├── AFNetworkActivityIndicatorManager.m │ │ ├── UIActivityIndicatorView+AFNetworking.h │ │ ├── UIActivityIndicatorView+AFNetworking.m │ │ ├── UIAlertView+AFNetworking.h │ │ ├── UIAlertView+AFNetworking.m │ │ ├── UIButton+AFNetworking.h │ │ ├── UIButton+AFNetworking.m │ │ ├── UIImageView+AFNetworking.h │ │ ├── UIImageView+AFNetworking.m │ │ ├── UIKit+AFNetworking.h │ │ ├── UIProgressView+AFNetworking.h │ │ ├── UIProgressView+AFNetworking.m │ │ ├── UIRefreshControl+AFNetworking.h │ │ ├── UIRefreshControl+AFNetworking.m │ │ ├── UIWebView+AFNetworking.h │ │ └── UIWebView+AFNetworking.m ├── Headers │ ├── Private │ │ ├── AFNetworking │ │ │ ├── AFHTTPRequestOperation.h │ │ │ ├── AFHTTPRequestOperationManager.h │ │ │ ├── AFHTTPSessionManager.h │ │ │ ├── AFNetworkActivityIndicatorManager.h │ │ │ ├── AFNetworkReachabilityManager.h │ │ │ ├── AFNetworking.h │ │ │ ├── AFSecurityPolicy.h │ │ │ ├── AFURLConnectionOperation.h │ │ │ ├── AFURLRequestSerialization.h │ │ │ ├── AFURLResponseSerialization.h │ │ │ ├── AFURLSessionManager.h │ │ │ ├── UIActivityIndicatorView+AFNetworking.h │ │ │ ├── UIAlertView+AFNetworking.h │ │ │ ├── UIButton+AFNetworking.h │ │ │ ├── UIImageView+AFNetworking.h │ │ │ ├── UIKit+AFNetworking.h │ │ │ ├── UIProgressView+AFNetworking.h │ │ │ ├── UIRefreshControl+AFNetworking.h │ │ │ └── UIWebView+AFNetworking.h │ │ ├── Kiwi │ │ │ ├── KWAfterAllNode.h │ │ │ ├── KWAfterEachNode.h │ │ │ ├── KWAny.h │ │ │ ├── KWAsyncVerifier.h │ │ │ ├── KWBeBetweenMatcher.h │ │ │ ├── KWBeEmptyMatcher.h │ │ │ ├── KWBeIdenticalToMatcher.h │ │ │ ├── KWBeKindOfClassMatcher.h │ │ │ ├── KWBeMemberOfClassMatcher.h │ │ │ ├── KWBeSubclassOfClassMatcher.h │ │ │ ├── KWBeTrueMatcher.h │ │ │ ├── KWBeWithinMatcher.h │ │ │ ├── KWBeZeroMatcher.h │ │ │ ├── KWBeforeAllNode.h │ │ │ ├── KWBeforeEachNode.h │ │ │ ├── KWBlock.h │ │ │ ├── KWBlockNode.h │ │ │ ├── KWBlockRaiseMatcher.h │ │ │ ├── KWCallSite.h │ │ │ ├── KWCaptureSpy.h │ │ │ ├── KWChangeMatcher.h │ │ │ ├── KWConformToProtocolMatcher.h │ │ │ ├── KWContainMatcher.h │ │ │ ├── KWContainStringMatcher.h │ │ │ ├── KWContextNode.h │ │ │ ├── KWCountType.h │ │ │ ├── KWDeviceInfo.h │ │ │ ├── KWEqualMatcher.h │ │ │ ├── KWExample.h │ │ │ ├── KWExampleDelegate.h │ │ │ ├── KWExampleNode.h │ │ │ ├── KWExampleNodeVisitor.h │ │ │ ├── KWExampleSuite.h │ │ │ ├── KWExampleSuiteBuilder.h │ │ │ ├── KWExistVerifier.h │ │ │ ├── KWExpectationType.h │ │ │ ├── KWFailure.h │ │ │ ├── KWFormatter.h │ │ │ ├── KWFutureObject.h │ │ │ ├── KWGenericMatchEvaluator.h │ │ │ ├── KWGenericMatcher.h │ │ │ ├── KWGenericMatchingAdditions.h │ │ │ ├── KWHaveMatcher.h │ │ │ ├── KWHaveValueMatcher.h │ │ │ ├── KWInequalityMatcher.h │ │ │ ├── KWIntercept.h │ │ │ ├── KWInvocationCapturer.h │ │ │ ├── KWItNode.h │ │ │ ├── KWLet.h │ │ │ ├── KWLetNode.h │ │ │ ├── KWMatchVerifier.h │ │ │ ├── KWMatcher.h │ │ │ ├── KWMatcherFactory.h │ │ │ ├── KWMatchers.h │ │ │ ├── KWMatching.h │ │ │ ├── KWMessagePattern.h │ │ │ ├── KWMessageSpying.h │ │ │ ├── KWMessageTracker.h │ │ │ ├── KWMock.h │ │ │ ├── KWNilMatcher.h │ │ │ ├── KWNotificationMatcher.h │ │ │ ├── KWNull.h │ │ │ ├── KWObjCUtilities.h │ │ │ ├── KWPendingNode.h │ │ │ ├── KWProbe.h │ │ │ ├── KWProbePoller.h │ │ │ ├── KWReceiveMatcher.h │ │ │ ├── KWRegisterMatchersNode.h │ │ │ ├── KWRegularExpressionPatternMatcher.h │ │ │ ├── KWReporting.h │ │ │ ├── KWRespondToSelectorMatcher.h │ │ │ ├── KWSpec.h │ │ │ ├── KWStringContainsMatcher.h │ │ │ ├── KWStringPrefixMatcher.h │ │ │ ├── KWStringUtilities.h │ │ │ ├── KWStub.h │ │ │ ├── KWSuiteConfigurationBase.h │ │ │ ├── KWSymbolicator.h │ │ │ ├── KWUserDefinedMatcher.h │ │ │ ├── KWValue.h │ │ │ ├── KWVerifying.h │ │ │ ├── KWWorkarounds.h │ │ │ ├── Kiwi.h │ │ │ ├── KiwiBlockMacros.h │ │ │ ├── KiwiConfiguration.h │ │ │ ├── KiwiMacros.h │ │ │ ├── NSInvocation+KiwiAdditions.h │ │ │ ├── NSInvocation+OCMAdditions.h │ │ │ ├── NSMethodSignature+KiwiAdditions.h │ │ │ ├── NSNumber+KiwiAdditions.h │ │ │ ├── NSObject+KiwiMockAdditions.h │ │ │ ├── NSObject+KiwiSpyAdditions.h │ │ │ ├── NSObject+KiwiStubAdditions.h │ │ │ ├── NSObject+KiwiVerifierAdditions.h │ │ │ ├── NSProxy+KiwiVerifierAdditions.h │ │ │ └── NSValue+KiwiAdditions.h │ │ ├── Mantle │ │ │ ├── EXTKeyPathCoding.h │ │ │ ├── EXTRuntimeExtensions.h │ │ │ ├── EXTScope.h │ │ │ ├── MTLJSONAdapter.h │ │ │ ├── MTLManagedObjectAdapter.h │ │ │ ├── MTLModel+NSCoding.h │ │ │ ├── MTLModel.h │ │ │ ├── MTLReflection.h │ │ │ ├── MTLValueTransformer.h │ │ │ ├── Mantle.h │ │ │ ├── NSArray+MTLManipulationAdditions.h │ │ │ ├── NSDictionary+MTLManipulationAdditions.h │ │ │ ├── NSError+MTLModelException.h │ │ │ ├── NSObject+MTLComparisonAdditions.h │ │ │ ├── NSValueTransformer+MTLInversionAdditions.h │ │ │ ├── NSValueTransformer+MTLPredefinedTransformerAdditions.h │ │ │ └── metamacros.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 │ │ │ ├── RACKVOProxy.h │ │ │ ├── RACKVOTrampoline.h │ │ │ ├── RACMulticastConnection+Private.h │ │ │ ├── RACMulticastConnection.h │ │ │ ├── RACObjCRuntime.h │ │ │ ├── RACPassthroughSubscriber.h │ │ │ ├── RACQueueScheduler+Subclass.h │ │ │ ├── RACQueueScheduler.h │ │ │ ├── RACReplaySubject.h │ │ │ ├── RACReturnSignal.h │ │ │ ├── RACScheduler+Private.h │ │ │ ├── RACScheduler+Subclass.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 │ │ └── TPKeyboardAvoiding │ │ │ ├── TPKeyboardAvoidingCollectionView.h │ │ │ ├── TPKeyboardAvoidingScrollView.h │ │ │ ├── TPKeyboardAvoidingTableView.h │ │ │ └── UIScrollView+TPKeyboardAvoidingAdditions.h │ └── Public │ │ ├── AFNetworking │ │ ├── AFHTTPRequestOperation.h │ │ ├── AFHTTPRequestOperationManager.h │ │ ├── AFHTTPSessionManager.h │ │ ├── AFNetworkActivityIndicatorManager.h │ │ ├── AFNetworkReachabilityManager.h │ │ ├── AFNetworking.h │ │ ├── AFSecurityPolicy.h │ │ ├── AFURLConnectionOperation.h │ │ ├── AFURLRequestSerialization.h │ │ ├── AFURLResponseSerialization.h │ │ ├── AFURLSessionManager.h │ │ ├── UIActivityIndicatorView+AFNetworking.h │ │ ├── UIAlertView+AFNetworking.h │ │ ├── UIButton+AFNetworking.h │ │ ├── UIImageView+AFNetworking.h │ │ ├── UIKit+AFNetworking.h │ │ ├── UIProgressView+AFNetworking.h │ │ ├── UIRefreshControl+AFNetworking.h │ │ └── UIWebView+AFNetworking.h │ │ ├── Kiwi │ │ ├── KWAfterAllNode.h │ │ ├── KWAfterEachNode.h │ │ ├── KWAny.h │ │ ├── KWAsyncVerifier.h │ │ ├── KWBeBetweenMatcher.h │ │ ├── KWBeEmptyMatcher.h │ │ ├── KWBeIdenticalToMatcher.h │ │ ├── KWBeKindOfClassMatcher.h │ │ ├── KWBeMemberOfClassMatcher.h │ │ ├── KWBeSubclassOfClassMatcher.h │ │ ├── KWBeTrueMatcher.h │ │ ├── KWBeWithinMatcher.h │ │ ├── KWBeZeroMatcher.h │ │ ├── KWBeforeAllNode.h │ │ ├── KWBeforeEachNode.h │ │ ├── KWBlock.h │ │ ├── KWBlockNode.h │ │ ├── KWBlockRaiseMatcher.h │ │ ├── KWCallSite.h │ │ ├── KWCaptureSpy.h │ │ ├── KWChangeMatcher.h │ │ ├── KWConformToProtocolMatcher.h │ │ ├── KWContainMatcher.h │ │ ├── KWContainStringMatcher.h │ │ ├── KWContextNode.h │ │ ├── KWCountType.h │ │ ├── KWDeviceInfo.h │ │ ├── KWEqualMatcher.h │ │ ├── KWExample.h │ │ ├── KWExampleDelegate.h │ │ ├── KWExampleNode.h │ │ ├── KWExampleNodeVisitor.h │ │ ├── KWExampleSuite.h │ │ ├── KWExampleSuiteBuilder.h │ │ ├── KWExistVerifier.h │ │ ├── KWExpectationType.h │ │ ├── KWFailure.h │ │ ├── KWFormatter.h │ │ ├── KWFutureObject.h │ │ ├── KWGenericMatchEvaluator.h │ │ ├── KWGenericMatcher.h │ │ ├── KWGenericMatchingAdditions.h │ │ ├── KWHaveMatcher.h │ │ ├── KWHaveValueMatcher.h │ │ ├── KWInequalityMatcher.h │ │ ├── KWIntercept.h │ │ ├── KWInvocationCapturer.h │ │ ├── KWItNode.h │ │ ├── KWLet.h │ │ ├── KWLetNode.h │ │ ├── KWMatchVerifier.h │ │ ├── KWMatcher.h │ │ ├── KWMatcherFactory.h │ │ ├── KWMatchers.h │ │ ├── KWMatching.h │ │ ├── KWMessagePattern.h │ │ ├── KWMessageSpying.h │ │ ├── KWMessageTracker.h │ │ ├── KWMock.h │ │ ├── KWNilMatcher.h │ │ ├── KWNotificationMatcher.h │ │ ├── KWNull.h │ │ ├── KWObjCUtilities.h │ │ ├── KWPendingNode.h │ │ ├── KWProbe.h │ │ ├── KWProbePoller.h │ │ ├── KWReceiveMatcher.h │ │ ├── KWRegisterMatchersNode.h │ │ ├── KWRegularExpressionPatternMatcher.h │ │ ├── KWReporting.h │ │ ├── KWRespondToSelectorMatcher.h │ │ ├── KWSpec.h │ │ ├── KWStringContainsMatcher.h │ │ ├── KWStringPrefixMatcher.h │ │ ├── KWStringUtilities.h │ │ ├── KWStub.h │ │ ├── KWSuiteConfigurationBase.h │ │ ├── KWSymbolicator.h │ │ ├── KWUserDefinedMatcher.h │ │ ├── KWValue.h │ │ ├── KWVerifying.h │ │ ├── KWWorkarounds.h │ │ ├── Kiwi.h │ │ ├── KiwiBlockMacros.h │ │ ├── KiwiConfiguration.h │ │ ├── KiwiMacros.h │ │ ├── NSInvocation+KiwiAdditions.h │ │ ├── NSInvocation+OCMAdditions.h │ │ ├── NSMethodSignature+KiwiAdditions.h │ │ ├── NSNumber+KiwiAdditions.h │ │ ├── NSObject+KiwiMockAdditions.h │ │ ├── NSObject+KiwiSpyAdditions.h │ │ ├── NSObject+KiwiStubAdditions.h │ │ ├── NSObject+KiwiVerifierAdditions.h │ │ ├── NSProxy+KiwiVerifierAdditions.h │ │ └── NSValue+KiwiAdditions.h │ │ ├── Mantle │ │ ├── EXTKeyPathCoding.h │ │ ├── EXTRuntimeExtensions.h │ │ ├── EXTScope.h │ │ ├── MTLJSONAdapter.h │ │ ├── MTLManagedObjectAdapter.h │ │ ├── MTLModel+NSCoding.h │ │ ├── MTLModel.h │ │ ├── MTLReflection.h │ │ ├── MTLValueTransformer.h │ │ ├── Mantle.h │ │ ├── NSArray+MTLManipulationAdditions.h │ │ ├── NSDictionary+MTLManipulationAdditions.h │ │ ├── NSError+MTLModelException.h │ │ ├── NSObject+MTLComparisonAdditions.h │ │ ├── NSValueTransformer+MTLInversionAdditions.h │ │ ├── NSValueTransformer+MTLPredefinedTransformerAdditions.h │ │ └── metamacros.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 │ │ ├── RACKVOProxy.h │ │ ├── RACKVOTrampoline.h │ │ ├── RACMulticastConnection.h │ │ ├── RACObjCRuntime.h │ │ ├── RACPassthroughSubscriber.h │ │ ├── RACQueueScheduler+Subclass.h │ │ ├── RACQueueScheduler.h │ │ ├── RACReplaySubject.h │ │ ├── RACReturnSignal.h │ │ ├── RACScheduler+Subclass.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 │ │ └── TPKeyboardAvoiding │ │ ├── TPKeyboardAvoidingCollectionView.h │ │ ├── TPKeyboardAvoidingScrollView.h │ │ ├── TPKeyboardAvoidingTableView.h │ │ └── UIScrollView+TPKeyboardAvoidingAdditions.h ├── Kiwi │ ├── Classes │ │ ├── Config │ │ │ ├── KWAllTestsSuite.m │ │ │ ├── KWSuiteConfigurationBase.h │ │ │ └── KWSuiteConfigurationBase.m │ │ ├── Core │ │ │ ├── KWAny.h │ │ │ ├── KWAny.m │ │ │ ├── KWBlock.h │ │ │ ├── KWBlock.m │ │ │ ├── KWCallSite.h │ │ │ ├── KWCallSite.m │ │ │ ├── KWCaptureSpy.h │ │ │ ├── KWCaptureSpy.m │ │ │ ├── KWCountType.h │ │ │ ├── KWDeviceInfo.h │ │ │ ├── KWDeviceInfo.m │ │ │ ├── KWExample.h │ │ │ ├── KWExample.m │ │ │ ├── KWExampleDelegate.h │ │ │ ├── KWExampleNodeVisitor.h │ │ │ ├── KWExampleSuite.h │ │ │ ├── KWExampleSuite.m │ │ │ ├── KWExampleSuiteBuilder.h │ │ │ ├── KWExampleSuiteBuilder.m │ │ │ ├── KWExpectationType.h │ │ │ ├── KWFailure.h │ │ │ ├── KWFailure.m │ │ │ ├── KWFormatter.h │ │ │ ├── KWFormatter.m │ │ │ ├── KWFutureObject.h │ │ │ ├── KWFutureObject.m │ │ │ ├── KWInvocationCapturer.h │ │ │ ├── KWInvocationCapturer.m │ │ │ ├── KWLet.h │ │ │ ├── KWMatcher.h │ │ │ ├── KWMatcher.m │ │ │ ├── KWMatcherFactory.h │ │ │ ├── KWMatcherFactory.m │ │ │ ├── KWMatchers.h │ │ │ ├── KWMatchers.m │ │ │ ├── KWMatching.h │ │ │ ├── KWMessagePattern.h │ │ │ ├── KWMessagePattern.m │ │ │ ├── KWMessageSpying.h │ │ │ ├── KWMessageTracker.h │ │ │ ├── KWMessageTracker.m │ │ │ ├── KWNull.h │ │ │ ├── KWNull.m │ │ │ ├── KWObjCUtilities.h │ │ │ ├── KWObjCUtilities.m │ │ │ ├── KWProbe.h │ │ │ ├── KWProbePoller.h │ │ │ ├── KWProbePoller.m │ │ │ ├── KWReporting.h │ │ │ ├── KWSpec.h │ │ │ ├── KWSpec.m │ │ │ ├── KWStringUtilities.h │ │ │ ├── KWStringUtilities.m │ │ │ ├── KWSymbolicator.h │ │ │ ├── KWSymbolicator.m │ │ │ ├── KWValue.h │ │ │ ├── KWValue.m │ │ │ ├── KWWorkarounds.h │ │ │ ├── KWWorkarounds.m │ │ │ ├── Kiwi.h │ │ │ ├── KiwiBlockMacros.h │ │ │ ├── KiwiConfiguration.h │ │ │ ├── KiwiMacros.h │ │ │ ├── NSInvocation+KiwiAdditions.h │ │ │ ├── NSInvocation+KiwiAdditions.m │ │ │ ├── NSInvocation+OCMAdditions.h │ │ │ ├── NSInvocation+OCMAdditions.m │ │ │ ├── NSMethodSignature+KiwiAdditions.h │ │ │ ├── NSMethodSignature+KiwiAdditions.m │ │ │ ├── NSNumber+KiwiAdditions.h │ │ │ ├── NSNumber+KiwiAdditions.m │ │ │ ├── NSObject+KiwiSpyAdditions.h │ │ │ ├── NSObject+KiwiSpyAdditions.m │ │ │ ├── NSObject+KiwiVerifierAdditions.h │ │ │ ├── NSObject+KiwiVerifierAdditions.m │ │ │ ├── NSProxy+KiwiVerifierAdditions.h │ │ │ ├── NSProxy+KiwiVerifierAdditions.m │ │ │ ├── NSValue+KiwiAdditions.h │ │ │ └── NSValue+KiwiAdditions.m │ │ ├── Matchers │ │ │ ├── KWBeBetweenMatcher.h │ │ │ ├── KWBeBetweenMatcher.m │ │ │ ├── KWBeEmptyMatcher.h │ │ │ ├── KWBeEmptyMatcher.m │ │ │ ├── KWBeIdenticalToMatcher.h │ │ │ ├── KWBeIdenticalToMatcher.m │ │ │ ├── KWBeKindOfClassMatcher.h │ │ │ ├── KWBeKindOfClassMatcher.m │ │ │ ├── KWBeMemberOfClassMatcher.h │ │ │ ├── KWBeMemberOfClassMatcher.m │ │ │ ├── KWBeSubclassOfClassMatcher.h │ │ │ ├── KWBeSubclassOfClassMatcher.m │ │ │ ├── KWBeTrueMatcher.h │ │ │ ├── KWBeTrueMatcher.m │ │ │ ├── KWBeWithinMatcher.h │ │ │ ├── KWBeWithinMatcher.m │ │ │ ├── KWBeZeroMatcher.h │ │ │ ├── KWBeZeroMatcher.m │ │ │ ├── KWBlockRaiseMatcher.h │ │ │ ├── KWBlockRaiseMatcher.m │ │ │ ├── KWChangeMatcher.h │ │ │ ├── KWChangeMatcher.m │ │ │ ├── KWConformToProtocolMatcher.h │ │ │ ├── KWConformToProtocolMatcher.m │ │ │ ├── KWContainMatcher.h │ │ │ ├── KWContainMatcher.m │ │ │ ├── KWContainStringMatcher.h │ │ │ ├── KWContainStringMatcher.m │ │ │ ├── KWEqualMatcher.h │ │ │ ├── KWEqualMatcher.m │ │ │ ├── KWGenericMatchEvaluator.h │ │ │ ├── KWGenericMatchEvaluator.m │ │ │ ├── KWGenericMatcher.h │ │ │ ├── KWGenericMatcher.m │ │ │ ├── KWGenericMatchingAdditions.h │ │ │ ├── KWGenericMatchingAdditions.m │ │ │ ├── KWHaveMatcher.h │ │ │ ├── KWHaveMatcher.m │ │ │ ├── KWHaveValueMatcher.h │ │ │ ├── KWHaveValueMatcher.m │ │ │ ├── KWInequalityMatcher.h │ │ │ ├── KWInequalityMatcher.m │ │ │ ├── KWNilMatcher.h │ │ │ ├── KWNilMatcher.m │ │ │ ├── KWNotificationMatcher.h │ │ │ ├── KWNotificationMatcher.m │ │ │ ├── KWReceiveMatcher.h │ │ │ ├── KWReceiveMatcher.m │ │ │ ├── KWRegularExpressionPatternMatcher.h │ │ │ ├── KWRegularExpressionPatternMatcher.m │ │ │ ├── KWRespondToSelectorMatcher.h │ │ │ ├── KWRespondToSelectorMatcher.m │ │ │ ├── KWStringContainsMatcher.h │ │ │ ├── KWStringContainsMatcher.m │ │ │ ├── KWStringPrefixMatcher.h │ │ │ ├── KWStringPrefixMatcher.m │ │ │ ├── KWUserDefinedMatcher.h │ │ │ └── KWUserDefinedMatcher.m │ │ ├── Mocking │ │ │ ├── KWMock.h │ │ │ ├── KWMock.m │ │ │ ├── NSObject+KiwiMockAdditions.h │ │ │ └── NSObject+KiwiMockAdditions.m │ │ ├── Nodes │ │ │ ├── KWAfterAllNode.h │ │ │ ├── KWAfterAllNode.m │ │ │ ├── KWAfterEachNode.h │ │ │ ├── KWAfterEachNode.m │ │ │ ├── KWBeforeAllNode.h │ │ │ ├── KWBeforeAllNode.m │ │ │ ├── KWBeforeEachNode.h │ │ │ ├── KWBeforeEachNode.m │ │ │ ├── KWBlockNode.h │ │ │ ├── KWBlockNode.m │ │ │ ├── KWContextNode.h │ │ │ ├── KWContextNode.m │ │ │ ├── KWExampleNode.h │ │ │ ├── KWItNode.h │ │ │ ├── KWItNode.m │ │ │ ├── KWLetNode.h │ │ │ ├── KWLetNode.m │ │ │ ├── KWPendingNode.h │ │ │ ├── KWPendingNode.m │ │ │ ├── KWRegisterMatchersNode.h │ │ │ └── KWRegisterMatchersNode.m │ │ ├── Stubbing │ │ │ ├── KWIntercept.h │ │ │ ├── KWIntercept.m │ │ │ ├── KWStub.h │ │ │ ├── KWStub.m │ │ │ ├── NSObject+KiwiStubAdditions.h │ │ │ └── NSObject+KiwiStubAdditions.m │ │ └── Verifiers │ │ │ ├── KWAsyncVerifier.h │ │ │ ├── KWAsyncVerifier.m │ │ │ ├── KWExistVerifier.h │ │ │ ├── KWExistVerifier.m │ │ │ ├── KWMatchVerifier.h │ │ │ ├── KWMatchVerifier.m │ │ │ └── KWVerifying.h │ ├── License.txt │ └── Readme.md ├── Manifest.lock ├── Mantle │ ├── LICENSE.md │ ├── Mantle │ │ ├── MTLJSONAdapter.h │ │ ├── MTLJSONAdapter.m │ │ ├── MTLManagedObjectAdapter.h │ │ ├── MTLManagedObjectAdapter.m │ │ ├── MTLModel+NSCoding.h │ │ ├── MTLModel+NSCoding.m │ │ ├── MTLModel.h │ │ ├── MTLModel.m │ │ ├── MTLReflection.h │ │ ├── MTLReflection.m │ │ ├── MTLValueTransformer.h │ │ ├── MTLValueTransformer.m │ │ ├── Mantle.h │ │ ├── NSArray+MTLManipulationAdditions.h │ │ ├── NSArray+MTLManipulationAdditions.m │ │ ├── NSDictionary+MTLManipulationAdditions.h │ │ ├── NSDictionary+MTLManipulationAdditions.m │ │ ├── NSError+MTLModelException.h │ │ ├── NSError+MTLModelException.m │ │ ├── NSObject+MTLComparisonAdditions.h │ │ ├── NSObject+MTLComparisonAdditions.m │ │ ├── NSValueTransformer+MTLInversionAdditions.h │ │ ├── NSValueTransformer+MTLInversionAdditions.m │ │ ├── NSValueTransformer+MTLPredefinedTransformerAdditions.h │ │ ├── NSValueTransformer+MTLPredefinedTransformerAdditions.m │ │ └── extobjc │ │ │ ├── EXTKeyPathCoding.h │ │ │ ├── EXTRuntimeExtensions.h │ │ │ ├── EXTRuntimeExtensions.m │ │ │ ├── EXTScope.h │ │ │ ├── EXTScope.m │ │ │ └── metamacros.h │ └── README.md ├── Pods.xcodeproj │ └── project.pbxproj ├── ReactiveCocoa │ ├── LICENSE.md │ ├── README.md │ └── 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 │ │ ├── RACKVOProxy.h │ │ ├── RACKVOProxy.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+Subclass.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 ├── TPKeyboardAvoiding │ ├── LICENSE.txt │ ├── README.md │ └── TPKeyboardAvoiding │ │ ├── TPKeyboardAvoidingCollectionView.h │ │ ├── TPKeyboardAvoidingCollectionView.m │ │ ├── TPKeyboardAvoidingScrollView.h │ │ ├── TPKeyboardAvoidingScrollView.m │ │ ├── TPKeyboardAvoidingTableView.h │ │ ├── TPKeyboardAvoidingTableView.m │ │ ├── UIScrollView+TPKeyboardAvoidingAdditions.h │ │ └── UIScrollView+TPKeyboardAvoidingAdditions.m └── Target Support Files │ ├── Pods-AFNetworking │ ├── Pods-AFNetworking-Private.xcconfig │ ├── Pods-AFNetworking-dummy.m │ ├── Pods-AFNetworking-prefix.pch │ └── Pods-AFNetworking.xcconfig │ ├── Pods-DesignerNewsForObjcTests-Kiwi │ ├── Pods-DesignerNewsForObjcTests-Kiwi-Private.xcconfig │ ├── Pods-DesignerNewsForObjcTests-Kiwi-dummy.m │ ├── Pods-DesignerNewsForObjcTests-Kiwi-prefix.pch │ └── Pods-DesignerNewsForObjcTests-Kiwi.xcconfig │ ├── Pods-DesignerNewsForObjcTests │ ├── Pods-DesignerNewsForObjcTests-acknowledgements.markdown │ ├── Pods-DesignerNewsForObjcTests-acknowledgements.plist │ ├── Pods-DesignerNewsForObjcTests-dummy.m │ ├── Pods-DesignerNewsForObjcTests-environment.h │ ├── Pods-DesignerNewsForObjcTests-resources.sh │ ├── Pods-DesignerNewsForObjcTests.debug.xcconfig │ └── Pods-DesignerNewsForObjcTests.release.xcconfig │ ├── Pods-Mantle │ ├── Pods-Mantle-Private.xcconfig │ ├── Pods-Mantle-dummy.m │ ├── Pods-Mantle-prefix.pch │ └── Pods-Mantle.xcconfig │ ├── Pods-ReactiveCocoa │ ├── Pods-ReactiveCocoa-Private.xcconfig │ ├── Pods-ReactiveCocoa-dummy.m │ ├── Pods-ReactiveCocoa-prefix.pch │ └── Pods-ReactiveCocoa.xcconfig │ ├── Pods-ReactiveViewModel │ ├── Pods-ReactiveViewModel-Private.xcconfig │ ├── Pods-ReactiveViewModel-dummy.m │ ├── Pods-ReactiveViewModel-prefix.pch │ └── Pods-ReactiveViewModel.xcconfig │ ├── Pods-TPKeyboardAvoiding │ ├── Pods-TPKeyboardAvoiding-Private.xcconfig │ ├── Pods-TPKeyboardAvoiding-dummy.m │ ├── Pods-TPKeyboardAvoiding-prefix.pch │ └── Pods-TPKeyboardAvoiding.xcconfig │ └── Pods │ ├── Pods-acknowledgements.markdown │ ├── Pods-acknowledgements.plist │ ├── Pods-dummy.m │ ├── Pods-environment.h │ ├── Pods-resources.sh │ ├── Pods.debug.xcconfig │ └── Pods.release.xcconfig └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/.gitignore -------------------------------------------------------------------------------- /DesignerNewsForObjc.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/DesignerNewsForObjc.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /DesignerNewsForObjc.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/DesignerNewsForObjc.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /DesignerNewsForObjc/AppDelegate/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/DesignerNewsForObjc/AppDelegate/AppDelegate.h -------------------------------------------------------------------------------- /DesignerNewsForObjc/AppDelegate/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/DesignerNewsForObjc/AppDelegate/AppDelegate.m -------------------------------------------------------------------------------- /DesignerNewsForObjc/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/DesignerNewsForObjc/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /DesignerNewsForObjc/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/DesignerNewsForObjc/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /DesignerNewsForObjc/General/Network/DesignerNewsURL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/DesignerNewsForObjc/General/Network/DesignerNewsURL.h -------------------------------------------------------------------------------- /DesignerNewsForObjc/General/Network/DesignerNewsURL.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/DesignerNewsForObjc/General/Network/DesignerNewsURL.m -------------------------------------------------------------------------------- /DesignerNewsForObjc/General/Persistence/LocalStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/DesignerNewsForObjc/General/Persistence/LocalStore.h -------------------------------------------------------------------------------- /DesignerNewsForObjc/General/Persistence/LocalStore.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/DesignerNewsForObjc/General/Persistence/LocalStore.m -------------------------------------------------------------------------------- /DesignerNewsForObjc/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/DesignerNewsForObjc/Info.plist -------------------------------------------------------------------------------- /DesignerNewsForObjc/Sections/Comment/Comment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/DesignerNewsForObjc/Sections/Comment/Comment.h -------------------------------------------------------------------------------- /DesignerNewsForObjc/Sections/Comment/Comment.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/DesignerNewsForObjc/Sections/Comment/Comment.m -------------------------------------------------------------------------------- /DesignerNewsForObjc/Sections/Login/LoginClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/DesignerNewsForObjc/Sections/Login/LoginClient.h -------------------------------------------------------------------------------- /DesignerNewsForObjc/Sections/Login/LoginClient.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/DesignerNewsForObjc/Sections/Login/LoginClient.m -------------------------------------------------------------------------------- /DesignerNewsForObjc/Sections/Login/LoginViewModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/DesignerNewsForObjc/Sections/Login/LoginViewModel.h -------------------------------------------------------------------------------- /DesignerNewsForObjc/Sections/Login/LoginViewModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/DesignerNewsForObjc/Sections/Login/LoginViewModel.m -------------------------------------------------------------------------------- /DesignerNewsForObjc/Sections/Menu/MenuViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/DesignerNewsForObjc/Sections/Menu/MenuViewController.h -------------------------------------------------------------------------------- /DesignerNewsForObjc/Sections/Menu/MenuViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/DesignerNewsForObjc/Sections/Menu/MenuViewController.m -------------------------------------------------------------------------------- /DesignerNewsForObjc/Sections/Story/Story.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/DesignerNewsForObjc/Sections/Story/Story.h -------------------------------------------------------------------------------- /DesignerNewsForObjc/Sections/Story/Story.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/DesignerNewsForObjc/Sections/Story/Story.m -------------------------------------------------------------------------------- /DesignerNewsForObjc/Sections/Story/StoryClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/DesignerNewsForObjc/Sections/Story/StoryClient.h -------------------------------------------------------------------------------- /DesignerNewsForObjc/Sections/Story/StoryClient.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/DesignerNewsForObjc/Sections/Story/StoryClient.m -------------------------------------------------------------------------------- /DesignerNewsForObjc/Sections/Story/StoryViewModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/DesignerNewsForObjc/Sections/Story/StoryViewModel.h -------------------------------------------------------------------------------- /DesignerNewsForObjc/Sections/Story/StoryViewModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/DesignerNewsForObjc/Sections/Story/StoryViewModel.m -------------------------------------------------------------------------------- /DesignerNewsForObjc/Sections/Web/WebViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/DesignerNewsForObjc/Sections/Web/WebViewController.h -------------------------------------------------------------------------------- /DesignerNewsForObjc/Sections/Web/WebViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/DesignerNewsForObjc/Sections/Web/WebViewController.m -------------------------------------------------------------------------------- /DesignerNewsForObjc/Vendors/Spring/AsyncButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/DesignerNewsForObjc/Vendors/Spring/AsyncButton.swift -------------------------------------------------------------------------------- /DesignerNewsForObjc/Vendors/Spring/AutoTextView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/DesignerNewsForObjc/Vendors/Spring/AutoTextView.swift -------------------------------------------------------------------------------- /DesignerNewsForObjc/Vendors/Spring/BlurView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/DesignerNewsForObjc/Vendors/Spring/BlurView.swift -------------------------------------------------------------------------------- /DesignerNewsForObjc/Vendors/Spring/ImageLoader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/DesignerNewsForObjc/Vendors/Spring/ImageLoader.swift -------------------------------------------------------------------------------- /DesignerNewsForObjc/Vendors/Spring/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/DesignerNewsForObjc/Vendors/Spring/Info.plist -------------------------------------------------------------------------------- /DesignerNewsForObjc/Vendors/Spring/LoadingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/DesignerNewsForObjc/Vendors/Spring/LoadingView.swift -------------------------------------------------------------------------------- /DesignerNewsForObjc/Vendors/Spring/LoadingView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/DesignerNewsForObjc/Vendors/Spring/LoadingView.xib -------------------------------------------------------------------------------- /DesignerNewsForObjc/Vendors/Spring/Misc.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/DesignerNewsForObjc/Vendors/Spring/Misc.swift -------------------------------------------------------------------------------- /DesignerNewsForObjc/Vendors/Spring/SoundPlayer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/DesignerNewsForObjc/Vendors/Spring/SoundPlayer.swift -------------------------------------------------------------------------------- /DesignerNewsForObjc/Vendors/Spring/Spring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/DesignerNewsForObjc/Vendors/Spring/Spring.h -------------------------------------------------------------------------------- /DesignerNewsForObjc/Vendors/Spring/Spring.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/DesignerNewsForObjc/Vendors/Spring/Spring.swift -------------------------------------------------------------------------------- /DesignerNewsForObjc/Vendors/Spring/SpringButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/DesignerNewsForObjc/Vendors/Spring/SpringButton.swift -------------------------------------------------------------------------------- /DesignerNewsForObjc/Vendors/Spring/SpringLabel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/DesignerNewsForObjc/Vendors/Spring/SpringLabel.swift -------------------------------------------------------------------------------- /DesignerNewsForObjc/Vendors/Spring/SpringView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/DesignerNewsForObjc/Vendors/Spring/SpringView.swift -------------------------------------------------------------------------------- /DesignerNewsForObjc/Vendors/Spring/UnwindSegue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/DesignerNewsForObjc/Vendors/Spring/UnwindSegue.swift -------------------------------------------------------------------------------- /DesignerNewsForObjc/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/DesignerNewsForObjc/main.m -------------------------------------------------------------------------------- /DesignerNewsForObjcTests/Helpers/TestHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/DesignerNewsForObjcTests/Helpers/TestHelper.h -------------------------------------------------------------------------------- /DesignerNewsForObjcTests/Helpers/TestHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/DesignerNewsForObjcTests/Helpers/TestHelper.m -------------------------------------------------------------------------------- /DesignerNewsForObjcTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/DesignerNewsForObjcTests/Info.plist -------------------------------------------------------------------------------- /DesignerNewsForObjcTests/JSON/Login/login_conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/DesignerNewsForObjcTests/JSON/Login/login_conf.json -------------------------------------------------------------------------------- /DesignerNewsForObjcTests/JSON/Story/stories_conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/DesignerNewsForObjcTests/JSON/Story/stories_conf.json -------------------------------------------------------------------------------- /DesignerNewsForObjcTests/JSON/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/DesignerNewsForObjcTests/JSON/settings.json -------------------------------------------------------------------------------- /DesignerNewsForObjcTests/Sections/Story/StorySpec.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/DesignerNewsForObjcTests/Sections/Story/StorySpec.m -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/LICENSE -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Podfile.lock -------------------------------------------------------------------------------- /Pods/AFNetworking/AFNetworking/AFHTTPSessionManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/AFNetworking/AFNetworking/AFHTTPSessionManager.h -------------------------------------------------------------------------------- /Pods/AFNetworking/AFNetworking/AFHTTPSessionManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/AFNetworking/AFNetworking/AFHTTPSessionManager.m -------------------------------------------------------------------------------- /Pods/AFNetworking/AFNetworking/AFNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/AFNetworking/AFNetworking/AFNetworking.h -------------------------------------------------------------------------------- /Pods/AFNetworking/AFNetworking/AFSecurityPolicy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/AFNetworking/AFNetworking/AFSecurityPolicy.h -------------------------------------------------------------------------------- /Pods/AFNetworking/AFNetworking/AFSecurityPolicy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/AFNetworking/AFNetworking/AFSecurityPolicy.m -------------------------------------------------------------------------------- /Pods/AFNetworking/AFNetworking/AFURLSessionManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/AFNetworking/AFNetworking/AFURLSessionManager.h -------------------------------------------------------------------------------- /Pods/AFNetworking/AFNetworking/AFURLSessionManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/AFNetworking/AFNetworking/AFURLSessionManager.m -------------------------------------------------------------------------------- /Pods/AFNetworking/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/AFNetworking/LICENSE -------------------------------------------------------------------------------- /Pods/AFNetworking/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/AFNetworking/README.md -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/AFHTTPRequestOperation.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFHTTPRequestOperation.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/AFHTTPRequestOperationManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFHTTPRequestOperationManager.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/AFHTTPSessionManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFHTTPSessionManager.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/AFNetworkActivityIndicatorManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/AFNetworkActivityIndicatorManager.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/AFNetworkReachabilityManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFNetworkReachabilityManager.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/AFSecurityPolicy.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFSecurityPolicy.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/AFURLConnectionOperation.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLConnectionOperation.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/AFURLRequestSerialization.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLRequestSerialization.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/AFURLResponseSerialization.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLResponseSerialization.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/AFURLSessionManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLSessionManager.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/UIActivityIndicatorView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/UIAlertView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIAlertView+AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/UIButton+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIButton+AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/UIImageView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIImageView+AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/UIKit+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIKit+AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/UIProgressView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIProgressView+AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/UIRefreshControl+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIRefreshControl+AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/UIWebView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIWebView+AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Kiwi/KWAfterAllNode.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Nodes/KWAfterAllNode.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Kiwi/KWAfterEachNode.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Nodes/KWAfterEachNode.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Kiwi/KWAny.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWAny.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Kiwi/KWAsyncVerifier.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Verifiers/KWAsyncVerifier.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Kiwi/KWBeBetweenMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWBeBetweenMatcher.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Kiwi/KWBeEmptyMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWBeEmptyMatcher.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Kiwi/KWBeIdenticalToMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWBeIdenticalToMatcher.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Kiwi/KWBeKindOfClassMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWBeKindOfClassMatcher.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Kiwi/KWBeMemberOfClassMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWBeMemberOfClassMatcher.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Kiwi/KWBeSubclassOfClassMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWBeSubclassOfClassMatcher.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Kiwi/KWBeTrueMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWBeTrueMatcher.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Kiwi/KWBeWithinMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWBeWithinMatcher.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Kiwi/KWBeZeroMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWBeZeroMatcher.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Kiwi/KWBeforeAllNode.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Nodes/KWBeforeAllNode.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Kiwi/KWBeforeEachNode.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Nodes/KWBeforeEachNode.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Kiwi/KWBlock.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWBlock.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Kiwi/KWBlockNode.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Nodes/KWBlockNode.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Kiwi/KWBlockRaiseMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWBlockRaiseMatcher.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Kiwi/KWCallSite.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWCallSite.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Kiwi/KWCaptureSpy.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWCaptureSpy.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Kiwi/KWChangeMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWChangeMatcher.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Kiwi/KWConformToProtocolMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWConformToProtocolMatcher.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Kiwi/KWContainMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWContainMatcher.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Kiwi/KWContainStringMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWContainStringMatcher.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Kiwi/KWContextNode.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Nodes/KWContextNode.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Kiwi/KWCountType.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWCountType.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Kiwi/KWDeviceInfo.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWDeviceInfo.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Kiwi/KWEqualMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWEqualMatcher.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Kiwi/KWExample.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWExample.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Kiwi/KWExampleDelegate.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWExampleDelegate.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Kiwi/KWExampleNode.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Nodes/KWExampleNode.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Kiwi/KWExampleNodeVisitor.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWExampleNodeVisitor.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Kiwi/KWExampleSuite.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWExampleSuite.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Kiwi/KWExampleSuiteBuilder.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWExampleSuiteBuilder.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Kiwi/KWExistVerifier.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Verifiers/KWExistVerifier.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Kiwi/KWExpectationType.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWExpectationType.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Kiwi/KWFailure.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWFailure.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Kiwi/KWFormatter.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWFormatter.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Kiwi/KWFutureObject.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWFutureObject.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Kiwi/KWGenericMatchEvaluator.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWGenericMatchEvaluator.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Kiwi/KWGenericMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWGenericMatcher.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Kiwi/KWGenericMatchingAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWGenericMatchingAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Kiwi/KWHaveMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWHaveMatcher.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Kiwi/KWHaveValueMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWHaveValueMatcher.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Kiwi/KWInequalityMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWInequalityMatcher.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Kiwi/KWIntercept.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Stubbing/KWIntercept.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Kiwi/KWInvocationCapturer.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWInvocationCapturer.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Kiwi/KWItNode.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Nodes/KWItNode.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Kiwi/KWLet.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWLet.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Kiwi/KWLetNode.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Nodes/KWLetNode.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Kiwi/KWMatchVerifier.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Verifiers/KWMatchVerifier.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Kiwi/KWMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWMatcher.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Kiwi/KWMatcherFactory.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWMatcherFactory.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Kiwi/KWMatchers.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWMatchers.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Kiwi/KWMatching.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWMatching.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Kiwi/KWMessagePattern.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWMessagePattern.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Kiwi/KWMessageSpying.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWMessageSpying.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Kiwi/KWMessageTracker.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWMessageTracker.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Kiwi/KWMock.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Mocking/KWMock.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Kiwi/KWNilMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWNilMatcher.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Kiwi/KWNotificationMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWNotificationMatcher.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Kiwi/KWNull.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWNull.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Kiwi/KWObjCUtilities.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWObjCUtilities.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Kiwi/KWPendingNode.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Nodes/KWPendingNode.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Kiwi/KWProbe.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWProbe.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Kiwi/KWProbePoller.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWProbePoller.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Kiwi/KWReceiveMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWReceiveMatcher.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Kiwi/KWRegisterMatchersNode.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Nodes/KWRegisterMatchersNode.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Kiwi/KWRegularExpressionPatternMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWRegularExpressionPatternMatcher.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Kiwi/KWReporting.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWReporting.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Kiwi/KWRespondToSelectorMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWRespondToSelectorMatcher.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Kiwi/KWSpec.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWSpec.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Kiwi/KWStringContainsMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWStringContainsMatcher.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Kiwi/KWStringPrefixMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWStringPrefixMatcher.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Kiwi/KWStringUtilities.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWStringUtilities.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Kiwi/KWStub.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Stubbing/KWStub.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Kiwi/KWSuiteConfigurationBase.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Config/KWSuiteConfigurationBase.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Kiwi/KWSymbolicator.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWSymbolicator.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Kiwi/KWUserDefinedMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWUserDefinedMatcher.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Kiwi/KWValue.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWValue.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Kiwi/KWVerifying.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Verifiers/KWVerifying.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Kiwi/KWWorkarounds.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWWorkarounds.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Kiwi/Kiwi.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/Kiwi.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Kiwi/KiwiBlockMacros.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KiwiBlockMacros.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Kiwi/KiwiConfiguration.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KiwiConfiguration.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Kiwi/KiwiMacros.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KiwiMacros.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Kiwi/NSInvocation+KiwiAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/NSInvocation+KiwiAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Kiwi/NSInvocation+OCMAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/NSInvocation+OCMAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Kiwi/NSMethodSignature+KiwiAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/NSMethodSignature+KiwiAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Kiwi/NSNumber+KiwiAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/NSNumber+KiwiAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Kiwi/NSObject+KiwiMockAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Mocking/NSObject+KiwiMockAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Kiwi/NSObject+KiwiSpyAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/NSObject+KiwiSpyAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Kiwi/NSObject+KiwiStubAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Stubbing/NSObject+KiwiStubAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Kiwi/NSObject+KiwiVerifierAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/NSObject+KiwiVerifierAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Kiwi/NSProxy+KiwiVerifierAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/NSProxy+KiwiVerifierAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Kiwi/NSValue+KiwiAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/NSValue+KiwiAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Mantle/EXTKeyPathCoding.h: -------------------------------------------------------------------------------- 1 | ../../../Mantle/Mantle/extobjc/EXTKeyPathCoding.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Mantle/EXTRuntimeExtensions.h: -------------------------------------------------------------------------------- 1 | ../../../Mantle/Mantle/extobjc/EXTRuntimeExtensions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Mantle/EXTScope.h: -------------------------------------------------------------------------------- 1 | ../../../Mantle/Mantle/extobjc/EXTScope.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Mantle/MTLJSONAdapter.h: -------------------------------------------------------------------------------- 1 | ../../../Mantle/Mantle/MTLJSONAdapter.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Mantle/MTLManagedObjectAdapter.h: -------------------------------------------------------------------------------- 1 | ../../../Mantle/Mantle/MTLManagedObjectAdapter.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Mantle/MTLModel+NSCoding.h: -------------------------------------------------------------------------------- 1 | ../../../Mantle/Mantle/MTLModel+NSCoding.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Mantle/MTLModel.h: -------------------------------------------------------------------------------- 1 | ../../../Mantle/Mantle/MTLModel.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Mantle/MTLReflection.h: -------------------------------------------------------------------------------- 1 | ../../../Mantle/Mantle/MTLReflection.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Mantle/MTLValueTransformer.h: -------------------------------------------------------------------------------- 1 | ../../../Mantle/Mantle/MTLValueTransformer.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Mantle/Mantle.h: -------------------------------------------------------------------------------- 1 | ../../../Mantle/Mantle/Mantle.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Mantle/NSArray+MTLManipulationAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Mantle/Mantle/NSArray+MTLManipulationAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Mantle/NSDictionary+MTLManipulationAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Mantle/Mantle/NSDictionary+MTLManipulationAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Mantle/NSError+MTLModelException.h: -------------------------------------------------------------------------------- 1 | ../../../Mantle/Mantle/NSError+MTLModelException.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Mantle/NSObject+MTLComparisonAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Mantle/Mantle/NSObject+MTLComparisonAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Mantle/NSValueTransformer+MTLInversionAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Mantle/Mantle/NSValueTransformer+MTLInversionAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Mantle/NSValueTransformer+MTLPredefinedTransformerAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Mantle/Mantle/NSValueTransformer+MTLPredefinedTransformerAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Mantle/metamacros.h: -------------------------------------------------------------------------------- 1 | ../../../Mantle/Mantle/extobjc/metamacros.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveCocoa/NSArray+RACSequenceAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSArray+RACSequenceAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveCocoa/NSData+RACSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSData+RACSupport.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveCocoa/NSDictionary+RACSequenceAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSDictionary+RACSequenceAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveCocoa/NSEnumerator+RACSequenceAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSEnumerator+RACSequenceAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveCocoa/NSFileHandle+RACSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSFileHandle+RACSupport.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveCocoa/NSIndexSet+RACSequenceAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSIndexSet+RACSequenceAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveCocoa/NSInvocation+RACTypeParsing.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSInvocation+RACTypeParsing.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveCocoa/NSNotificationCenter+RACSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSNotificationCenter+RACSupport.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveCocoa/NSObject+RACDeallocating.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSObject+RACDeallocating.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveCocoa/NSObject+RACDescription.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSObject+RACDescription.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveCocoa/NSObject+RACKVOWrapper.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSObject+RACKVOWrapper.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveCocoa/NSObject+RACLifting.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSObject+RACLifting.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveCocoa/NSObject+RACPropertySubscribing.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSObject+RACPropertySubscribing.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveCocoa/NSObject+RACSelectorSignal.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSObject+RACSelectorSignal.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveCocoa/NSOrderedSet+RACSequenceAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSOrderedSet+RACSequenceAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveCocoa/NSSet+RACSequenceAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSSet+RACSequenceAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveCocoa/NSString+RACKeyPathUtilities.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSString+RACKeyPathUtilities.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveCocoa/NSString+RACSequenceAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSString+RACSequenceAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveCocoa/NSString+RACSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSString+RACSupport.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveCocoa/NSURLConnection+RACSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSURLConnection+RACSupport.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveCocoa/NSUserDefaults+RACSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSUserDefaults+RACSupport.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveCocoa/RACArraySequence.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACArraySequence.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveCocoa/RACBacktrace.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACBacktrace.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveCocoa/RACBehaviorSubject.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACBehaviorSubject.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveCocoa/RACBlockTrampoline.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACBlockTrampoline.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveCocoa/RACChannel.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACChannel.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveCocoa/RACCommand.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACCommand.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveCocoa/RACCompoundDisposable.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACCompoundDisposable.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveCocoa/RACDelegateProxy.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACDelegateProxy.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveCocoa/RACDisposable.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACDisposable.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveCocoa/RACDynamicSequence.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACDynamicSequence.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveCocoa/RACDynamicSignal.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACDynamicSignal.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveCocoa/RACEXTKeyPathCoding.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/extobjc/RACEXTKeyPathCoding.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveCocoa/RACEXTRuntimeExtensions.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/extobjc/RACEXTRuntimeExtensions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveCocoa/RACEXTScope.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/extobjc/RACEXTScope.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveCocoa/RACEagerSequence.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACEagerSequence.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveCocoa/RACEmptySequence.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACEmptySequence.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveCocoa/RACEmptySignal.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACEmptySignal.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveCocoa/RACErrorSignal.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACErrorSignal.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveCocoa/RACEvent.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACEvent.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveCocoa/RACGroupedSignal.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACGroupedSignal.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveCocoa/RACImmediateScheduler.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACImmediateScheduler.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveCocoa/RACIndexSetSequence.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACIndexSetSequence.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveCocoa/RACKVOChannel.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACKVOChannel.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveCocoa/RACKVOProxy.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACKVOProxy.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveCocoa/RACKVOTrampoline.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACKVOTrampoline.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveCocoa/RACMulticastConnection+Private.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACMulticastConnection+Private.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveCocoa/RACMulticastConnection.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACMulticastConnection.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveCocoa/RACObjCRuntime.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACObjCRuntime.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveCocoa/RACPassthroughSubscriber.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACPassthroughSubscriber.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveCocoa/RACQueueScheduler+Subclass.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACQueueScheduler+Subclass.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveCocoa/RACQueueScheduler.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACQueueScheduler.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveCocoa/RACReplaySubject.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACReplaySubject.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveCocoa/RACReturnSignal.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACReturnSignal.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveCocoa/RACScheduler+Private.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACScheduler+Private.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveCocoa/RACScheduler+Subclass.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACScheduler+Subclass.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveCocoa/RACScheduler.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACScheduler.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveCocoa/RACScopedDisposable.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACScopedDisposable.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveCocoa/RACSequence.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACSequence.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveCocoa/RACSerialDisposable.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACSerialDisposable.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveCocoa/RACSignal+Operations.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACSignal+Operations.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveCocoa/RACSignal.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACSignal.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveCocoa/RACSignalSequence.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACSignalSequence.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveCocoa/RACStream+Private.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACStream+Private.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveCocoa/RACStream.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACStream.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveCocoa/RACStringSequence.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACStringSequence.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveCocoa/RACSubject.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACSubject.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveCocoa/RACSubscriber+Private.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACSubscriber+Private.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveCocoa/RACSubscriber.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACSubscriber.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveCocoa/RACSubscriptingAssignmentTrampoline.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACSubscriptingAssignmentTrampoline.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveCocoa/RACSubscriptionScheduler.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACSubscriptionScheduler.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveCocoa/RACTargetQueueScheduler.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACTargetQueueScheduler.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveCocoa/RACTestScheduler.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACTestScheduler.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveCocoa/RACTuple.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACTuple.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveCocoa/RACTupleSequence.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACTupleSequence.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveCocoa/RACUnarySequence.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACUnarySequence.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveCocoa/RACUnit.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACUnit.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveCocoa/RACValueTransformer.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACValueTransformer.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveCocoa/RACmetamacros.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/extobjc/RACmetamacros.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveCocoa/ReactiveCocoa.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/ReactiveCocoa.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveCocoa/UIActionSheet+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UIActionSheet+RACSignalSupport.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveCocoa/UIAlertView+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UIAlertView+RACSignalSupport.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveCocoa/UIBarButtonItem+RACCommandSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UIBarButtonItem+RACCommandSupport.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveCocoa/UIButton+RACCommandSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UIButton+RACCommandSupport.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveCocoa/UICollectionReusableView+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UICollectionReusableView+RACSignalSupport.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveCocoa/UIControl+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UIControl+RACSignalSupport.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveCocoa/UIControl+RACSignalSupportPrivate.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UIControl+RACSignalSupportPrivate.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveCocoa/UIDatePicker+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UIDatePicker+RACSignalSupport.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveCocoa/UIGestureRecognizer+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UIGestureRecognizer+RACSignalSupport.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveCocoa/UIImagePickerController+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UIImagePickerController+RACSignalSupport.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveCocoa/UIRefreshControl+RACCommandSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UIRefreshControl+RACCommandSupport.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveCocoa/UISegmentedControl+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UISegmentedControl+RACSignalSupport.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveCocoa/UISlider+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UISlider+RACSignalSupport.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveCocoa/UIStepper+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UIStepper+RACSignalSupport.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveCocoa/UISwitch+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UISwitch+RACSignalSupport.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveCocoa/UITableViewCell+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UITableViewCell+RACSignalSupport.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveCocoa/UITableViewHeaderFooterView+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UITableViewHeaderFooterView+RACSignalSupport.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveCocoa/UITextField+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UITextField+RACSignalSupport.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveCocoa/UITextView+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UITextView+RACSignalSupport.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveViewModel/RVMViewModel.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveViewModel/ReactiveViewModel/RVMViewModel.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ReactiveViewModel/ReactiveViewModel.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveViewModel/ReactiveViewModel/ReactiveViewModel.h -------------------------------------------------------------------------------- /Pods/Headers/Private/TPKeyboardAvoiding/TPKeyboardAvoidingCollectionView.h: -------------------------------------------------------------------------------- 1 | ../../../TPKeyboardAvoiding/TPKeyboardAvoiding/TPKeyboardAvoidingCollectionView.h -------------------------------------------------------------------------------- /Pods/Headers/Private/TPKeyboardAvoiding/TPKeyboardAvoidingScrollView.h: -------------------------------------------------------------------------------- 1 | ../../../TPKeyboardAvoiding/TPKeyboardAvoiding/TPKeyboardAvoidingScrollView.h -------------------------------------------------------------------------------- /Pods/Headers/Private/TPKeyboardAvoiding/TPKeyboardAvoidingTableView.h: -------------------------------------------------------------------------------- 1 | ../../../TPKeyboardAvoiding/TPKeyboardAvoiding/TPKeyboardAvoidingTableView.h -------------------------------------------------------------------------------- /Pods/Headers/Private/TPKeyboardAvoiding/UIScrollView+TPKeyboardAvoidingAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../TPKeyboardAvoiding/TPKeyboardAvoiding/UIScrollView+TPKeyboardAvoidingAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/AFHTTPRequestOperation.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFHTTPRequestOperation.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/AFHTTPRequestOperationManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFHTTPRequestOperationManager.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/AFHTTPSessionManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFHTTPSessionManager.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/AFNetworkActivityIndicatorManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/AFNetworkActivityIndicatorManager.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/AFNetworkReachabilityManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFNetworkReachabilityManager.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/AFSecurityPolicy.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFSecurityPolicy.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/AFURLConnectionOperation.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLConnectionOperation.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/AFURLRequestSerialization.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLRequestSerialization.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/AFURLResponseSerialization.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLResponseSerialization.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/AFURLSessionManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLSessionManager.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/UIActivityIndicatorView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/UIAlertView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIAlertView+AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/UIButton+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIButton+AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/UIImageView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIImageView+AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/UIKit+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIKit+AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/UIProgressView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIProgressView+AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/UIRefreshControl+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIRefreshControl+AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/UIWebView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIWebView+AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Kiwi/KWAfterAllNode.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Nodes/KWAfterAllNode.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Kiwi/KWAfterEachNode.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Nodes/KWAfterEachNode.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Kiwi/KWAny.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWAny.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Kiwi/KWAsyncVerifier.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Verifiers/KWAsyncVerifier.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Kiwi/KWBeBetweenMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWBeBetweenMatcher.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Kiwi/KWBeEmptyMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWBeEmptyMatcher.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Kiwi/KWBeIdenticalToMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWBeIdenticalToMatcher.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Kiwi/KWBeKindOfClassMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWBeKindOfClassMatcher.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Kiwi/KWBeMemberOfClassMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWBeMemberOfClassMatcher.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Kiwi/KWBeSubclassOfClassMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWBeSubclassOfClassMatcher.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Kiwi/KWBeTrueMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWBeTrueMatcher.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Kiwi/KWBeWithinMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWBeWithinMatcher.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Kiwi/KWBeZeroMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWBeZeroMatcher.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Kiwi/KWBeforeAllNode.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Nodes/KWBeforeAllNode.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Kiwi/KWBeforeEachNode.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Nodes/KWBeforeEachNode.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Kiwi/KWBlock.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWBlock.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Kiwi/KWBlockNode.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Nodes/KWBlockNode.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Kiwi/KWBlockRaiseMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWBlockRaiseMatcher.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Kiwi/KWCallSite.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWCallSite.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Kiwi/KWCaptureSpy.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWCaptureSpy.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Kiwi/KWChangeMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWChangeMatcher.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Kiwi/KWConformToProtocolMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWConformToProtocolMatcher.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Kiwi/KWContainMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWContainMatcher.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Kiwi/KWContainStringMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWContainStringMatcher.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Kiwi/KWContextNode.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Nodes/KWContextNode.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Kiwi/KWCountType.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWCountType.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Kiwi/KWDeviceInfo.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWDeviceInfo.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Kiwi/KWEqualMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWEqualMatcher.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Kiwi/KWExample.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWExample.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Kiwi/KWExampleDelegate.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWExampleDelegate.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Kiwi/KWExampleNode.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Nodes/KWExampleNode.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Kiwi/KWExampleNodeVisitor.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWExampleNodeVisitor.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Kiwi/KWExampleSuite.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWExampleSuite.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Kiwi/KWExampleSuiteBuilder.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWExampleSuiteBuilder.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Kiwi/KWExistVerifier.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Verifiers/KWExistVerifier.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Kiwi/KWExpectationType.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWExpectationType.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Kiwi/KWFailure.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWFailure.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Kiwi/KWFormatter.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWFormatter.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Kiwi/KWFutureObject.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWFutureObject.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Kiwi/KWGenericMatchEvaluator.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWGenericMatchEvaluator.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Kiwi/KWGenericMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWGenericMatcher.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Kiwi/KWGenericMatchingAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWGenericMatchingAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Kiwi/KWHaveMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWHaveMatcher.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Kiwi/KWHaveValueMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWHaveValueMatcher.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Kiwi/KWInequalityMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWInequalityMatcher.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Kiwi/KWIntercept.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Stubbing/KWIntercept.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Kiwi/KWInvocationCapturer.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWInvocationCapturer.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Kiwi/KWItNode.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Nodes/KWItNode.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Kiwi/KWLet.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWLet.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Kiwi/KWLetNode.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Nodes/KWLetNode.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Kiwi/KWMatchVerifier.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Verifiers/KWMatchVerifier.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Kiwi/KWMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWMatcher.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Kiwi/KWMatcherFactory.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWMatcherFactory.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Kiwi/KWMatchers.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWMatchers.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Kiwi/KWMatching.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWMatching.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Kiwi/KWMessagePattern.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWMessagePattern.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Kiwi/KWMessageSpying.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWMessageSpying.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Kiwi/KWMessageTracker.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWMessageTracker.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Kiwi/KWMock.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Mocking/KWMock.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Kiwi/KWNilMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWNilMatcher.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Kiwi/KWNotificationMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWNotificationMatcher.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Kiwi/KWNull.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWNull.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Kiwi/KWObjCUtilities.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWObjCUtilities.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Kiwi/KWPendingNode.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Nodes/KWPendingNode.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Kiwi/KWProbe.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWProbe.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Kiwi/KWProbePoller.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWProbePoller.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Kiwi/KWReceiveMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWReceiveMatcher.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Kiwi/KWRegisterMatchersNode.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Nodes/KWRegisterMatchersNode.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Kiwi/KWRegularExpressionPatternMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWRegularExpressionPatternMatcher.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Kiwi/KWReporting.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWReporting.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Kiwi/KWRespondToSelectorMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWRespondToSelectorMatcher.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Kiwi/KWSpec.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWSpec.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Kiwi/KWStringContainsMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWStringContainsMatcher.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Kiwi/KWStringPrefixMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWStringPrefixMatcher.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Kiwi/KWStringUtilities.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWStringUtilities.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Kiwi/KWStub.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Stubbing/KWStub.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Kiwi/KWSuiteConfigurationBase.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Config/KWSuiteConfigurationBase.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Kiwi/KWSymbolicator.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWSymbolicator.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Kiwi/KWUserDefinedMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWUserDefinedMatcher.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Kiwi/KWValue.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWValue.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Kiwi/KWVerifying.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Verifiers/KWVerifying.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Kiwi/KWWorkarounds.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWWorkarounds.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Kiwi/Kiwi.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/Kiwi.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Kiwi/KiwiBlockMacros.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KiwiBlockMacros.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Kiwi/KiwiConfiguration.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KiwiConfiguration.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Kiwi/KiwiMacros.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KiwiMacros.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Kiwi/NSInvocation+KiwiAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/NSInvocation+KiwiAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Kiwi/NSInvocation+OCMAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/NSInvocation+OCMAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Kiwi/NSMethodSignature+KiwiAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/NSMethodSignature+KiwiAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Kiwi/NSNumber+KiwiAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/NSNumber+KiwiAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Kiwi/NSObject+KiwiMockAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Mocking/NSObject+KiwiMockAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Kiwi/NSObject+KiwiSpyAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/NSObject+KiwiSpyAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Kiwi/NSObject+KiwiStubAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Stubbing/NSObject+KiwiStubAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Kiwi/NSObject+KiwiVerifierAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/NSObject+KiwiVerifierAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Kiwi/NSProxy+KiwiVerifierAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/NSProxy+KiwiVerifierAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Kiwi/NSValue+KiwiAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/NSValue+KiwiAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Mantle/EXTKeyPathCoding.h: -------------------------------------------------------------------------------- 1 | ../../../Mantle/Mantle/extobjc/EXTKeyPathCoding.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Mantle/EXTRuntimeExtensions.h: -------------------------------------------------------------------------------- 1 | ../../../Mantle/Mantle/extobjc/EXTRuntimeExtensions.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Mantle/EXTScope.h: -------------------------------------------------------------------------------- 1 | ../../../Mantle/Mantle/extobjc/EXTScope.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Mantle/MTLJSONAdapter.h: -------------------------------------------------------------------------------- 1 | ../../../Mantle/Mantle/MTLJSONAdapter.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Mantle/MTLManagedObjectAdapter.h: -------------------------------------------------------------------------------- 1 | ../../../Mantle/Mantle/MTLManagedObjectAdapter.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Mantle/MTLModel+NSCoding.h: -------------------------------------------------------------------------------- 1 | ../../../Mantle/Mantle/MTLModel+NSCoding.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Mantle/MTLModel.h: -------------------------------------------------------------------------------- 1 | ../../../Mantle/Mantle/MTLModel.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Mantle/MTLReflection.h: -------------------------------------------------------------------------------- 1 | ../../../Mantle/Mantle/MTLReflection.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Mantle/MTLValueTransformer.h: -------------------------------------------------------------------------------- 1 | ../../../Mantle/Mantle/MTLValueTransformer.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Mantle/Mantle.h: -------------------------------------------------------------------------------- 1 | ../../../Mantle/Mantle/Mantle.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Mantle/NSArray+MTLManipulationAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Mantle/Mantle/NSArray+MTLManipulationAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Mantle/NSDictionary+MTLManipulationAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Mantle/Mantle/NSDictionary+MTLManipulationAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Mantle/NSError+MTLModelException.h: -------------------------------------------------------------------------------- 1 | ../../../Mantle/Mantle/NSError+MTLModelException.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Mantle/NSObject+MTLComparisonAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Mantle/Mantle/NSObject+MTLComparisonAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Mantle/NSValueTransformer+MTLInversionAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Mantle/Mantle/NSValueTransformer+MTLInversionAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Mantle/NSValueTransformer+MTLPredefinedTransformerAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Mantle/Mantle/NSValueTransformer+MTLPredefinedTransformerAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Mantle/metamacros.h: -------------------------------------------------------------------------------- 1 | ../../../Mantle/Mantle/extobjc/metamacros.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveCocoa/NSArray+RACSequenceAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSArray+RACSequenceAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveCocoa/NSData+RACSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSData+RACSupport.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveCocoa/NSDictionary+RACSequenceAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSDictionary+RACSequenceAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveCocoa/NSEnumerator+RACSequenceAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSEnumerator+RACSequenceAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveCocoa/NSFileHandle+RACSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSFileHandle+RACSupport.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveCocoa/NSIndexSet+RACSequenceAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSIndexSet+RACSequenceAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveCocoa/NSInvocation+RACTypeParsing.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSInvocation+RACTypeParsing.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveCocoa/NSNotificationCenter+RACSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSNotificationCenter+RACSupport.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveCocoa/NSObject+RACDeallocating.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSObject+RACDeallocating.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveCocoa/NSObject+RACDescription.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSObject+RACDescription.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveCocoa/NSObject+RACKVOWrapper.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSObject+RACKVOWrapper.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveCocoa/NSObject+RACLifting.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSObject+RACLifting.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveCocoa/NSObject+RACPropertySubscribing.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSObject+RACPropertySubscribing.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveCocoa/NSObject+RACSelectorSignal.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSObject+RACSelectorSignal.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveCocoa/NSOrderedSet+RACSequenceAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSOrderedSet+RACSequenceAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveCocoa/NSSet+RACSequenceAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSSet+RACSequenceAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveCocoa/NSString+RACKeyPathUtilities.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSString+RACKeyPathUtilities.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveCocoa/NSString+RACSequenceAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSString+RACSequenceAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveCocoa/NSString+RACSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSString+RACSupport.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveCocoa/NSURLConnection+RACSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSURLConnection+RACSupport.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveCocoa/NSUserDefaults+RACSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSUserDefaults+RACSupport.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveCocoa/RACArraySequence.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACArraySequence.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveCocoa/RACBacktrace.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACBacktrace.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveCocoa/RACBehaviorSubject.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACBehaviorSubject.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveCocoa/RACBlockTrampoline.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACBlockTrampoline.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveCocoa/RACChannel.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACChannel.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveCocoa/RACCommand.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACCommand.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveCocoa/RACCompoundDisposable.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACCompoundDisposable.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveCocoa/RACDelegateProxy.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACDelegateProxy.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveCocoa/RACDisposable.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACDisposable.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveCocoa/RACDynamicSequence.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACDynamicSequence.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveCocoa/RACDynamicSignal.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACDynamicSignal.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveCocoa/RACEXTKeyPathCoding.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/extobjc/RACEXTKeyPathCoding.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveCocoa/RACEXTRuntimeExtensions.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/extobjc/RACEXTRuntimeExtensions.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveCocoa/RACEXTScope.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/extobjc/RACEXTScope.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveCocoa/RACEagerSequence.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACEagerSequence.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveCocoa/RACEmptySequence.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACEmptySequence.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveCocoa/RACEmptySignal.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACEmptySignal.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveCocoa/RACErrorSignal.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACErrorSignal.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveCocoa/RACEvent.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACEvent.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveCocoa/RACGroupedSignal.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACGroupedSignal.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveCocoa/RACImmediateScheduler.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACImmediateScheduler.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveCocoa/RACIndexSetSequence.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACIndexSetSequence.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveCocoa/RACKVOChannel.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACKVOChannel.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveCocoa/RACKVOProxy.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACKVOProxy.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveCocoa/RACKVOTrampoline.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACKVOTrampoline.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveCocoa/RACMulticastConnection.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACMulticastConnection.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveCocoa/RACObjCRuntime.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACObjCRuntime.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveCocoa/RACPassthroughSubscriber.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACPassthroughSubscriber.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveCocoa/RACQueueScheduler+Subclass.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACQueueScheduler+Subclass.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveCocoa/RACQueueScheduler.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACQueueScheduler.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveCocoa/RACReplaySubject.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACReplaySubject.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveCocoa/RACReturnSignal.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACReturnSignal.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveCocoa/RACScheduler+Subclass.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACScheduler+Subclass.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveCocoa/RACScheduler.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACScheduler.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveCocoa/RACScopedDisposable.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACScopedDisposable.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveCocoa/RACSequence.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACSequence.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveCocoa/RACSerialDisposable.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACSerialDisposable.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveCocoa/RACSignal+Operations.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACSignal+Operations.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveCocoa/RACSignal.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACSignal.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveCocoa/RACSignalSequence.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACSignalSequence.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveCocoa/RACStream.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACStream.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveCocoa/RACStringSequence.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACStringSequence.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveCocoa/RACSubject.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACSubject.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveCocoa/RACSubscriber.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACSubscriber.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveCocoa/RACSubscriptingAssignmentTrampoline.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACSubscriptingAssignmentTrampoline.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveCocoa/RACSubscriptionScheduler.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACSubscriptionScheduler.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveCocoa/RACTargetQueueScheduler.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACTargetQueueScheduler.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveCocoa/RACTestScheduler.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACTestScheduler.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveCocoa/RACTuple.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACTuple.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveCocoa/RACTupleSequence.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACTupleSequence.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveCocoa/RACUnarySequence.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACUnarySequence.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveCocoa/RACUnit.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACUnit.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveCocoa/RACValueTransformer.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACValueTransformer.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveCocoa/RACmetamacros.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/extobjc/RACmetamacros.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveCocoa/ReactiveCocoa.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/ReactiveCocoa.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveCocoa/UIActionSheet+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UIActionSheet+RACSignalSupport.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveCocoa/UIAlertView+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UIAlertView+RACSignalSupport.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveCocoa/UIBarButtonItem+RACCommandSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UIBarButtonItem+RACCommandSupport.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveCocoa/UIButton+RACCommandSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UIButton+RACCommandSupport.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveCocoa/UICollectionReusableView+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UICollectionReusableView+RACSignalSupport.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveCocoa/UIControl+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UIControl+RACSignalSupport.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveCocoa/UIControl+RACSignalSupportPrivate.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UIControl+RACSignalSupportPrivate.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveCocoa/UIDatePicker+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UIDatePicker+RACSignalSupport.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveCocoa/UIGestureRecognizer+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UIGestureRecognizer+RACSignalSupport.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveCocoa/UIImagePickerController+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UIImagePickerController+RACSignalSupport.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveCocoa/UIRefreshControl+RACCommandSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UIRefreshControl+RACCommandSupport.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveCocoa/UISegmentedControl+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UISegmentedControl+RACSignalSupport.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveCocoa/UISlider+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UISlider+RACSignalSupport.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveCocoa/UIStepper+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UIStepper+RACSignalSupport.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveCocoa/UISwitch+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UISwitch+RACSignalSupport.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveCocoa/UITableViewCell+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UITableViewCell+RACSignalSupport.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveCocoa/UITableViewHeaderFooterView+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UITableViewHeaderFooterView+RACSignalSupport.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveCocoa/UITextField+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UITextField+RACSignalSupport.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveCocoa/UITextView+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UITextView+RACSignalSupport.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveViewModel/RVMViewModel.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveViewModel/ReactiveViewModel/RVMViewModel.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ReactiveViewModel/ReactiveViewModel.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveViewModel/ReactiveViewModel/ReactiveViewModel.h -------------------------------------------------------------------------------- /Pods/Headers/Public/TPKeyboardAvoiding/TPKeyboardAvoidingCollectionView.h: -------------------------------------------------------------------------------- 1 | ../../../TPKeyboardAvoiding/TPKeyboardAvoiding/TPKeyboardAvoidingCollectionView.h -------------------------------------------------------------------------------- /Pods/Headers/Public/TPKeyboardAvoiding/TPKeyboardAvoidingScrollView.h: -------------------------------------------------------------------------------- 1 | ../../../TPKeyboardAvoiding/TPKeyboardAvoiding/TPKeyboardAvoidingScrollView.h -------------------------------------------------------------------------------- /Pods/Headers/Public/TPKeyboardAvoiding/TPKeyboardAvoidingTableView.h: -------------------------------------------------------------------------------- 1 | ../../../TPKeyboardAvoiding/TPKeyboardAvoiding/TPKeyboardAvoidingTableView.h -------------------------------------------------------------------------------- /Pods/Headers/Public/TPKeyboardAvoiding/UIScrollView+TPKeyboardAvoidingAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../TPKeyboardAvoiding/TPKeyboardAvoiding/UIScrollView+TPKeyboardAvoidingAdditions.h -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Config/KWAllTestsSuite.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Config/KWAllTestsSuite.m -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Config/KWSuiteConfigurationBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Config/KWSuiteConfigurationBase.h -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Config/KWSuiteConfigurationBase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Config/KWSuiteConfigurationBase.m -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Core/KWAny.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Core/KWAny.h -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Core/KWAny.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Core/KWAny.m -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Core/KWBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Core/KWBlock.h -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Core/KWBlock.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Core/KWBlock.m -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Core/KWCallSite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Core/KWCallSite.h -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Core/KWCallSite.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Core/KWCallSite.m -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Core/KWCaptureSpy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Core/KWCaptureSpy.h -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Core/KWCaptureSpy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Core/KWCaptureSpy.m -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Core/KWCountType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Core/KWCountType.h -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Core/KWDeviceInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Core/KWDeviceInfo.h -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Core/KWDeviceInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Core/KWDeviceInfo.m -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Core/KWExample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Core/KWExample.h -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Core/KWExample.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Core/KWExample.m -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Core/KWExampleDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Core/KWExampleDelegate.h -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Core/KWExampleNodeVisitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Core/KWExampleNodeVisitor.h -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Core/KWExampleSuite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Core/KWExampleSuite.h -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Core/KWExampleSuite.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Core/KWExampleSuite.m -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Core/KWExampleSuiteBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Core/KWExampleSuiteBuilder.h -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Core/KWExampleSuiteBuilder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Core/KWExampleSuiteBuilder.m -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Core/KWExpectationType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Core/KWExpectationType.h -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Core/KWFailure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Core/KWFailure.h -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Core/KWFailure.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Core/KWFailure.m -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Core/KWFormatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Core/KWFormatter.h -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Core/KWFormatter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Core/KWFormatter.m -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Core/KWFutureObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Core/KWFutureObject.h -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Core/KWFutureObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Core/KWFutureObject.m -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Core/KWInvocationCapturer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Core/KWInvocationCapturer.h -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Core/KWInvocationCapturer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Core/KWInvocationCapturer.m -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Core/KWLet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Core/KWLet.h -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Core/KWMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Core/KWMatcher.h -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Core/KWMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Core/KWMatcher.m -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Core/KWMatcherFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Core/KWMatcherFactory.h -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Core/KWMatcherFactory.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Core/KWMatcherFactory.m -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Core/KWMatchers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Core/KWMatchers.h -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Core/KWMatchers.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Core/KWMatchers.m -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Core/KWMatching.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Core/KWMatching.h -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Core/KWMessagePattern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Core/KWMessagePattern.h -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Core/KWMessagePattern.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Core/KWMessagePattern.m -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Core/KWMessageSpying.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Core/KWMessageSpying.h -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Core/KWMessageTracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Core/KWMessageTracker.h -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Core/KWMessageTracker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Core/KWMessageTracker.m -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Core/KWNull.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Core/KWNull.h -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Core/KWNull.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Core/KWNull.m -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Core/KWObjCUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Core/KWObjCUtilities.h -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Core/KWObjCUtilities.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Core/KWObjCUtilities.m -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Core/KWProbe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Core/KWProbe.h -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Core/KWProbePoller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Core/KWProbePoller.h -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Core/KWProbePoller.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Core/KWProbePoller.m -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Core/KWReporting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Core/KWReporting.h -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Core/KWSpec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Core/KWSpec.h -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Core/KWSpec.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Core/KWSpec.m -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Core/KWStringUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Core/KWStringUtilities.h -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Core/KWStringUtilities.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Core/KWStringUtilities.m -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Core/KWSymbolicator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Core/KWSymbolicator.h -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Core/KWSymbolicator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Core/KWSymbolicator.m -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Core/KWValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Core/KWValue.h -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Core/KWValue.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Core/KWValue.m -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Core/KWWorkarounds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Core/KWWorkarounds.h -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Core/KWWorkarounds.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Core/KWWorkarounds.m -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Core/Kiwi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Core/Kiwi.h -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Core/KiwiBlockMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Core/KiwiBlockMacros.h -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Core/KiwiConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Core/KiwiConfiguration.h -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Core/KiwiMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Core/KiwiMacros.h -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Core/NSInvocation+KiwiAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Core/NSInvocation+KiwiAdditions.h -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Core/NSInvocation+KiwiAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Core/NSInvocation+KiwiAdditions.m -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Core/NSInvocation+OCMAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Core/NSInvocation+OCMAdditions.h -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Core/NSInvocation+OCMAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Core/NSInvocation+OCMAdditions.m -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Core/NSNumber+KiwiAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Core/NSNumber+KiwiAdditions.h -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Core/NSNumber+KiwiAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Core/NSNumber+KiwiAdditions.m -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Core/NSObject+KiwiSpyAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Core/NSObject+KiwiSpyAdditions.h -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Core/NSObject+KiwiSpyAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Core/NSObject+KiwiSpyAdditions.m -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Core/NSProxy+KiwiVerifierAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Core/NSProxy+KiwiVerifierAdditions.h -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Core/NSProxy+KiwiVerifierAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Core/NSProxy+KiwiVerifierAdditions.m -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Core/NSValue+KiwiAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Core/NSValue+KiwiAdditions.h -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Core/NSValue+KiwiAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Core/NSValue+KiwiAdditions.m -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Matchers/KWBeBetweenMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Matchers/KWBeBetweenMatcher.h -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Matchers/KWBeBetweenMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Matchers/KWBeBetweenMatcher.m -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Matchers/KWBeEmptyMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Matchers/KWBeEmptyMatcher.h -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Matchers/KWBeEmptyMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Matchers/KWBeEmptyMatcher.m -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Matchers/KWBeIdenticalToMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Matchers/KWBeIdenticalToMatcher.h -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Matchers/KWBeIdenticalToMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Matchers/KWBeIdenticalToMatcher.m -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Matchers/KWBeKindOfClassMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Matchers/KWBeKindOfClassMatcher.h -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Matchers/KWBeKindOfClassMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Matchers/KWBeKindOfClassMatcher.m -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Matchers/KWBeMemberOfClassMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Matchers/KWBeMemberOfClassMatcher.h -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Matchers/KWBeMemberOfClassMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Matchers/KWBeMemberOfClassMatcher.m -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Matchers/KWBeTrueMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Matchers/KWBeTrueMatcher.h -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Matchers/KWBeTrueMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Matchers/KWBeTrueMatcher.m -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Matchers/KWBeWithinMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Matchers/KWBeWithinMatcher.h -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Matchers/KWBeWithinMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Matchers/KWBeWithinMatcher.m -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Matchers/KWBeZeroMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Matchers/KWBeZeroMatcher.h -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Matchers/KWBeZeroMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Matchers/KWBeZeroMatcher.m -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Matchers/KWBlockRaiseMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Matchers/KWBlockRaiseMatcher.h -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Matchers/KWBlockRaiseMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Matchers/KWBlockRaiseMatcher.m -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Matchers/KWChangeMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Matchers/KWChangeMatcher.h -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Matchers/KWChangeMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Matchers/KWChangeMatcher.m -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Matchers/KWContainMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Matchers/KWContainMatcher.h -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Matchers/KWContainMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Matchers/KWContainMatcher.m -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Matchers/KWContainStringMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Matchers/KWContainStringMatcher.h -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Matchers/KWContainStringMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Matchers/KWContainStringMatcher.m -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Matchers/KWEqualMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Matchers/KWEqualMatcher.h -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Matchers/KWEqualMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Matchers/KWEqualMatcher.m -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Matchers/KWGenericMatchEvaluator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Matchers/KWGenericMatchEvaluator.h -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Matchers/KWGenericMatchEvaluator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Matchers/KWGenericMatchEvaluator.m -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Matchers/KWGenericMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Matchers/KWGenericMatcher.h -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Matchers/KWGenericMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Matchers/KWGenericMatcher.m -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Matchers/KWHaveMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Matchers/KWHaveMatcher.h -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Matchers/KWHaveMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Matchers/KWHaveMatcher.m -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Matchers/KWHaveValueMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Matchers/KWHaveValueMatcher.h -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Matchers/KWHaveValueMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Matchers/KWHaveValueMatcher.m -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Matchers/KWInequalityMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Matchers/KWInequalityMatcher.h -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Matchers/KWInequalityMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Matchers/KWInequalityMatcher.m -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Matchers/KWNilMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Matchers/KWNilMatcher.h -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Matchers/KWNilMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Matchers/KWNilMatcher.m -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Matchers/KWNotificationMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Matchers/KWNotificationMatcher.h -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Matchers/KWNotificationMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Matchers/KWNotificationMatcher.m -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Matchers/KWReceiveMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Matchers/KWReceiveMatcher.h -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Matchers/KWReceiveMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Matchers/KWReceiveMatcher.m -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Matchers/KWStringContainsMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Matchers/KWStringContainsMatcher.h -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Matchers/KWStringContainsMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Matchers/KWStringContainsMatcher.m -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Matchers/KWStringPrefixMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Matchers/KWStringPrefixMatcher.h -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Matchers/KWStringPrefixMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Matchers/KWStringPrefixMatcher.m -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Matchers/KWUserDefinedMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Matchers/KWUserDefinedMatcher.h -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Matchers/KWUserDefinedMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Matchers/KWUserDefinedMatcher.m -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Mocking/KWMock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Mocking/KWMock.h -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Mocking/KWMock.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Mocking/KWMock.m -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Mocking/NSObject+KiwiMockAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Mocking/NSObject+KiwiMockAdditions.h -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Mocking/NSObject+KiwiMockAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Mocking/NSObject+KiwiMockAdditions.m -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Nodes/KWAfterAllNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Nodes/KWAfterAllNode.h -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Nodes/KWAfterAllNode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Nodes/KWAfterAllNode.m -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Nodes/KWAfterEachNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Nodes/KWAfterEachNode.h -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Nodes/KWAfterEachNode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Nodes/KWAfterEachNode.m -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Nodes/KWBeforeAllNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Nodes/KWBeforeAllNode.h -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Nodes/KWBeforeAllNode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Nodes/KWBeforeAllNode.m -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Nodes/KWBeforeEachNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Nodes/KWBeforeEachNode.h -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Nodes/KWBeforeEachNode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Nodes/KWBeforeEachNode.m -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Nodes/KWBlockNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Nodes/KWBlockNode.h -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Nodes/KWBlockNode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Nodes/KWBlockNode.m -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Nodes/KWContextNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Nodes/KWContextNode.h -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Nodes/KWContextNode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Nodes/KWContextNode.m -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Nodes/KWExampleNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Nodes/KWExampleNode.h -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Nodes/KWItNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Nodes/KWItNode.h -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Nodes/KWItNode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Nodes/KWItNode.m -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Nodes/KWLetNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Nodes/KWLetNode.h -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Nodes/KWLetNode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Nodes/KWLetNode.m -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Nodes/KWPendingNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Nodes/KWPendingNode.h -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Nodes/KWPendingNode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Nodes/KWPendingNode.m -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Nodes/KWRegisterMatchersNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Nodes/KWRegisterMatchersNode.h -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Nodes/KWRegisterMatchersNode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Nodes/KWRegisterMatchersNode.m -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Stubbing/KWIntercept.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Stubbing/KWIntercept.h -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Stubbing/KWIntercept.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Stubbing/KWIntercept.m -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Stubbing/KWStub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Stubbing/KWStub.h -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Stubbing/KWStub.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Stubbing/KWStub.m -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Verifiers/KWAsyncVerifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Verifiers/KWAsyncVerifier.h -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Verifiers/KWAsyncVerifier.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Verifiers/KWAsyncVerifier.m -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Verifiers/KWExistVerifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Verifiers/KWExistVerifier.h -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Verifiers/KWExistVerifier.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Verifiers/KWExistVerifier.m -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Verifiers/KWMatchVerifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Verifiers/KWMatchVerifier.h -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Verifiers/KWMatchVerifier.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Verifiers/KWMatchVerifier.m -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Verifiers/KWVerifying.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Classes/Verifiers/KWVerifying.h -------------------------------------------------------------------------------- /Pods/Kiwi/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/License.txt -------------------------------------------------------------------------------- /Pods/Kiwi/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Kiwi/Readme.md -------------------------------------------------------------------------------- /Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Manifest.lock -------------------------------------------------------------------------------- /Pods/Mantle/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Mantle/LICENSE.md -------------------------------------------------------------------------------- /Pods/Mantle/Mantle/MTLJSONAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Mantle/Mantle/MTLJSONAdapter.h -------------------------------------------------------------------------------- /Pods/Mantle/Mantle/MTLJSONAdapter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Mantle/Mantle/MTLJSONAdapter.m -------------------------------------------------------------------------------- /Pods/Mantle/Mantle/MTLManagedObjectAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Mantle/Mantle/MTLManagedObjectAdapter.h -------------------------------------------------------------------------------- /Pods/Mantle/Mantle/MTLManagedObjectAdapter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Mantle/Mantle/MTLManagedObjectAdapter.m -------------------------------------------------------------------------------- /Pods/Mantle/Mantle/MTLModel+NSCoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Mantle/Mantle/MTLModel+NSCoding.h -------------------------------------------------------------------------------- /Pods/Mantle/Mantle/MTLModel+NSCoding.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Mantle/Mantle/MTLModel+NSCoding.m -------------------------------------------------------------------------------- /Pods/Mantle/Mantle/MTLModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Mantle/Mantle/MTLModel.h -------------------------------------------------------------------------------- /Pods/Mantle/Mantle/MTLModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Mantle/Mantle/MTLModel.m -------------------------------------------------------------------------------- /Pods/Mantle/Mantle/MTLReflection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Mantle/Mantle/MTLReflection.h -------------------------------------------------------------------------------- /Pods/Mantle/Mantle/MTLReflection.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Mantle/Mantle/MTLReflection.m -------------------------------------------------------------------------------- /Pods/Mantle/Mantle/MTLValueTransformer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Mantle/Mantle/MTLValueTransformer.h -------------------------------------------------------------------------------- /Pods/Mantle/Mantle/MTLValueTransformer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Mantle/Mantle/MTLValueTransformer.m -------------------------------------------------------------------------------- /Pods/Mantle/Mantle/Mantle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Mantle/Mantle/Mantle.h -------------------------------------------------------------------------------- /Pods/Mantle/Mantle/NSArray+MTLManipulationAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Mantle/Mantle/NSArray+MTLManipulationAdditions.h -------------------------------------------------------------------------------- /Pods/Mantle/Mantle/NSArray+MTLManipulationAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Mantle/Mantle/NSArray+MTLManipulationAdditions.m -------------------------------------------------------------------------------- /Pods/Mantle/Mantle/NSError+MTLModelException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Mantle/Mantle/NSError+MTLModelException.h -------------------------------------------------------------------------------- /Pods/Mantle/Mantle/NSError+MTLModelException.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Mantle/Mantle/NSError+MTLModelException.m -------------------------------------------------------------------------------- /Pods/Mantle/Mantle/NSObject+MTLComparisonAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Mantle/Mantle/NSObject+MTLComparisonAdditions.h -------------------------------------------------------------------------------- /Pods/Mantle/Mantle/NSObject+MTLComparisonAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Mantle/Mantle/NSObject+MTLComparisonAdditions.m -------------------------------------------------------------------------------- /Pods/Mantle/Mantle/extobjc/EXTKeyPathCoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Mantle/Mantle/extobjc/EXTKeyPathCoding.h -------------------------------------------------------------------------------- /Pods/Mantle/Mantle/extobjc/EXTRuntimeExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Mantle/Mantle/extobjc/EXTRuntimeExtensions.h -------------------------------------------------------------------------------- /Pods/Mantle/Mantle/extobjc/EXTRuntimeExtensions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Mantle/Mantle/extobjc/EXTRuntimeExtensions.m -------------------------------------------------------------------------------- /Pods/Mantle/Mantle/extobjc/EXTScope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Mantle/Mantle/extobjc/EXTScope.h -------------------------------------------------------------------------------- /Pods/Mantle/Mantle/extobjc/EXTScope.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Mantle/Mantle/extobjc/EXTScope.m -------------------------------------------------------------------------------- /Pods/Mantle/Mantle/extobjc/metamacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Mantle/Mantle/extobjc/metamacros.h -------------------------------------------------------------------------------- /Pods/Mantle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Mantle/README.md -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/ReactiveCocoa/LICENSE.md -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/ReactiveCocoa/README.md -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoa/NSData+RACSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/ReactiveCocoa/ReactiveCocoa/NSData+RACSupport.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoa/NSData+RACSupport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/ReactiveCocoa/ReactiveCocoa/NSData+RACSupport.m -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoa/NSObject+RACLifting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/ReactiveCocoa/ReactiveCocoa/NSObject+RACLifting.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoa/NSObject+RACLifting.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/ReactiveCocoa/ReactiveCocoa/NSObject+RACLifting.m -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoa/NSString+RACSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/ReactiveCocoa/ReactiveCocoa/NSString+RACSupport.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoa/NSString+RACSupport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/ReactiveCocoa/ReactiveCocoa/NSString+RACSupport.m -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoa/RACArraySequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/ReactiveCocoa/ReactiveCocoa/RACArraySequence.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoa/RACArraySequence.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/ReactiveCocoa/ReactiveCocoa/RACArraySequence.m -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoa/RACBacktrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/ReactiveCocoa/ReactiveCocoa/RACBacktrace.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoa/RACBacktrace.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/ReactiveCocoa/ReactiveCocoa/RACBacktrace.m -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoa/RACBehaviorSubject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/ReactiveCocoa/ReactiveCocoa/RACBehaviorSubject.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoa/RACBehaviorSubject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/ReactiveCocoa/ReactiveCocoa/RACBehaviorSubject.m -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoa/RACBlockTrampoline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/ReactiveCocoa/ReactiveCocoa/RACBlockTrampoline.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoa/RACBlockTrampoline.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/ReactiveCocoa/ReactiveCocoa/RACBlockTrampoline.m -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoa/RACChannel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/ReactiveCocoa/ReactiveCocoa/RACChannel.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoa/RACChannel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/ReactiveCocoa/ReactiveCocoa/RACChannel.m -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoa/RACCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/ReactiveCocoa/ReactiveCocoa/RACCommand.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoa/RACCommand.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/ReactiveCocoa/ReactiveCocoa/RACCommand.m -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoa/RACDelegateProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/ReactiveCocoa/ReactiveCocoa/RACDelegateProxy.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoa/RACDelegateProxy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/ReactiveCocoa/ReactiveCocoa/RACDelegateProxy.m -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoa/RACDisposable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/ReactiveCocoa/ReactiveCocoa/RACDisposable.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoa/RACDisposable.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/ReactiveCocoa/ReactiveCocoa/RACDisposable.m -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoa/RACDynamicSequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/ReactiveCocoa/ReactiveCocoa/RACDynamicSequence.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoa/RACDynamicSequence.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/ReactiveCocoa/ReactiveCocoa/RACDynamicSequence.m -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoa/RACDynamicSignal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/ReactiveCocoa/ReactiveCocoa/RACDynamicSignal.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoa/RACDynamicSignal.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/ReactiveCocoa/ReactiveCocoa/RACDynamicSignal.m -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoa/RACEagerSequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/ReactiveCocoa/ReactiveCocoa/RACEagerSequence.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoa/RACEagerSequence.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/ReactiveCocoa/ReactiveCocoa/RACEagerSequence.m -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoa/RACEmptySequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/ReactiveCocoa/ReactiveCocoa/RACEmptySequence.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoa/RACEmptySequence.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/ReactiveCocoa/ReactiveCocoa/RACEmptySequence.m -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoa/RACEmptySignal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/ReactiveCocoa/ReactiveCocoa/RACEmptySignal.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoa/RACEmptySignal.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/ReactiveCocoa/ReactiveCocoa/RACEmptySignal.m -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoa/RACErrorSignal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/ReactiveCocoa/ReactiveCocoa/RACErrorSignal.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoa/RACErrorSignal.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/ReactiveCocoa/ReactiveCocoa/RACErrorSignal.m -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoa/RACEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/ReactiveCocoa/ReactiveCocoa/RACEvent.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoa/RACEvent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/ReactiveCocoa/ReactiveCocoa/RACEvent.m -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoa/RACGroupedSignal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/ReactiveCocoa/ReactiveCocoa/RACGroupedSignal.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoa/RACGroupedSignal.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/ReactiveCocoa/ReactiveCocoa/RACGroupedSignal.m -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoa/RACIndexSetSequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/ReactiveCocoa/ReactiveCocoa/RACIndexSetSequence.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoa/RACIndexSetSequence.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/ReactiveCocoa/ReactiveCocoa/RACIndexSetSequence.m -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoa/RACKVOChannel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/ReactiveCocoa/ReactiveCocoa/RACKVOChannel.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoa/RACKVOChannel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/ReactiveCocoa/ReactiveCocoa/RACKVOChannel.m -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoa/RACKVOProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/ReactiveCocoa/ReactiveCocoa/RACKVOProxy.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoa/RACKVOProxy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/ReactiveCocoa/ReactiveCocoa/RACKVOProxy.m -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoa/RACKVOTrampoline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/ReactiveCocoa/ReactiveCocoa/RACKVOTrampoline.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoa/RACKVOTrampoline.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/ReactiveCocoa/ReactiveCocoa/RACKVOTrampoline.m -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoa/RACObjCRuntime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/ReactiveCocoa/ReactiveCocoa/RACObjCRuntime.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoa/RACObjCRuntime.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/ReactiveCocoa/ReactiveCocoa/RACObjCRuntime.m -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoa/RACQueueScheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/ReactiveCocoa/ReactiveCocoa/RACQueueScheduler.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoa/RACQueueScheduler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/ReactiveCocoa/ReactiveCocoa/RACQueueScheduler.m -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoa/RACReplaySubject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/ReactiveCocoa/ReactiveCocoa/RACReplaySubject.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoa/RACReplaySubject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/ReactiveCocoa/ReactiveCocoa/RACReplaySubject.m -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoa/RACReturnSignal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/ReactiveCocoa/ReactiveCocoa/RACReturnSignal.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoa/RACReturnSignal.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/ReactiveCocoa/ReactiveCocoa/RACReturnSignal.m -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoa/RACScheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/ReactiveCocoa/ReactiveCocoa/RACScheduler.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoa/RACScheduler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/ReactiveCocoa/ReactiveCocoa/RACScheduler.m -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoa/RACScopedDisposable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/ReactiveCocoa/ReactiveCocoa/RACScopedDisposable.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoa/RACScopedDisposable.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/ReactiveCocoa/ReactiveCocoa/RACScopedDisposable.m -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoa/RACSequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/ReactiveCocoa/ReactiveCocoa/RACSequence.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoa/RACSequence.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/ReactiveCocoa/ReactiveCocoa/RACSequence.m -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoa/RACSerialDisposable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/ReactiveCocoa/ReactiveCocoa/RACSerialDisposable.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoa/RACSerialDisposable.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/ReactiveCocoa/ReactiveCocoa/RACSerialDisposable.m -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoa/RACSignal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/ReactiveCocoa/ReactiveCocoa/RACSignal.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoa/RACSignal.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/ReactiveCocoa/ReactiveCocoa/RACSignal.m -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoa/RACSignalProvider.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/ReactiveCocoa/ReactiveCocoa/RACSignalProvider.d -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoa/RACSignalSequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/ReactiveCocoa/ReactiveCocoa/RACSignalSequence.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoa/RACSignalSequence.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/ReactiveCocoa/ReactiveCocoa/RACSignalSequence.m -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoa/RACStream+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/ReactiveCocoa/ReactiveCocoa/RACStream+Private.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoa/RACStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/ReactiveCocoa/ReactiveCocoa/RACStream.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoa/RACStream.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/ReactiveCocoa/ReactiveCocoa/RACStream.m -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoa/RACStringSequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/ReactiveCocoa/ReactiveCocoa/RACStringSequence.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoa/RACStringSequence.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/ReactiveCocoa/ReactiveCocoa/RACStringSequence.m -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoa/RACSubject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/ReactiveCocoa/ReactiveCocoa/RACSubject.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoa/RACSubject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/ReactiveCocoa/ReactiveCocoa/RACSubject.m -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoa/RACSubscriber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/ReactiveCocoa/ReactiveCocoa/RACSubscriber.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoa/RACSubscriber.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/ReactiveCocoa/ReactiveCocoa/RACSubscriber.m -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoa/RACTestScheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/ReactiveCocoa/ReactiveCocoa/RACTestScheduler.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoa/RACTestScheduler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/ReactiveCocoa/ReactiveCocoa/RACTestScheduler.m -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoa/RACTuple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/ReactiveCocoa/ReactiveCocoa/RACTuple.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoa/RACTuple.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/ReactiveCocoa/ReactiveCocoa/RACTuple.m -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoa/RACTupleSequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/ReactiveCocoa/ReactiveCocoa/RACTupleSequence.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoa/RACTupleSequence.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/ReactiveCocoa/ReactiveCocoa/RACTupleSequence.m -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoa/RACUnarySequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/ReactiveCocoa/ReactiveCocoa/RACUnarySequence.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoa/RACUnarySequence.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/ReactiveCocoa/ReactiveCocoa/RACUnarySequence.m -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoa/RACUnit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/ReactiveCocoa/ReactiveCocoa/RACUnit.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoa/RACUnit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/ReactiveCocoa/ReactiveCocoa/RACUnit.m -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoa/RACValueTransformer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/ReactiveCocoa/ReactiveCocoa/RACValueTransformer.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoa/RACValueTransformer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/ReactiveCocoa/ReactiveCocoa/RACValueTransformer.m -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoa/ReactiveCocoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/ReactiveCocoa/ReactiveCocoa/ReactiveCocoa.h -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoa/extobjc/RACEXTScope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/ReactiveCocoa/ReactiveCocoa/extobjc/RACEXTScope.h -------------------------------------------------------------------------------- /Pods/ReactiveViewModel/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/ReactiveViewModel/LICENSE.md -------------------------------------------------------------------------------- /Pods/ReactiveViewModel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/ReactiveViewModel/README.md -------------------------------------------------------------------------------- /Pods/TPKeyboardAvoiding/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/TPKeyboardAvoiding/LICENSE.txt -------------------------------------------------------------------------------- /Pods/TPKeyboardAvoiding/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/TPKeyboardAvoiding/README.md -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Mantle/Pods-Mantle.xcconfig: -------------------------------------------------------------------------------- 1 | PODS_MANTLE_OTHER_LDFLAGS = -framework "Foundation" -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-ReactiveCocoa/Pods-ReactiveCocoa.xcconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-ReactiveViewModel/Pods-ReactiveViewModel.xcconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-TPKeyboardAvoiding/Pods-TPKeyboardAvoiding.xcconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods/Pods-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Target Support Files/Pods/Pods-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods/Pods-environment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Target Support Files/Pods/Pods-environment.h -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods/Pods-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Target Support Files/Pods/Pods-resources.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods/Pods.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Target Support Files/Pods/Pods.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods/Pods.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/Pods/Target Support Files/Pods/Pods.release.xcconfig -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/HEAD/README.md --------------------------------------------------------------------------------