├── .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 /DesignerNewsForObjc.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /DesignerNewsForObjc.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /DesignerNewsForObjc/AppDelegate/AppDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.h 3 | // DesignerNewsForObjc 4 | // 5 | // Created by Sam Lau on 3/25/15. 6 | // Copyright (c) 2015 Sam Lau. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface AppDelegate : UIResponder 12 | 13 | @property (strong, nonatomic) UIWindow *window; 14 | 15 | 16 | @end 17 | 18 | -------------------------------------------------------------------------------- /DesignerNewsForObjc/DesignerNewsForObjc-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | // 2 | // DesignerNewsForObjc-Bridging-Header.h 3 | // DesignerNewsForObjc 4 | // 5 | // Created by Sam Lau on 3/29/15. 6 | // Copyright (c) 2015 Sam Lau. All rights reserved. 7 | // 8 | 9 | #ifndef DesignerNewsForObjc_DesignerNewsForObjc_Bridging_Header_h 10 | #define DesignerNewsForObjc_DesignerNewsForObjc_Bridging_Header_h 11 | 12 | 13 | #endif 14 | -------------------------------------------------------------------------------- /DesignerNewsForObjc/General/Categories/NSString+Check.h: -------------------------------------------------------------------------------- 1 | // 2 | // NSString+Check.h 3 | // DesignerNewsForObjc 4 | // 5 | // Created by Sam Lau on 4/2/15. 6 | // Copyright (c) 2015 Sam Lau. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface NSString (EmailCheck) 12 | 13 | - (BOOL)isValidEmail; 14 | 15 | @end 16 | 17 | @interface NSString (PasswordCheck) 18 | 19 | - (BOOL)isValidPassword; 20 | 21 | @end 22 | -------------------------------------------------------------------------------- /DesignerNewsForObjc/General/Persistence/LocalStore.h: -------------------------------------------------------------------------------- 1 | // 2 | // LocalStore.h 3 | // DesignerNewsForObjc 4 | // 5 | // Created by Sam Lau on 4/6/15. 6 | // Copyright (c) 2015 Sam Lau. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface LocalStore : NSObject 12 | 13 | + (void)saveToken:(NSString *)token; 14 | + (void)removeToken; 15 | + (NSString *)getToken; 16 | + (BOOL)isHasLogin; 17 | + (void)saveUpvoteStory:(NSInteger)storyId; 18 | + (BOOL)isUpvoteStory:(NSInteger)storyId; 19 | 20 | @end 21 | -------------------------------------------------------------------------------- /DesignerNewsForObjc/Images.xcassets/AppIcon.appiconset/iPhone29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/b70dfb6ec8eeb52a128b2778b9469eb598ce53da/DesignerNewsForObjc/Images.xcassets/AppIcon.appiconset/iPhone29@2x.png -------------------------------------------------------------------------------- /DesignerNewsForObjc/Images.xcassets/AppIcon.appiconset/iPhone29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/b70dfb6ec8eeb52a128b2778b9469eb598ce53da/DesignerNewsForObjc/Images.xcassets/AppIcon.appiconset/iPhone29@3x.png -------------------------------------------------------------------------------- /DesignerNewsForObjc/Images.xcassets/AppIcon.appiconset/iPhone40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/b70dfb6ec8eeb52a128b2778b9469eb598ce53da/DesignerNewsForObjc/Images.xcassets/AppIcon.appiconset/iPhone40@2x.png -------------------------------------------------------------------------------- /DesignerNewsForObjc/Images.xcassets/AppIcon.appiconset/iPhone60@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/b70dfb6ec8eeb52a128b2778b9469eb598ce53da/DesignerNewsForObjc/Images.xcassets/AppIcon.appiconset/iPhone60@2x-1.png -------------------------------------------------------------------------------- /DesignerNewsForObjc/Images.xcassets/AppIcon.appiconset/iPhone60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/b70dfb6ec8eeb52a128b2778b9469eb598ce53da/DesignerNewsForObjc/Images.xcassets/AppIcon.appiconset/iPhone60@2x.png -------------------------------------------------------------------------------- /DesignerNewsForObjc/Images.xcassets/AppIcon.appiconset/iPhone60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/b70dfb6ec8eeb52a128b2778b9469eb598ce53da/DesignerNewsForObjc/Images.xcassets/AppIcon.appiconset/iPhone60@3x.png -------------------------------------------------------------------------------- /DesignerNewsForObjc/Images.xcassets/Vector/action-comment.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "action-comment.pdf" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /DesignerNewsForObjc/Images.xcassets/Vector/action-comment.imageset/action-comment.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/b70dfb6ec8eeb52a128b2778b9469eb598ce53da/DesignerNewsForObjc/Images.xcassets/Vector/action-comment.imageset/action-comment.pdf -------------------------------------------------------------------------------- /DesignerNewsForObjc/Images.xcassets/Vector/action-reply.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "action-reply.pdf" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /DesignerNewsForObjc/Images.xcassets/Vector/action-reply.imageset/action-reply.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/b70dfb6ec8eeb52a128b2778b9469eb598ce53da/DesignerNewsForObjc/Images.xcassets/Vector/action-reply.imageset/action-reply.pdf -------------------------------------------------------------------------------- /DesignerNewsForObjc/Images.xcassets/Vector/action-share.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "action-share.pdf" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /DesignerNewsForObjc/Images.xcassets/Vector/action-share.imageset/action-share.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/b70dfb6ec8eeb52a128b2778b9469eb598ce53da/DesignerNewsForObjc/Images.xcassets/Vector/action-share.imageset/action-share.pdf -------------------------------------------------------------------------------- /DesignerNewsForObjc/Images.xcassets/Vector/action-upvote-active.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "action-upvote-active.pdf" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /DesignerNewsForObjc/Images.xcassets/Vector/action-upvote-active.imageset/action-upvote-active.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/b70dfb6ec8eeb52a128b2778b9469eb598ce53da/DesignerNewsForObjc/Images.xcassets/Vector/action-upvote-active.imageset/action-upvote-active.pdf -------------------------------------------------------------------------------- /DesignerNewsForObjc/Images.xcassets/Vector/action-upvote.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "action-upvote.pdf" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /DesignerNewsForObjc/Images.xcassets/Vector/action-upvote.imageset/action-upvote.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/b70dfb6ec8eeb52a128b2778b9469eb598ce53da/DesignerNewsForObjc/Images.xcassets/Vector/action-upvote.imageset/action-upvote.pdf -------------------------------------------------------------------------------- /DesignerNewsForObjc/Images.xcassets/Vector/badge-ama.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "badge-ama.pdf" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /DesignerNewsForObjc/Images.xcassets/Vector/badge-ama.imageset/badge-ama.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/b70dfb6ec8eeb52a128b2778b9469eb598ce53da/DesignerNewsForObjc/Images.xcassets/Vector/badge-ama.imageset/badge-ama.pdf -------------------------------------------------------------------------------- /DesignerNewsForObjc/Images.xcassets/Vector/badge-apple.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "badge-apple.pdf" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /DesignerNewsForObjc/Images.xcassets/Vector/badge-apple.imageset/badge-apple.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/b70dfb6ec8eeb52a128b2778b9469eb598ce53da/DesignerNewsForObjc/Images.xcassets/Vector/badge-apple.imageset/badge-apple.pdf -------------------------------------------------------------------------------- /DesignerNewsForObjc/Images.xcassets/Vector/badge-ask.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "badge-ask.pdf" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /DesignerNewsForObjc/Images.xcassets/Vector/badge-ask.imageset/badge-ask.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/b70dfb6ec8eeb52a128b2778b9469eb598ce53da/DesignerNewsForObjc/Images.xcassets/Vector/badge-ask.imageset/badge-ask.pdf -------------------------------------------------------------------------------- /DesignerNewsForObjc/Images.xcassets/Vector/badge-css.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "badge-css.pdf" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /DesignerNewsForObjc/Images.xcassets/Vector/badge-css.imageset/badge-css.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/b70dfb6ec8eeb52a128b2778b9469eb598ce53da/DesignerNewsForObjc/Images.xcassets/Vector/badge-css.imageset/badge-css.pdf -------------------------------------------------------------------------------- /DesignerNewsForObjc/Images.xcassets/Vector/badge-discussion.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "badge-discussion.pdf" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /DesignerNewsForObjc/Images.xcassets/Vector/badge-discussion.imageset/badge-discussion.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/b70dfb6ec8eeb52a128b2778b9469eb598ce53da/DesignerNewsForObjc/Images.xcassets/Vector/badge-discussion.imageset/badge-discussion.pdf -------------------------------------------------------------------------------- /DesignerNewsForObjc/Images.xcassets/Vector/badge-pinned.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "badge-pinned.pdf" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /DesignerNewsForObjc/Images.xcassets/Vector/badge-pinned.imageset/badge-pinned.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/b70dfb6ec8eeb52a128b2778b9469eb598ce53da/DesignerNewsForObjc/Images.xcassets/Vector/badge-pinned.imageset/badge-pinned.pdf -------------------------------------------------------------------------------- /DesignerNewsForObjc/Images.xcassets/Vector/badge-show.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "badge-show.pdf" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /DesignerNewsForObjc/Images.xcassets/Vector/badge-show.imageset/badge-show.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/b70dfb6ec8eeb52a128b2778b9469eb598ce53da/DesignerNewsForObjc/Images.xcassets/Vector/badge-show.imageset/badge-show.pdf -------------------------------------------------------------------------------- /DesignerNewsForObjc/Images.xcassets/Vector/badge-sitedesign.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "badge-sitedesign.pdf" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /DesignerNewsForObjc/Images.xcassets/Vector/badge-sitedesign.imageset/badge-sitedesign.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/b70dfb6ec8eeb52a128b2778b9469eb598ce53da/DesignerNewsForObjc/Images.xcassets/Vector/badge-sitedesign.imageset/badge-sitedesign.pdf -------------------------------------------------------------------------------- /DesignerNewsForObjc/Images.xcassets/Vector/badge-sketch.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "badge-sketch.pdf" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /DesignerNewsForObjc/Images.xcassets/Vector/badge-sketch.imageset/badge-sketch.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/b70dfb6ec8eeb52a128b2778b9469eb598ce53da/DesignerNewsForObjc/Images.xcassets/Vector/badge-sketch.imageset/badge-sketch.pdf -------------------------------------------------------------------------------- /DesignerNewsForObjc/Images.xcassets/Vector/badge-type.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "badge-type.pdf" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /DesignerNewsForObjc/Images.xcassets/Vector/badge-type.imageset/badge-type.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/b70dfb6ec8eeb52a128b2778b9469eb598ce53da/DesignerNewsForObjc/Images.xcassets/Vector/badge-type.imageset/badge-type.pdf -------------------------------------------------------------------------------- /DesignerNewsForObjc/Images.xcassets/Vector/badge-video.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "badge-video.pdf" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /DesignerNewsForObjc/Images.xcassets/Vector/badge-video.imageset/badge-video.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/b70dfb6ec8eeb52a128b2778b9469eb598ce53da/DesignerNewsForObjc/Images.xcassets/Vector/badge-video.imageset/badge-video.pdf -------------------------------------------------------------------------------- /DesignerNewsForObjc/Images.xcassets/Vector/bg-1px.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "bg-1px.pdf" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /DesignerNewsForObjc/Images.xcassets/Vector/bg-1px.imageset/bg-1px.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/b70dfb6ec8eeb52a128b2778b9469eb598ce53da/DesignerNewsForObjc/Images.xcassets/Vector/bg-1px.imageset/bg-1px.pdf -------------------------------------------------------------------------------- /DesignerNewsForObjc/Images.xcassets/Vector/bg-credits.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "bg-credits.pdf" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /DesignerNewsForObjc/Images.xcassets/Vector/bg-credits.imageset/bg-credits.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/b70dfb6ec8eeb52a128b2778b9469eb598ce53da/DesignerNewsForObjc/Images.xcassets/Vector/bg-credits.imageset/bg-credits.pdf -------------------------------------------------------------------------------- /DesignerNewsForObjc/Images.xcassets/Vector/big-credits.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "big-credits.pdf" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /DesignerNewsForObjc/Images.xcassets/Vector/big-credits.imageset/big-credits.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/b70dfb6ec8eeb52a128b2778b9469eb598ce53da/DesignerNewsForObjc/Images.xcassets/Vector/big-credits.imageset/big-credits.pdf -------------------------------------------------------------------------------- /DesignerNewsForObjc/Images.xcassets/Vector/big-login.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "big-login.pdf" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /DesignerNewsForObjc/Images.xcassets/Vector/big-login.imageset/big-login.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/b70dfb6ec8eeb52a128b2778b9469eb598ce53da/DesignerNewsForObjc/Images.xcassets/Vector/big-login.imageset/big-login.pdf -------------------------------------------------------------------------------- /DesignerNewsForObjc/Images.xcassets/Vector/big-recent.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "big-recent.pdf" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /DesignerNewsForObjc/Images.xcassets/Vector/big-recent.imageset/big-recent.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/b70dfb6ec8eeb52a128b2778b9469eb598ce53da/DesignerNewsForObjc/Images.xcassets/Vector/big-recent.imageset/big-recent.pdf -------------------------------------------------------------------------------- /DesignerNewsForObjc/Images.xcassets/Vector/big-top.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "big-top.pdf" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /DesignerNewsForObjc/Images.xcassets/Vector/big-top.imageset/big-top.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/b70dfb6ec8eeb52a128b2778b9469eb598ce53da/DesignerNewsForObjc/Images.xcassets/Vector/big-top.imageset/big-top.pdf -------------------------------------------------------------------------------- /DesignerNewsForObjc/Images.xcassets/Vector/button-blue.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "button-blue.pdf" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /DesignerNewsForObjc/Images.xcassets/Vector/button-blue.imageset/button-blue.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/b70dfb6ec8eeb52a128b2778b9469eb598ce53da/DesignerNewsForObjc/Images.xcassets/Vector/button-blue.imageset/button-blue.pdf -------------------------------------------------------------------------------- /DesignerNewsForObjc/Images.xcassets/Vector/content-art.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "content-art.pdf" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /DesignerNewsForObjc/Images.xcassets/Vector/content-art.imageset/content-art.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/b70dfb6ec8eeb52a128b2778b9469eb598ce53da/DesignerNewsForObjc/Images.xcassets/Vector/content-art.imageset/content-art.pdf -------------------------------------------------------------------------------- /DesignerNewsForObjc/Images.xcassets/Vector/content-avatar-default.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "content-avatar-default.pdf" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /DesignerNewsForObjc/Images.xcassets/Vector/content-avatar-default.imageset/content-avatar-default.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/b70dfb6ec8eeb52a128b2778b9469eb598ce53da/DesignerNewsForObjc/Images.xcassets/Vector/content-avatar-default.imageset/content-avatar-default.pdf -------------------------------------------------------------------------------- /DesignerNewsForObjc/Images.xcassets/Vector/content-avatar.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "content-avatar.pdf" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /DesignerNewsForObjc/Images.xcassets/Vector/content-avatar.imageset/content-avatar.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/b70dfb6ec8eeb52a128b2778b9469eb598ce53da/DesignerNewsForObjc/Images.xcassets/Vector/content-avatar.imageset/content-avatar.pdf -------------------------------------------------------------------------------- /DesignerNewsForObjc/Images.xcassets/Vector/icon-book.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon-book.pdf" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /DesignerNewsForObjc/Images.xcassets/Vector/icon-book.imageset/icon-book.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/b70dfb6ec8eeb52a128b2778b9469eb598ce53da/DesignerNewsForObjc/Images.xcassets/Vector/icon-book.imageset/icon-book.pdf -------------------------------------------------------------------------------- /DesignerNewsForObjc/Images.xcassets/Vector/icon-close.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon-close.pdf" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /DesignerNewsForObjc/Images.xcassets/Vector/icon-close.imageset/icon-close.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/b70dfb6ec8eeb52a128b2778b9469eb598ce53da/DesignerNewsForObjc/Images.xcassets/Vector/icon-close.imageset/icon-close.pdf -------------------------------------------------------------------------------- /DesignerNewsForObjc/Images.xcassets/Vector/icon-comment-active.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon-comment-active.pdf" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /DesignerNewsForObjc/Images.xcassets/Vector/icon-comment-active.imageset/icon-comment-active.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/b70dfb6ec8eeb52a128b2778b9469eb598ce53da/DesignerNewsForObjc/Images.xcassets/Vector/icon-comment-active.imageset/icon-comment-active.pdf -------------------------------------------------------------------------------- /DesignerNewsForObjc/Images.xcassets/Vector/icon-comment.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon-comment.pdf" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /DesignerNewsForObjc/Images.xcassets/Vector/icon-comment.imageset/icon-comment.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/b70dfb6ec8eeb52a128b2778b9469eb598ce53da/DesignerNewsForObjc/Images.xcassets/Vector/icon-comment.imageset/icon-comment.pdf -------------------------------------------------------------------------------- /DesignerNewsForObjc/Images.xcassets/Vector/icon-hamburger.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon-hamburger.pdf" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /DesignerNewsForObjc/Images.xcassets/Vector/icon-hamburger.imageset/icon-hamburger.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/b70dfb6ec8eeb52a128b2778b9469eb598ce53da/DesignerNewsForObjc/Images.xcassets/Vector/icon-hamburger.imageset/icon-hamburger.pdf -------------------------------------------------------------------------------- /DesignerNewsForObjc/Images.xcassets/Vector/icon-mail-active.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon-mail-active.pdf" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /DesignerNewsForObjc/Images.xcassets/Vector/icon-mail-active.imageset/icon-mail-active.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/b70dfb6ec8eeb52a128b2778b9469eb598ce53da/DesignerNewsForObjc/Images.xcassets/Vector/icon-mail-active.imageset/icon-mail-active.pdf -------------------------------------------------------------------------------- /DesignerNewsForObjc/Images.xcassets/Vector/icon-mail.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon-mail.pdf" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /DesignerNewsForObjc/Images.xcassets/Vector/icon-mail.imageset/icon-mail.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/b70dfb6ec8eeb52a128b2778b9469eb598ce53da/DesignerNewsForObjc/Images.xcassets/Vector/icon-mail.imageset/icon-mail.pdf -------------------------------------------------------------------------------- /DesignerNewsForObjc/Images.xcassets/Vector/icon-password-active.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon-password-active.pdf" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /DesignerNewsForObjc/Images.xcassets/Vector/icon-password-active.imageset/icon-password-active.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/b70dfb6ec8eeb52a128b2778b9469eb598ce53da/DesignerNewsForObjc/Images.xcassets/Vector/icon-password-active.imageset/icon-password-active.pdf -------------------------------------------------------------------------------- /DesignerNewsForObjc/Images.xcassets/Vector/icon-password.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon-password.pdf" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /DesignerNewsForObjc/Images.xcassets/Vector/icon-password.imageset/icon-password.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/b70dfb6ec8eeb52a128b2778b9469eb598ce53da/DesignerNewsForObjc/Images.xcassets/Vector/icon-password.imageset/icon-password.pdf -------------------------------------------------------------------------------- /DesignerNewsForObjc/Images.xcassets/Vector/icon-reply.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon-reply.pdf" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /DesignerNewsForObjc/Images.xcassets/Vector/icon-reply.imageset/icon-reply.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/b70dfb6ec8eeb52a128b2778b9469eb598ce53da/DesignerNewsForObjc/Images.xcassets/Vector/icon-reply.imageset/icon-reply.pdf -------------------------------------------------------------------------------- /DesignerNewsForObjc/Images.xcassets/Vector/icon-sketch.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon-sketch.pdf" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /DesignerNewsForObjc/Images.xcassets/Vector/icon-sketch.imageset/icon-sketch.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/b70dfb6ec8eeb52a128b2778b9469eb598ce53da/DesignerNewsForObjc/Images.xcassets/Vector/icon-sketch.imageset/icon-sketch.pdf -------------------------------------------------------------------------------- /DesignerNewsForObjc/Images.xcassets/Vector/icon-twitter.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon-twitter.pdf" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /DesignerNewsForObjc/Images.xcassets/Vector/icon-twitter.imageset/icon-twitter.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/b70dfb6ec8eeb52a128b2778b9469eb598ce53da/DesignerNewsForObjc/Images.xcassets/Vector/icon-twitter.imageset/icon-twitter.pdf -------------------------------------------------------------------------------- /DesignerNewsForObjc/Images.xcassets/Vector/icon-upvote-active.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon-upvote-active.pdf" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /DesignerNewsForObjc/Images.xcassets/Vector/icon-upvote-active.imageset/icon-upvote-active.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/b70dfb6ec8eeb52a128b2778b9469eb598ce53da/DesignerNewsForObjc/Images.xcassets/Vector/icon-upvote-active.imageset/icon-upvote-active.pdf -------------------------------------------------------------------------------- /DesignerNewsForObjc/Images.xcassets/Vector/icon-upvote.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon-upvote.pdf" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /DesignerNewsForObjc/Images.xcassets/Vector/icon-upvote.imageset/icon-upvote.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/b70dfb6ec8eeb52a128b2778b9469eb598ce53da/DesignerNewsForObjc/Images.xcassets/Vector/icon-upvote.imageset/icon-upvote.pdf -------------------------------------------------------------------------------- /DesignerNewsForObjc/Images.xcassets/Vector/icon-xcode.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon-xcode.pdf" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /DesignerNewsForObjc/Images.xcassets/Vector/icon-xcode.imageset/icon-xcode.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/b70dfb6ec8eeb52a128b2778b9469eb598ce53da/DesignerNewsForObjc/Images.xcassets/Vector/icon-xcode.imageset/icon-xcode.pdf -------------------------------------------------------------------------------- /DesignerNewsForObjc/Images.xcassets/Vector/input-outline-active.imageset/input-outline-active.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/b70dfb6ec8eeb52a128b2778b9469eb598ce53da/DesignerNewsForObjc/Images.xcassets/Vector/input-outline-active.imageset/input-outline-active.pdf -------------------------------------------------------------------------------- /DesignerNewsForObjc/Images.xcassets/Vector/input-outline.imageset/input-outline.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/b70dfb6ec8eeb52a128b2778b9469eb598ce53da/DesignerNewsForObjc/Images.xcassets/Vector/input-outline.imageset/input-outline.pdf -------------------------------------------------------------------------------- /DesignerNewsForObjc/Images.xcassets/Vector/loading.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "loading.pdf" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /DesignerNewsForObjc/Images.xcassets/Vector/loading.imageset/loading.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/b70dfb6ec8eeb52a128b2778b9469eb598ce53da/DesignerNewsForObjc/Images.xcassets/Vector/loading.imageset/loading.pdf -------------------------------------------------------------------------------- /DesignerNewsForObjc/Sections/Comment/CommentViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // CommentViewController.h 3 | // DesignerNewsForObjc 4 | // 5 | // Created by Sam Lau on 4/8/15. 6 | // Copyright (c) 2015 Sam Lau. All rights reserved. 7 | // 8 | 9 | #import 10 | #import "CommentViewModel.h" 11 | #import "Story.h" 12 | 13 | @interface CommentViewController : UITableViewController 14 | 15 | @property (strong, nonatomic, readonly) CommentViewModel *viewModel; 16 | 17 | - (void)setViewModelWithStory:(Story*)story; 18 | 19 | @end 20 | -------------------------------------------------------------------------------- /DesignerNewsForObjc/Sections/Login/LoginClient.h: -------------------------------------------------------------------------------- 1 | // 2 | // LoginClient.h 3 | // DesignerNewsForObjc 4 | // 5 | // Created by Sam Lau on 4/3/15. 6 | // Copyright (c) 2015 Sam Lau. All rights reserved. 7 | // 8 | 9 | #import 10 | #import 11 | 12 | @interface LoginClient : NSObject 13 | 14 | + (RACSignal *)loginWithUsername:(NSString *)username password:(NSString *)password; 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /DesignerNewsForObjc/Sections/Story/StoryViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // StoryViewController.h 3 | // DesignerNewsForObjc 4 | // 5 | // Created by Sam Lau on 3/27/15. 6 | // Copyright (c) 2015 Sam Lau. All rights reserved. 7 | // 8 | 9 | #import 10 | #import "StoryViewModel.h" 11 | 12 | @interface StoryViewController : UITableViewController 13 | 14 | @property (strong, nonatomic, readonly) StoryViewModel* viewModel; 15 | @property (weak, nonatomic) IBOutlet UIBarButtonItem *loginBarButton; 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /DesignerNewsForObjc/Sections/Web/WebViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // WebViewController.h 3 | // DesignerNewsForObjc 4 | // 5 | // Created by Sam Lau on 4/8/15. 6 | // Copyright (c) 2015 Sam Lau. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface WebViewController : UIViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /DesignerNewsForObjc/Sections/Web/WebViewController.m: -------------------------------------------------------------------------------- 1 | // 2 | // WebViewController.m 3 | // DesignerNewsForObjc 4 | // 5 | // Created by Sam Lau on 4/8/15. 6 | // Copyright (c) 2015 Sam Lau. All rights reserved. 7 | // 8 | 9 | #import "WebViewController.h" 10 | 11 | @interface WebViewController () 12 | 13 | @end 14 | 15 | @implementation WebViewController 16 | 17 | - (void)viewDidLoad 18 | { 19 | [super viewDidLoad]; 20 | } 21 | 22 | @end 23 | -------------------------------------------------------------------------------- /DesignerNewsForObjc/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // DesignerNewsForObjc 4 | // 5 | // Created by Sam Lau on 3/25/15. 6 | // Copyright (c) 2015 Sam Lau. All rights reserved. 7 | // 8 | 9 | #import 10 | #import "AppDelegate.h" 11 | 12 | int main(int argc, char * argv[]) { 13 | @autoreleasepool { 14 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /DesignerNewsForObjcTests/General/Categories/UIBarButtonItem+Specs.h: -------------------------------------------------------------------------------- 1 | // 2 | // Copyright (c) 2014 Pawel Dudek. All rights reserved. 3 | // 4 | 5 | 6 | #import 7 | 8 | @interface UIBarButtonItem (Specs) 9 | 10 | - (void)specsSimulateTap; 11 | 12 | @end 13 | -------------------------------------------------------------------------------- /DesignerNewsForObjcTests/General/Categories/UIBarButtonItem+Specs.m: -------------------------------------------------------------------------------- 1 | // 2 | // Copyright (c) 2014 Pawel Dudek. All rights reserved. 3 | // 4 | 5 | 6 | #import "UIBarButtonItem+Specs.h" 7 | 8 | 9 | @implementation UIBarButtonItem (Specs) 10 | 11 | - (void)specsSimulateTap { 12 | [self.target performSelector:self.action withObject:self]; 13 | } 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /DesignerNewsForObjcTests/General/Categories/UIButton+Specs.h: -------------------------------------------------------------------------------- 1 | // 2 | // Copyright (c) 2014 Pawel Dudek. All rights reserved. 3 | // 4 | 5 | 6 | #import 7 | 8 | @interface UIButton (Specs) 9 | 10 | - (void)specsSimulateTap; 11 | 12 | @end 13 | -------------------------------------------------------------------------------- /DesignerNewsForObjcTests/General/Categories/UIButton+Specs.m: -------------------------------------------------------------------------------- 1 | // 2 | // Copyright (c) 2014 Pawel Dudek. All rights reserved. 3 | // 4 | 5 | 6 | #import "UIButton+Specs.h" 7 | 8 | 9 | @implementation UIButton (Specs) 10 | 11 | - (void)specsSimulateTap { 12 | [self sendActionsForControlEvents:UIControlEventTouchUpInside]; 13 | } 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /DesignerNewsForObjcTests/General/Categories/UIView+Specs.h: -------------------------------------------------------------------------------- 1 | // 2 | // Copyright (c) 2014 Pawel Dudek. All rights reserved. 3 | // 4 | 5 | 6 | #import 7 | 8 | @interface UIView (Specs) 9 | 10 | - (UIButton *)specsFindButtonWithTitle:(NSString *)title; 11 | - (UIButton *)specsFindButtonWithTag:(NSInteger)tag; 12 | - (UITextField *)specsFindTextFieldWithPlaceholder:(NSString *)placeholder; 13 | - (UILabel *)specsFindLabelWithText:(NSString *)text; 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /DesignerNewsForObjcTests/General/Categories/UIViewController+Storyboard.h: -------------------------------------------------------------------------------- 1 | // 2 | // UIViewController+Storyboard.h 3 | // DesignerNewsForObjc 4 | // 5 | // Created by Sam Lau on 3/30/15. 6 | // Copyright (c) 2015 Sam Lau. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface UIViewController (Storyboard) 12 | 13 | + (id)loadViewControllerWithIdentifier:(NSString*)identifier storyBoardName:(NSString*)storyboardName; 14 | + (id)loadViewControllerWithIdentifierForMainStoryboard:(NSString *)identifier; 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /DesignerNewsForObjcTests/Helpers/TestHelper.h: -------------------------------------------------------------------------------- 1 | // 2 | // TestHelper.h 3 | // DesignerNewsForObjc 4 | // 5 | // Created by Sam Lau on 3/29/15. 6 | // Copyright (c) 2015 Sam Lau. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface TestHelper : NSObject 12 | 13 | + (NSDictionary*)JSONDataFromFileName:(NSString *)fileName; 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /DesignerNewsForObjcTests/JSON/Login/login_response.json: -------------------------------------------------------------------------------- 1 | { 2 | "access_token": "4422ea7f05750e93a101cb77ff76dffd3d65d46ebf6ed5b94d211e5d9b3b80bc", 3 | "token_type": "bearer", 4 | "scope": "user", 5 | "created_at": 1428040414 6 | } -------------------------------------------------------------------------------- /DesignerNewsForObjcTests/JSON/Story/stories_conf.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "request" : 4 | { 5 | "uri" : "/api/v1/stories", 6 | "method" : "get", 7 | "queries" : 8 | { 9 | "client_id" : "750ab22aac78be1c6d4bbe584f0e3477064f646720f327c5464bc127100a1a6d", 10 | "page" : "1" 11 | } 12 | }, 13 | "response" : 14 | { 15 | "file" : "./Story/stories_response.json" 16 | } 17 | } 18 | ] 19 | -------------------------------------------------------------------------------- /DesignerNewsForObjcTests/JSON/Story/story_upvote_conf.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "request" : 4 | { 5 | "uri" : "/api/v1/stories/46826/upvote", 6 | "method" : "post", 7 | "headers" : 8 | { 9 | "Authorization" : "Bearer 4422ea7f05750e93a101cb77ff76dffd3d65d46ebf6ed5b94d211e5d9b3b80bc" 10 | } 11 | }, 12 | "response" : 13 | { 14 | "file" : "./Story/story_upvote_response.json" 15 | } 16 | } 17 | ] 18 | 19 | 20 | -------------------------------------------------------------------------------- /DesignerNewsForObjcTests/JSON/settings.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "include" : "./Story/stories_conf.json" 4 | }, 5 | { 6 | "include" : "./Login/login_conf.json" 7 | }, 8 | { 9 | "include" : "./Story/story_upvote_conf.json" 10 | } 11 | ] 12 | -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- 1 | pod 'TPKeyboardAvoiding', '~> 1.2.6' 2 | pod 'AFNetworking', '~> 2.5.1' 3 | pod 'Mantle', '~> 1.5.4' 4 | pod 'ReactiveCocoa', '~> 2.4.4' 5 | pod 'ReactiveViewModel', '~> 0.3' 6 | 7 | target :DesignerNewsForObjcTests, :exclusive => true do 8 | pod 'Kiwi', '~> 2.3.1' 9 | end 10 | 11 | -------------------------------------------------------------------------------- /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/Core/KWAny.h: -------------------------------------------------------------------------------- 1 | // 2 | // Licensed under the terms in License.txt 3 | // 4 | // Copyright 2010 Allen Ding. All rights reserved. 5 | // 6 | 7 | #import "KiwiConfiguration.h" 8 | 9 | // KWAny exists to determine arguments in a message pattern that should 10 | // match any value. Used for pointers as well as for scalar values. 11 | @interface KWAny : NSObject 12 | 13 | #pragma mark - Initializing 14 | 15 | + (id)any; 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Core/KWAny.m: -------------------------------------------------------------------------------- 1 | // 2 | // Licensed under the terms in License.txt 3 | // 4 | // Copyright 2010 Allen Ding. All rights reserved. 5 | // 6 | 7 | #import "KWAny.h" 8 | 9 | @implementation KWAny 10 | 11 | #pragma mark - Initializing 12 | 13 | + (id)any { 14 | static KWAny *sharedAny = nil; 15 | static dispatch_once_t onceToken; 16 | dispatch_once(&onceToken, ^{ 17 | sharedAny = [self new]; 18 | 19 | }); 20 | return sharedAny; 21 | } 22 | 23 | @end 24 | -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Core/KWCaptureSpy.h: -------------------------------------------------------------------------------- 1 | #import "KWMessageSpying.h" 2 | 3 | @interface KWCaptureSpy : NSObject 4 | 5 | @property (nonatomic, strong, readonly) id argument; 6 | 7 | - (id)initWithArgumentIndex:(NSUInteger)index; 8 | 9 | @end 10 | -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Core/KWCountType.h: -------------------------------------------------------------------------------- 1 | // 2 | // Licensed under the terms in License.txt 3 | // 4 | // Copyright 2010 Allen Ding. All rights reserved. 5 | // 6 | 7 | #import "KiwiConfiguration.h" 8 | 9 | enum { 10 | KWCountTypeExact, 11 | KWCountTypeAtLeast, 12 | KWCountTypeAtMost 13 | }; 14 | 15 | typedef NSUInteger KWCountType; 16 | -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Core/KWDeviceInfo.h: -------------------------------------------------------------------------------- 1 | // 2 | // Licensed under the terms in License.txt 3 | // 4 | // Copyright 2010 Allen Ding. All rights reserved. 5 | // 6 | 7 | #import "KiwiConfiguration.h" 8 | 9 | @interface KWDeviceInfo : NSObject 10 | 11 | #pragma mark - Getting the Device Type 12 | 13 | + (BOOL)isSimulator; 14 | + (BOOL)isPhysical; 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Core/KWExampleDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // KWExampleGroupDelegate.h 3 | // Kiwi 4 | // 5 | // Created by Luke Redpath on 08/09/2011. 6 | // Copyright 2011 Allen Ding. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @class KWExample; 12 | @class KWFailure; 13 | 14 | @protocol KWExampleDelegate 15 | 16 | - (void)example:(KWExample *)example didFailWithFailure:(KWFailure *)failure; 17 | 18 | @end 19 | -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Core/KWExpectationType.h: -------------------------------------------------------------------------------- 1 | // 2 | // Licensed under the terms in License.txt 3 | // 4 | // Copyright 2010 Allen Ding. All rights reserved. 5 | // 6 | 7 | #import "KiwiConfiguration.h" 8 | 9 | enum { 10 | KWExpectationTypeShould, 11 | KWExpectationTypeShouldNot, 12 | KWExpectationTypeMaybe 13 | }; 14 | 15 | typedef NSUInteger KWExpectationType; 16 | -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Core/KWFormatter.h: -------------------------------------------------------------------------------- 1 | // 2 | // Licensed under the terms in License.txt 3 | // 4 | // Copyright 2010 Allen Ding. All rights reserved. 5 | // 6 | 7 | #import "KiwiConfiguration.h" 8 | 9 | @interface KWFormatter : NSObject 10 | 11 | #pragma mark - Getting Descriptions 12 | 13 | + (NSString *)formatObject:(id)anObject; 14 | + (NSString *)formatObjectIncludingClass:(id)anObject; 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Core/KWLet.h: -------------------------------------------------------------------------------- 1 | // 2 | // Licensed under the terms in License.txt 3 | // 4 | // Copyright 2010 Allen Ding. All rights reserved. 5 | // 6 | 7 | #if __has_feature(objc_arc) 8 | # define KW_ARC_AUTORELEASE(obj) obj 9 | #else 10 | # define KW_ARC_AUTORELEASE(obj) [obj autorelease] 11 | #endif 12 | 13 | #define KW_LET_REF(var) \ 14 | (__autoreleasing id *) \ 15 | ( (void *(^)(void)) KW_ARC_AUTORELEASE([^{ void *ref = &var; return ref; } copy]) )() 16 | -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Core/KWMessageSpying.h: -------------------------------------------------------------------------------- 1 | // 2 | // Licensed under the terms in License.txt 3 | // 4 | // Copyright 2010 Allen Ding. All rights reserved. 5 | // 6 | 7 | #import "KiwiConfiguration.h" 8 | 9 | @protocol KWMessageSpying 10 | 11 | #pragma mark - Spying on Messages 12 | 13 | - (void)object:(id)anObject didReceiveInvocation:(NSInvocation *)anInvocation; 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Core/KWNull.h: -------------------------------------------------------------------------------- 1 | // 2 | // Licensed under the terms in License.txt 3 | // 4 | // Copyright 2010 Allen Ding. All rights reserved. 5 | // 6 | 7 | #import "KiwiConfiguration.h" 8 | 9 | // KWNull exists to represent the same thing as NSNull, except that Kiwi needs 10 | // to distinguish between null singletons used internally and those a user 11 | // is using as an object parameter. 12 | @interface KWNull : NSObject 13 | 14 | #pragma mark - Initializing 15 | 16 | + (id)null; 17 | 18 | @end 19 | -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Core/KWNull.m: -------------------------------------------------------------------------------- 1 | // 2 | // Licensed under the terms in License.txt 3 | // 4 | // Copyright 2010 Allen Ding. All rights reserved. 5 | // 6 | 7 | #import "KWNull.h" 8 | 9 | @implementation KWNull 10 | 11 | #pragma mark - Initializing 12 | 13 | 14 | + (id)null { 15 | static KWNull *sharedNull = nil; 16 | static dispatch_once_t onceToken; 17 | dispatch_once(&onceToken, ^{ 18 | sharedNull = [self new]; 19 | 20 | }); 21 | 22 | return sharedNull; 23 | } 24 | 25 | @end 26 | -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Core/KWProbe.h: -------------------------------------------------------------------------------- 1 | // 2 | // KWProbe.h 3 | // iOSFalconCore 4 | // 5 | // Created by Luke Redpath on 13/01/2011. 6 | // Copyright 2011 LJR Software Limited. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @protocol KWProbe 12 | - (BOOL)isSatisfied; 13 | - (void)sample; 14 | @end 15 | -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Core/KWProbePoller.h: -------------------------------------------------------------------------------- 1 | // 2 | // KWProbePoller.h 3 | // iOSFalconCore 4 | // 5 | // Created by Luke Redpath on 13/01/2011. 6 | // Copyright 2011 LJR Software Limited. All rights reserved. 7 | // 8 | 9 | #import 10 | #import "KWProbe.h" 11 | 12 | #define kKW_DEFAULT_PROBE_DELAY 0.1 13 | 14 | @interface KWProbePoller : NSObject 15 | 16 | - (id)initWithTimeout:(NSTimeInterval)theTimeout delay:(NSTimeInterval)theDelay shouldWait:(BOOL)wait; 17 | - (BOOL)check:(id)probe; 18 | 19 | @end 20 | -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Core/KWReporting.h: -------------------------------------------------------------------------------- 1 | // 2 | // Licensed under the terms in License.txt 3 | // 4 | // Copyright 2010 Allen Ding. All rights reserved. 5 | // 6 | 7 | #import "KiwiConfiguration.h" 8 | 9 | @class KWFailure; 10 | 11 | @protocol KWReporting 12 | 13 | #pragma mark - Reporting Failures 14 | 15 | - (void)reportFailure:(KWFailure *)failure; 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Core/KWSymbolicator.h: -------------------------------------------------------------------------------- 1 | // 2 | // KWSymbolicator.h 3 | // Kiwi 4 | // 5 | // Created by Jerry Marino on 4/28/13. 6 | // Copyright (c) 2013 Allen Ding. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | long kwCallerAddress(void); 12 | 13 | @interface NSString (KWShellCommand) 14 | 15 | + (NSString *)stringWithShellCommand:(NSString *)command arguments:(NSArray *)arguments; 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Core/KiwiBlockMacros.h: -------------------------------------------------------------------------------- 1 | // 2 | // KiwiBlockMacros.h 3 | // Kiwi 4 | // 5 | // Created by Luke Redpath on 11/07/2011. 6 | // Copyright 2011 Allen Ding. All rights reserved. 7 | // 8 | 9 | // user defined matchers 10 | #define registerMatcher(name) \ 11 | \ 12 | @interface NSObject (KWUserDefinedMatchersDefinitions) \ 13 | - (void)name; \ 14 | @end \ 15 | 16 | #define defineMatcher(...) KWDefineMatchers(__VA_ARGS__) 17 | -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Core/NSMethodSignature+KiwiAdditions.h: -------------------------------------------------------------------------------- 1 | // 2 | // Licensed under the terms in License.txt 3 | // 4 | // Copyright 2010 Allen Ding. All rights reserved. 5 | // 6 | 7 | #import "KiwiConfiguration.h" 8 | 9 | @interface NSMethodSignature(KiwiAdditions) 10 | 11 | #pragma mark - Getting Information on Message Arguments 12 | 13 | - (NSUInteger)numberOfMessageArguments; 14 | - (const char *)messageArgumentTypeAtIndex:(NSUInteger)anIndex; 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Core/NSObject+KiwiSpyAdditions.h: -------------------------------------------------------------------------------- 1 | // 2 | // Licensed under the terms in License.txt 3 | // 4 | // Copyright 2010 Allen Ding. All rights reserved. 5 | // 6 | 7 | #import "KiwiConfiguration.h" 8 | 9 | @class KWCaptureSpy; 10 | 11 | @protocol KiwiSpyAdditions 12 | 13 | - (KWCaptureSpy *)captureArgument:(SEL)selector atIndex:(NSUInteger)index; 14 | + (KWCaptureSpy *)captureArgument:(SEL)selector atIndex:(NSUInteger)index; 15 | 16 | @end 17 | 18 | @interface NSObject (KiwiSpyAdditions) 19 | 20 | @end 21 | -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Core/NSObject+KiwiVerifierAdditions.h: -------------------------------------------------------------------------------- 1 | // 2 | // Licensed under the terms in License.txt 3 | // 4 | // Copyright 2010 Allen Ding. All rights reserved. 5 | // 6 | 7 | #import "KiwiConfiguration.h" 8 | 9 | @protocol KWVerifying; 10 | 11 | @interface NSObject(KiwiVerifierAdditions) 12 | 13 | #pragma mark - Attaching to Verifiers 14 | 15 | - (id)attachToVerifier:(id)aVerifier; 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Core/NSObject+KiwiVerifierAdditions.m: -------------------------------------------------------------------------------- 1 | // 2 | // Licensed under the terms in License.txt 3 | // 4 | // Copyright 2010 Allen Ding. All rights reserved. 5 | // 6 | 7 | #import "NSObject+KiwiVerifierAdditions.h" 8 | #import "KWVerifying.h" 9 | 10 | @implementation NSObject(KiwiVerifierAdditions) 11 | 12 | #pragma mark - Attaching to Verifiers 13 | 14 | - (id)attachToVerifier:(id)aVerifier { 15 | [aVerifier setSubject:self]; 16 | return aVerifier; 17 | } 18 | 19 | @end 20 | -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Core/NSValue+KiwiAdditions.h: -------------------------------------------------------------------------------- 1 | // 2 | // Licensed under the terms in License.txt 3 | // 4 | // Copyright 2010 Allen Ding. All rights reserved. 5 | // 6 | 7 | #import "KiwiConfiguration.h" 8 | 9 | @interface NSValue(KiwiAdditions) 10 | 11 | #pragma mark - Accessing Data 12 | 13 | - (NSData *)dataValue; 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Matchers/KWBeBetweenMatcher.h: -------------------------------------------------------------------------------- 1 | // 2 | // Licensed under the terms in License.txt 3 | // 4 | // Copyright 2010 Allen Ding. All rights reserved. 5 | // 6 | 7 | #import "KiwiConfiguration.h" 8 | #import "KWMatcher.h" 9 | 10 | @interface KWBeBetweenMatcher : KWMatcher 11 | 12 | #pragma mark - Configuring Matchers 13 | 14 | // TODO: 'and' below is a reserved word in C++ 15 | - (void)beBetween:(id)aLowerEndpoint and:(id)anUpperEndpoint; 16 | - (void)beInTheIntervalFrom:(id)aLowerEndpoint to:(id)anUpperEndpoint; 17 | 18 | @end 19 | -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Matchers/KWBeEmptyMatcher.h: -------------------------------------------------------------------------------- 1 | // 2 | // Licensed under the terms in License.txt 3 | // 4 | // Copyright 2010 Allen Ding. All rights reserved. 5 | // 6 | 7 | #import "KiwiConfiguration.h" 8 | #import "KWMatcher.h" 9 | 10 | @interface KWBeEmptyMatcher : KWMatcher 11 | 12 | #pragma mark - Configuring Matchers 13 | 14 | - (void)beEmpty; 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Matchers/KWBeIdenticalToMatcher.h: -------------------------------------------------------------------------------- 1 | // 2 | // Licensed under the terms in License.txt 3 | // 4 | // Copyright 2010 Allen Ding. All rights reserved. 5 | // 6 | 7 | #import "KiwiConfiguration.h" 8 | #import "KWMatcher.h" 9 | 10 | @interface KWBeIdenticalToMatcher : KWMatcher 11 | 12 | #pragma mark - Configuring Matchers 13 | 14 | - (void)beIdenticalTo:(id)anObject; 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Matchers/KWBeKindOfClassMatcher.h: -------------------------------------------------------------------------------- 1 | // 2 | // Licensed under the terms in License.txt 3 | // 4 | // Copyright 2010 Allen Ding. All rights reserved. 5 | // 6 | 7 | #import "KiwiConfiguration.h" 8 | #import "KWMatcher.h" 9 | 10 | @interface KWBeKindOfClassMatcher : KWMatcher 11 | 12 | #pragma mark - Configuring Matchers 13 | 14 | - (void)beKindOfClass:(Class)aClass; 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Matchers/KWBeMemberOfClassMatcher.h: -------------------------------------------------------------------------------- 1 | // 2 | // Licensed under the terms in License.txt 3 | // 4 | // Copyright 2010 Allen Ding. All rights reserved. 5 | // 6 | 7 | #import "KiwiConfiguration.h" 8 | #import "KWMatcher.h" 9 | 10 | @interface KWBeMemberOfClassMatcher : KWMatcher 11 | 12 | #pragma mark - Configuring Matchers 13 | 14 | - (void)beMemberOfClass:(Class)aClass; 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Matchers/KWBeSubclassOfClassMatcher.h: -------------------------------------------------------------------------------- 1 | // 2 | // Licensed under the terms in License.txt 3 | // 4 | // Copyright 2010 Allen Ding. All rights reserved. 5 | // 6 | 7 | #import "KiwiConfiguration.h" 8 | #import "KWMatcher.h" 9 | 10 | @interface KWBeSubclassOfClassMatcher : KWMatcher 11 | 12 | #pragma mark - Configuring Matchers 13 | 14 | - (void)beSubclassOfClass:(Class)aClass; 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Matchers/KWBeTrueMatcher.h: -------------------------------------------------------------------------------- 1 | // 2 | // Licensed under the terms in License.txt 3 | // 4 | // Copyright 2010 Allen Ding. All rights reserved. 5 | // 6 | 7 | #import "KiwiConfiguration.h" 8 | #import "KWMatcher.h" 9 | 10 | @interface KWBeTrueMatcher : KWMatcher 11 | 12 | #pragma mark - Configuring Matchers 13 | 14 | - (void)beTrue; 15 | - (void)beFalse; 16 | - (void)beYes; 17 | - (void)beNo; 18 | 19 | @end 20 | -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Matchers/KWBeWithinMatcher.h: -------------------------------------------------------------------------------- 1 | // 2 | // Licensed under the terms in License.txt 3 | // 4 | // Copyright 2010 Allen Ding. All rights reserved. 5 | // 6 | 7 | #import "KiwiConfiguration.h" 8 | #import "KWMatcher.h" 9 | 10 | @interface KWBeWithinMatcher : KWMatcher 11 | 12 | #pragma mark - Configuring Matchers 13 | 14 | - (void)beWithin:(id)aDistance of:(id)aValue; 15 | - (void)equal:(double)aValue withDelta:(double)aDelta; 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Matchers/KWBeZeroMatcher.h: -------------------------------------------------------------------------------- 1 | // 2 | // Licensed under the terms in License.txt 3 | // 4 | // Copyright 2010 Allen Ding. All rights reserved. 5 | // 6 | 7 | #import "KiwiConfiguration.h" 8 | #import "KWMatcher.h" 9 | 10 | @interface KWBeZeroMatcher : KWMatcher 11 | 12 | #pragma mark - Configuring Matchers 13 | 14 | - (void)beZero; 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Matchers/KWBlockRaiseMatcher.h: -------------------------------------------------------------------------------- 1 | // 2 | // Licensed under the terms in License.txt 3 | // 4 | // Copyright 2010 Allen Ding. All rights reserved. 5 | // 6 | 7 | #import "KiwiConfiguration.h" 8 | #import "KWMatcher.h" 9 | 10 | @interface KWBlockRaiseMatcher : KWMatcher 11 | 12 | #pragma mark - Configuring Matchers 13 | 14 | - (void)raise; 15 | - (void)raiseWithName:(NSString *)aName; 16 | - (void)raiseWithReason:(NSString *)aReason; 17 | - (void)raiseWithName:(NSString *)aName reason:(NSString *)aReason; 18 | 19 | @end 20 | -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Matchers/KWConformToProtocolMatcher.h: -------------------------------------------------------------------------------- 1 | // 2 | // Licensed under the terms in License.txt 3 | // 4 | // Copyright 2010 Allen Ding. All rights reserved. 5 | // 6 | 7 | #import "KiwiConfiguration.h" 8 | #import "KWMatcher.h" 9 | 10 | @interface KWConformToProtocolMatcher : KWMatcher 11 | 12 | #pragma mark - Configuring Matchers 13 | 14 | - (void)conformToProtocol:(Protocol *)aProtocol; 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Matchers/KWEqualMatcher.h: -------------------------------------------------------------------------------- 1 | // 2 | // Licensed under the terms in License.txt 3 | // 4 | // Copyright 2010 Allen Ding. All rights reserved. 5 | // 6 | 7 | #import "KiwiConfiguration.h" 8 | #import "KWMatcher.h" 9 | 10 | @interface KWEqualMatcher : KWMatcher 11 | 12 | #pragma mark - Configuring Matchers 13 | 14 | - (void)equal:(id)anObject; 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Matchers/KWGenericMatchEvaluator.h: -------------------------------------------------------------------------------- 1 | // 2 | // KWGenericMatcher.h 3 | // Kiwi 4 | // 5 | // Created by Allen Ding on 1/31/13. 6 | // Copyright (c) 2013 Allen Ding. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface KWGenericMatchEvaluator : NSObject 12 | 13 | + (BOOL)isGenericMatcher:(id)object; 14 | 15 | + (BOOL)genericMatcher:(id)matcher matches:(id)object; 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Matchers/KWInequalityMatcher.h: -------------------------------------------------------------------------------- 1 | // 2 | // Licensed under the terms in License.txt 3 | // 4 | // Copyright 2010 Allen Ding. All rights reserved. 5 | // 6 | 7 | #import "KiwiConfiguration.h" 8 | #import "KWMatcher.h" 9 | 10 | @interface KWInequalityMatcher : KWMatcher 11 | 12 | #pragma mark - Configuring Matchers 13 | 14 | - (void)beLessThan:(id)aValue; 15 | - (void)beLessThanOrEqualTo:(id)aValue; 16 | - (void)beGreaterThan:(id)aValue; 17 | - (void)beGreaterThanOrEqualTo:(id)aValue; 18 | 19 | @end 20 | -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Matchers/KWRegularExpressionPatternMatcher.h: -------------------------------------------------------------------------------- 1 | // 2 | // KWRegularExpressionPatternMatcher.h 3 | // Kiwi 4 | // 5 | // Created by Kristopher Johnson on 4/11/13. 6 | // Copyright (c) 2013 Allen Ding. All rights reserved. 7 | // 8 | 9 | #import "KiwiConfiguration.h" 10 | #import "KWMatcher.h" 11 | 12 | @interface KWRegularExpressionPatternMatcher : KWMatcher 13 | 14 | - (void)matchPattern:(NSString *)pattern; 15 | 16 | - (void)matchPattern:(NSString *)pattern options:(NSRegularExpressionOptions)options; 17 | 18 | @end 19 | -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Matchers/KWRespondToSelectorMatcher.h: -------------------------------------------------------------------------------- 1 | // 2 | // Licensed under the terms in License.txt 3 | // 4 | // Copyright 2010 Allen Ding. All rights reserved. 5 | // 6 | 7 | #import "KiwiConfiguration.h" 8 | #import "KWMatcher.h" 9 | 10 | @interface KWRespondToSelectorMatcher : KWMatcher 11 | 12 | #pragma mark - Configuring Matchers 13 | 14 | - (void)respondToSelector:(SEL)aSelector; 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Matchers/KWStringPrefixMatcher.h: -------------------------------------------------------------------------------- 1 | // 2 | // StringPrefixMatcher.h 3 | // Kiwi 4 | // 5 | // Created by Luke Redpath on 17/01/2011. 6 | // Copyright 2011 Allen Ding. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface KWStringPrefixMatcher : NSObject 12 | 13 | + (id)matcherWithPrefix:(NSString *)aPrefix; 14 | - (id)initWithPrefix:(NSString *)aPrefix; 15 | 16 | @end 17 | 18 | #define hasPrefix(prefix) [KWStringPrefixMatcher matcherWithPrefix:prefix] 19 | -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Mocking/NSObject+KiwiMockAdditions.h: -------------------------------------------------------------------------------- 1 | // 2 | // Licensed under the terms in License.txt 3 | // 4 | // Copyright 2010 Allen Ding. All rights reserved. 5 | // 6 | 7 | #import "KiwiConfiguration.h" 8 | 9 | @protocol KiwiMockAdditions 10 | 11 | #pragma mark - Creating Mocks 12 | 13 | + (id)mock; 14 | + (id)mockWithName:(NSString *)aName; 15 | 16 | + (id)nullMock; 17 | + (id)nullMockWithName:(NSString *)aName; 18 | 19 | @end 20 | 21 | @interface NSObject(KiwiMockAdditions) 22 | 23 | @end 24 | -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Nodes/KWAfterAllNode.h: -------------------------------------------------------------------------------- 1 | // 2 | // Licensed under the terms in License.txt 3 | // 4 | // Copyright 2010 Allen Ding. All rights reserved. 5 | // 6 | 7 | #import "KiwiConfiguration.h" 8 | #import "KWBlockNode.h" 9 | #import "KWExampleNode.h" 10 | 11 | @interface KWAfterAllNode : KWBlockNode 12 | 13 | #pragma mark - Initializing 14 | 15 | + (id)afterAllNodeWithCallSite:(KWCallSite *)aCallSite block:(void (^)(void))block; 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Nodes/KWAfterEachNode.h: -------------------------------------------------------------------------------- 1 | // 2 | // Licensed under the terms in License.txt 3 | // 4 | // Copyright 2010 Allen Ding. All rights reserved. 5 | // 6 | 7 | #import "KiwiConfiguration.h" 8 | #import "KWBlockNode.h" 9 | #import "KWExampleNode.h" 10 | 11 | @interface KWAfterEachNode : KWBlockNode 12 | 13 | #pragma mark - Initializing 14 | 15 | + (id)afterEachNodeWithCallSite:(KWCallSite *)aCallSite block:(void (^)(void))block; 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Nodes/KWBeforeAllNode.h: -------------------------------------------------------------------------------- 1 | // 2 | // Licensed under the terms in License.txt 3 | // 4 | // Copyright 2010 Allen Ding. All rights reserved. 5 | // 6 | 7 | #import "KiwiConfiguration.h" 8 | #import "KWBlockNode.h" 9 | #import "KWExampleNode.h" 10 | 11 | @interface KWBeforeAllNode : KWBlockNode 12 | 13 | #pragma mark - Initializing 14 | 15 | + (id)beforeAllNodeWithCallSite:(KWCallSite *)aCallSite block:(void (^)(void))block; 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Nodes/KWBeforeEachNode.h: -------------------------------------------------------------------------------- 1 | // 2 | // Licensed under the terms in License.txt 3 | // 4 | // Copyright 2010 Allen Ding. All rights reserved. 5 | // 6 | 7 | #import "KiwiConfiguration.h" 8 | #import "KWBlockNode.h" 9 | #import "KWExampleNode.h" 10 | 11 | @interface KWBeforeEachNode : KWBlockNode 12 | 13 | #pragma mark - Initializing 14 | 15 | + (id)beforeEachNodeWithCallSite:(KWCallSite *)aCallSite block:(void (^)(void))block; 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /Pods/Kiwi/Classes/Nodes/KWExampleNode.h: -------------------------------------------------------------------------------- 1 | // 2 | // Licensed under the terms in License.txt 3 | // 4 | // Copyright 2010 Allen Ding. All rights reserved. 5 | // 6 | 7 | #import "KiwiConfiguration.h" 8 | 9 | @class KWContextNode; 10 | @protocol KWExampleNodeVisitor; 11 | 12 | @protocol KWExampleNode 13 | 14 | #pragma mark - Accepting Visitors 15 | 16 | - (void)acceptExampleNodeVisitor:(id)aVisitor; 17 | 18 | @optional 19 | 20 | - (NSArray *)contextStack; 21 | 22 | @end 23 | -------------------------------------------------------------------------------- /Pods/Mantle/Mantle/NSObject+MTLComparisonAdditions.h: -------------------------------------------------------------------------------- 1 | // 2 | // NSObject+MTLComparisonAdditions.h 3 | // Mantle 4 | // 5 | // Created by Josh Vera on 10/26/12. 6 | // Copyright (c) 2012 GitHub. All rights reserved. 7 | // 8 | // Portions copyright (c) 2011 Bitswift. All rights reserved. 9 | // See the LICENSE file for more information. 10 | // 11 | 12 | #import 13 | 14 | // Returns whether both objects are identical or equal via -isEqual: 15 | BOOL MTLEqualObjects(id obj1, id obj2); 16 | -------------------------------------------------------------------------------- /Pods/Mantle/Mantle/NSObject+MTLComparisonAdditions.m: -------------------------------------------------------------------------------- 1 | // 2 | // NSObject+MTLComparisonAdditions.m 3 | // Mantle 4 | // 5 | // Created by Josh Vera on 10/26/12. 6 | // Copyright (c) 2012 GitHub. All rights reserved. 7 | // 8 | // Portions copyright (c) 2011 Bitswift. All rights reserved. 9 | // See the LICENSE file for more information. 10 | // 11 | 12 | #import "NSObject+MTLComparisonAdditions.h" 13 | 14 | BOOL MTLEqualObjects(id obj1, id obj2) { 15 | return (obj1 == obj2 || [obj1 isEqual:obj2]); 16 | } 17 | -------------------------------------------------------------------------------- /Pods/Mantle/Mantle/extobjc/EXTScope.m: -------------------------------------------------------------------------------- 1 | // 2 | // EXTScope.m 3 | // extobjc 4 | // 5 | // Created by Justin Spahr-Summers on 2011-05-04. 6 | // Copyright (C) 2012 Justin Spahr-Summers. 7 | // Released under the MIT license. 8 | // 9 | 10 | #import "EXTScope.h" 11 | 12 | void mtl_executeCleanupBlock (__strong mtl_cleanupBlock_t *block) { 13 | (*block)(); 14 | } 15 | 16 | -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoa/NSArray+RACSequenceAdditions.m: -------------------------------------------------------------------------------- 1 | // 2 | // NSArray+RACSequenceAdditions.m 3 | // ReactiveCocoa 4 | // 5 | // Created by Justin Spahr-Summers on 2012-10-29. 6 | // Copyright (c) 2012 GitHub. All rights reserved. 7 | // 8 | 9 | #import "NSArray+RACSequenceAdditions.h" 10 | #import "RACArraySequence.h" 11 | 12 | @implementation NSArray (RACSequenceAdditions) 13 | 14 | - (RACSequence *)rac_sequence { 15 | return [RACArraySequence sequenceWithArray:self offset:0]; 16 | } 17 | 18 | @end 19 | -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoa/NSFileHandle+RACSupport.h: -------------------------------------------------------------------------------- 1 | // 2 | // NSFileHandle+RACSupport.h 3 | // ReactiveCocoa 4 | // 5 | // Created by Josh Abernathy on 5/10/12. 6 | // Copyright (c) 2012 GitHub. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @class RACSignal; 12 | 13 | @interface NSFileHandle (RACSupport) 14 | 15 | // Read any available data in the background and send it. Completes when data 16 | // length is <= 0. 17 | - (RACSignal *)rac_readInBackground; 18 | 19 | @end 20 | -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoa/NSIndexSet+RACSequenceAdditions.m: -------------------------------------------------------------------------------- 1 | // 2 | // NSIndexSet+RACSequenceAdditions.m 3 | // ReactiveCocoa 4 | // 5 | // Created by Sergey Gavrilyuk on 12/17/13. 6 | // Copyright (c) 2013 GitHub, Inc. All rights reserved. 7 | // 8 | 9 | #import "NSIndexSet+RACSequenceAdditions.h" 10 | #import "RACIndexSetSequence.h" 11 | 12 | @implementation NSIndexSet (RACSequenceAdditions) 13 | 14 | - (RACSequence *)rac_sequence { 15 | return [RACIndexSetSequence sequenceWithIndexSet:self]; 16 | } 17 | 18 | @end 19 | -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoa/NSString+RACSequenceAdditions.m: -------------------------------------------------------------------------------- 1 | // 2 | // NSString+RACSequenceAdditions.m 3 | // ReactiveCocoa 4 | // 5 | // Created by Justin Spahr-Summers on 2012-10-29. 6 | // Copyright (c) 2012 GitHub. All rights reserved. 7 | // 8 | 9 | #import "NSString+RACSequenceAdditions.h" 10 | #import "RACStringSequence.h" 11 | 12 | @implementation NSString (RACSequenceAdditions) 13 | 14 | - (RACSequence *)rac_sequence { 15 | return [RACStringSequence sequenceWithString:self offset:0]; 16 | } 17 | 18 | @end 19 | -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoa/RACCompoundDisposableProvider.d: -------------------------------------------------------------------------------- 1 | provider RACCompoundDisposable { 2 | probe added(char *compoundDisposable, char *disposable, long newTotal); 3 | probe removed(char *compoundDisposable, char *disposable, long newTotal); 4 | }; 5 | -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoa/RACDynamicSignal.h: -------------------------------------------------------------------------------- 1 | // 2 | // RACDynamicSignal.h 3 | // ReactiveCocoa 4 | // 5 | // Created by Justin Spahr-Summers on 2013-10-10. 6 | // Copyright (c) 2013 GitHub, Inc. All rights reserved. 7 | // 8 | 9 | #import "RACSignal.h" 10 | 11 | // A private `RACSignal` subclasses that implements its subscription behavior 12 | // using a block. 13 | @interface RACDynamicSignal : RACSignal 14 | 15 | + (RACSignal *)createSignal:(RACDisposable * (^)(id subscriber))didSubscribe; 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoa/RACEagerSequence.h: -------------------------------------------------------------------------------- 1 | // 2 | // RACEagerSequence.h 3 | // ReactiveCocoa 4 | // 5 | // Created by Uri Baghin on 02/01/2013. 6 | // Copyright (c) 2013 GitHub, Inc. All rights reserved. 7 | // 8 | 9 | #import "RACArraySequence.h" 10 | 11 | // Private class that implements an eager sequence. 12 | @interface RACEagerSequence : RACArraySequence 13 | 14 | @end 15 | -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoa/RACEmptySequence.h: -------------------------------------------------------------------------------- 1 | // 2 | // RACEmptySequence.h 3 | // ReactiveCocoa 4 | // 5 | // Created by Justin Spahr-Summers on 2012-10-29. 6 | // Copyright (c) 2012 GitHub. All rights reserved. 7 | // 8 | 9 | #import "RACSequence.h" 10 | 11 | // Private class representing an empty sequence. 12 | @interface RACEmptySequence : RACSequence 13 | 14 | @end 15 | -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoa/RACEmptySignal.h: -------------------------------------------------------------------------------- 1 | // 2 | // RACEmptySignal.h 3 | // ReactiveCocoa 4 | // 5 | // Created by Justin Spahr-Summers on 2013-10-10. 6 | // Copyright (c) 2013 GitHub, Inc. All rights reserved. 7 | // 8 | 9 | #import "RACSignal.h" 10 | 11 | // A private `RACSignal` subclasses that synchronously sends completed to any 12 | // subscribers. 13 | @interface RACEmptySignal : RACSignal 14 | 15 | + (RACSignal *)empty; 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoa/RACErrorSignal.h: -------------------------------------------------------------------------------- 1 | // 2 | // RACErrorSignal.h 3 | // ReactiveCocoa 4 | // 5 | // Created by Justin Spahr-Summers on 2013-10-10. 6 | // Copyright (c) 2013 GitHub, Inc. All rights reserved. 7 | // 8 | 9 | #import "RACSignal.h" 10 | 11 | // A private `RACSignal` subclasses that synchronously sends an error to any 12 | // subscribers. 13 | @interface RACErrorSignal : RACSignal 14 | 15 | + (RACSignal *)error:(NSError *)error; 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoa/RACImmediateScheduler.h: -------------------------------------------------------------------------------- 1 | // 2 | // RACImmediateScheduler.h 3 | // ReactiveCocoa 4 | // 5 | // Created by Josh Abernathy on 11/30/12. 6 | // Copyright (c) 2012 GitHub, Inc. All rights reserved. 7 | // 8 | 9 | #import "RACScheduler.h" 10 | 11 | // A private scheduler which immediately executes its scheduled blocks. 12 | @interface RACImmediateScheduler : RACScheduler 13 | 14 | @end 15 | -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoa/RACIndexSetSequence.h: -------------------------------------------------------------------------------- 1 | // 2 | // RACIndexSetSequence.h 3 | // ReactiveCocoa 4 | // 5 | // Created by Sergey Gavrilyuk on 12/18/13. 6 | // Copyright (c) 2013 GitHub, Inc. All rights reserved. 7 | // 8 | 9 | #import "RACSequence.h" 10 | 11 | // Private class that adapts an array to the RACSequence interface. 12 | @interface RACIndexSetSequence : RACSequence 13 | 14 | + (instancetype)sequenceWithIndexSet:(NSIndexSet *)indexSet; 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoa/RACMulticastConnection+Private.h: -------------------------------------------------------------------------------- 1 | // 2 | // RACMulticastConnection+Private.h 3 | // ReactiveCocoa 4 | // 5 | // Created by Josh Abernathy on 4/11/12. 6 | // Copyright (c) 2012 GitHub, Inc. All rights reserved. 7 | // 8 | 9 | #import "RACMulticastConnection.h" 10 | 11 | @class RACSubject; 12 | 13 | @interface RACMulticastConnection () 14 | 15 | - (id)initWithSourceSignal:(RACSignal *)source subject:(RACSubject *)subject; 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoa/RACReturnSignal.h: -------------------------------------------------------------------------------- 1 | // 2 | // RACReturnSignal.h 3 | // ReactiveCocoa 4 | // 5 | // Created by Justin Spahr-Summers on 2013-10-10. 6 | // Copyright (c) 2013 GitHub, Inc. All rights reserved. 7 | // 8 | 9 | #import "RACSignal.h" 10 | 11 | // A private `RACSignal` subclasses that synchronously sends a value to any 12 | // subscribers, then completes. 13 | @interface RACReturnSignal : RACSignal 14 | 15 | + (RACSignal *)return:(id)value; 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoa/RACSignalProvider.d: -------------------------------------------------------------------------------- 1 | provider RACSignal { 2 | probe next(char *signal, char *subscriber, char *valueDescription); 3 | probe completed(char *signal, char *subscriber); 4 | probe error(char *signal, char *subscriber, char *errorDescription); 5 | }; 6 | -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoa/RACSubscriptionScheduler.h: -------------------------------------------------------------------------------- 1 | // 2 | // RACSubscriptionScheduler.h 3 | // ReactiveCocoa 4 | // 5 | // Created by Josh Abernathy on 11/30/12. 6 | // Copyright (c) 2012 GitHub, Inc. All rights reserved. 7 | // 8 | 9 | #import "RACScheduler.h" 10 | 11 | // A private scheduler used only for subscriptions. See the private 12 | // +[RACScheduler subscriptionScheduler] method for more information. 13 | @interface RACSubscriptionScheduler : RACScheduler 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoa/RACUnarySequence.h: -------------------------------------------------------------------------------- 1 | // 2 | // RACUnarySequence.h 3 | // ReactiveCocoa 4 | // 5 | // Created by Justin Spahr-Summers on 2013-05-01. 6 | // Copyright (c) 2013 GitHub, Inc. All rights reserved. 7 | // 8 | 9 | #import "RACSequence.h" 10 | 11 | // Private class representing a sequence of exactly one value. 12 | @interface RACUnarySequence : RACSequence 13 | 14 | @end 15 | -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoa/RACUnit.h: -------------------------------------------------------------------------------- 1 | // 2 | // RACUnit.h 3 | // ReactiveCocoa 4 | // 5 | // Created by Josh Abernathy on 3/27/12. 6 | // Copyright (c) 2012 GitHub, Inc. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | /// A unit represents an empty value. 12 | /// 13 | /// It should never be necessary to create a unit yourself. Just use +defaultUnit. 14 | @interface RACUnit : NSObject 15 | 16 | /// A singleton instance. 17 | + (RACUnit *)defaultUnit; 18 | 19 | @end 20 | -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoa/RACValueTransformer.h: -------------------------------------------------------------------------------- 1 | // 2 | // RACValueTransformer.h 3 | // ReactiveCocoa 4 | // 5 | // Created by Josh Abernathy on 3/6/12. 6 | // Copyright (c) 2012 GitHub, Inc. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | // A private block based transformer. 12 | @interface RACValueTransformer : NSValueTransformer 13 | 14 | + (instancetype)transformerWithBlock:(id (^)(id value))block; 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /Pods/ReactiveCocoa/ReactiveCocoa/UIGestureRecognizer+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | // 2 | // UIGestureRecognizer+RACSignalSupport.h 3 | // ReactiveCocoa 4 | // 5 | // Created by Josh Vera on 5/5/13. 6 | // Copyright (c) 2013 GitHub. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @class RACSignal; 12 | 13 | @interface UIGestureRecognizer (RACSignalSupport) 14 | 15 | /// Returns a signal that sends the receiver when its gesture occurs. 16 | - (RACSignal *)rac_gestureSignal; 17 | 18 | @end 19 | -------------------------------------------------------------------------------- /Pods/TPKeyboardAvoiding/TPKeyboardAvoiding/TPKeyboardAvoidingCollectionView.h: -------------------------------------------------------------------------------- 1 | // 2 | // TPKeyboardAvoidingCollectionView.h 3 | // 4 | // Created by Michael Tyson on 30/09/2013. 5 | // Copyright 2013 A Tasty Pixel & The CocoaBots. All rights reserved. 6 | // 7 | 8 | #import 9 | #import "UIScrollView+TPKeyboardAvoidingAdditions.h" 10 | 11 | @interface TPKeyboardAvoidingCollectionView : UICollectionView 12 | - (BOOL)focusNextTextField; 13 | - (void)scrollToActiveTextField; 14 | @end 15 | -------------------------------------------------------------------------------- /Pods/TPKeyboardAvoiding/TPKeyboardAvoiding/TPKeyboardAvoidingScrollView.h: -------------------------------------------------------------------------------- 1 | // 2 | // TPKeyboardAvoidingScrollView.h 3 | // 4 | // Created by Michael Tyson on 30/09/2013. 5 | // Copyright 2013 A Tasty Pixel. All rights reserved. 6 | // 7 | 8 | #import 9 | #import "UIScrollView+TPKeyboardAvoidingAdditions.h" 10 | 11 | @interface TPKeyboardAvoidingScrollView : UIScrollView 12 | - (void)contentSizeToFit; 13 | - (BOOL)focusNextTextField; 14 | - (void)scrollToActiveTextField; 15 | @end 16 | -------------------------------------------------------------------------------- /Pods/TPKeyboardAvoiding/TPKeyboardAvoiding/TPKeyboardAvoidingTableView.h: -------------------------------------------------------------------------------- 1 | // 2 | // TPKeyboardAvoidingTableView.h 3 | // 4 | // Created by Michael Tyson on 30/09/2013. 5 | // Copyright 2013 A Tasty Pixel. All rights reserved. 6 | // 7 | 8 | #import 9 | #import "UIScrollView+TPKeyboardAvoidingAdditions.h" 10 | 11 | @interface TPKeyboardAvoidingTableView : UITableView 12 | - (BOOL)focusNextTextField; 13 | - (void)scrollToActiveTextField; 14 | @end 15 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-AFNetworking/Pods-AFNetworking-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_AFNetworking : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_AFNetworking 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-AFNetworking/Pods-AFNetworking-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | #import "Pods-environment.h" 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-AFNetworking/Pods-AFNetworking.xcconfig: -------------------------------------------------------------------------------- 1 | PODS_AFNETWORKING_OTHER_LDFLAGS = -framework "CoreGraphics" -framework "MobileCoreServices" -framework "Security" -framework "SystemConfiguration" -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-DesignerNewsForObjcTests-Kiwi/Pods-DesignerNewsForObjcTests-Kiwi-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_DesignerNewsForObjcTests_Kiwi : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_DesignerNewsForObjcTests_Kiwi 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-DesignerNewsForObjcTests-Kiwi/Pods-DesignerNewsForObjcTests-Kiwi-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | #import "Pods-DesignerNewsForObjcTests-environment.h" 6 | #import 7 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-DesignerNewsForObjcTests/Pods-DesignerNewsForObjcTests-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_DesignerNewsForObjcTests : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_DesignerNewsForObjcTests 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-DesignerNewsForObjcTests/Pods-DesignerNewsForObjcTests-environment.h: -------------------------------------------------------------------------------- 1 | 2 | // To check if a library is compiled with CocoaPods you 3 | // can use the `COCOAPODS` macro definition which is 4 | // defined in the xcconfigs so it is available in 5 | // headers also when they are imported in the client 6 | // project. 7 | 8 | 9 | // Kiwi 10 | #define COCOAPODS_POD_AVAILABLE_Kiwi 11 | #define COCOAPODS_VERSION_MAJOR_Kiwi 2 12 | #define COCOAPODS_VERSION_MINOR_Kiwi 3 13 | #define COCOAPODS_VERSION_PATCH_Kiwi 1 14 | 15 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Mantle/Pods-Mantle-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_Mantle : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_Mantle 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Mantle/Pods-Mantle-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | #import "Pods-environment.h" 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Mantle/Pods-Mantle.xcconfig: -------------------------------------------------------------------------------- 1 | PODS_MANTLE_OTHER_LDFLAGS = -framework "Foundation" -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-ReactiveCocoa/Pods-ReactiveCocoa-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_ReactiveCocoa : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_ReactiveCocoa 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-ReactiveCocoa/Pods-ReactiveCocoa-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | #import "Pods-environment.h" 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-ReactiveCocoa/Pods-ReactiveCocoa.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/b70dfb6ec8eeb52a128b2778b9469eb598ce53da/Pods/Target Support Files/Pods-ReactiveCocoa/Pods-ReactiveCocoa.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-ReactiveViewModel/Pods-ReactiveViewModel-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_ReactiveViewModel : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_ReactiveViewModel 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-ReactiveViewModel/Pods-ReactiveViewModel-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | #import "Pods-environment.h" 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-ReactiveViewModel/Pods-ReactiveViewModel.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/b70dfb6ec8eeb52a128b2778b9469eb598ce53da/Pods/Target Support Files/Pods-ReactiveViewModel/Pods-ReactiveViewModel.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-TPKeyboardAvoiding/Pods-TPKeyboardAvoiding-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_TPKeyboardAvoiding : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_TPKeyboardAvoiding 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-TPKeyboardAvoiding/Pods-TPKeyboardAvoiding-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | #import "Pods-environment.h" 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-TPKeyboardAvoiding/Pods-TPKeyboardAvoiding.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaudev/DesignerNewsForObjc/b70dfb6ec8eeb52a128b2778b9469eb598ce53da/Pods/Target Support Files/Pods-TPKeyboardAvoiding/Pods-TPKeyboardAvoiding.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods/Pods-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods : NSObject 3 | @end 4 | @implementation PodsDummy_Pods 5 | @end 6 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # DesignerNewsForObjc 2 | Design and code website's demo app implement by objective-c 3 | --------------------------------------------------------------------------------