├── .gitignore ├── .travis.yml ├── Example ├── Framer.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── Framer-Example.xcscheme ├── Framer.xcworkspace │ └── contents.xcworkspacedata ├── Framer │ ├── Framer-Info.plist │ ├── Framer-Prefix.pch │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── LaunchImage.launchimage │ │ │ └── Contents.json │ ├── Main.storyboard │ ├── NUIAppDelegate.h │ ├── NUIAppDelegate.m │ ├── NUIViewController.h │ ├── NUIViewController.m │ ├── en.lproj │ │ └── InfoPlist.strings │ └── main.m ├── Podfile ├── Podfile.lock ├── Pods │ ├── Kiwi │ │ ├── Classes │ │ │ ├── Config │ │ │ │ ├── KWAllTestsSuite.m │ │ │ │ ├── KWSuiteConfigurationBase.h │ │ │ │ └── KWSuiteConfigurationBase.m │ │ │ ├── Core │ │ │ │ ├── KWAny.h │ │ │ │ ├── KWAny.m │ │ │ │ ├── KWBackgroundTask.h │ │ │ │ ├── KWBackgroundTask.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 │ │ │ ├── Shared Examples │ │ │ │ ├── KWSharedExample.h │ │ │ │ ├── KWSharedExample.m │ │ │ │ ├── KWSharedExampleRegistry.h │ │ │ │ └── KWSharedExampleRegistry.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 │ ├── Local Podspecs │ │ └── Framer.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Framer.xcscheme │ └── Target Support Files │ │ ├── Framer │ │ ├── Framer-dummy.m │ │ ├── Framer-prefix.pch │ │ ├── Framer-umbrella.h │ │ ├── Framer.modulemap │ │ ├── Framer.xcconfig │ │ └── Info.plist │ │ ├── Kiwi │ │ ├── Info.plist │ │ ├── Kiwi-dummy.m │ │ ├── Kiwi-prefix.pch │ │ ├── Kiwi-umbrella.h │ │ ├── Kiwi.modulemap │ │ └── Kiwi.xcconfig │ │ ├── Pods-Framer_Example │ │ ├── Info.plist │ │ ├── Pods-Framer_Example-acknowledgements.markdown │ │ ├── Pods-Framer_Example-acknowledgements.plist │ │ ├── Pods-Framer_Example-dummy.m │ │ ├── Pods-Framer_Example-frameworks.sh │ │ ├── Pods-Framer_Example-resources.sh │ │ ├── Pods-Framer_Example-umbrella.h │ │ ├── Pods-Framer_Example.debug.xcconfig │ │ ├── Pods-Framer_Example.modulemap │ │ └── Pods-Framer_Example.release.xcconfig │ │ └── Pods-Framer_Tests │ │ ├── Info.plist │ │ ├── Pods-Framer_Tests-acknowledgements.markdown │ │ ├── Pods-Framer_Tests-acknowledgements.plist │ │ ├── Pods-Framer_Tests-dummy.m │ │ ├── Pods-Framer_Tests-frameworks.sh │ │ ├── Pods-Framer_Tests-resources.sh │ │ ├── Pods-Framer_Tests-umbrella.h │ │ ├── Pods-Framer_Tests.debug.xcconfig │ │ ├── Pods-Framer_Tests.modulemap │ │ └── Pods-Framer_Tests.release.xcconfig └── Tests │ ├── NUIFramerRelationLogicSpec.m │ ├── NUIFramerSpec.m │ ├── NUIFramerStateSpec.m │ ├── NUIFramerWidthHeightSpec.m │ ├── Tests-Info.plist │ ├── Tests-Prefix.pch │ └── en.lproj │ └── InfoPlist.strings ├── Framer.podspec ├── Framer ├── Assets │ └── .gitkeep └── Classes │ ├── .gitkeep │ ├── Framer.h │ ├── Macroses.h │ ├── NUIFramer.h │ ├── NUIFramer.m │ ├── NUIHandler.h │ ├── NUIHandler.m │ ├── NUIHandlerInfo.h │ ├── NUIHandlerInfo.m │ ├── UIView+NUIAdditions.h │ ├── UIView+NUIAdditions.m │ ├── UIView+NUIInstaller.h │ └── UIView+NUIInstaller.m ├── LICENSE ├── README.md └── _Pods.xcodeproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/.travis.yml -------------------------------------------------------------------------------- /Example/Framer.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Framer.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Framer.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Framer.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/Framer.xcodeproj/xcshareddata/xcschemes/Framer-Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Framer.xcodeproj/xcshareddata/xcschemes/Framer-Example.xcscheme -------------------------------------------------------------------------------- /Example/Framer.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Framer.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/Framer/Framer-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Framer/Framer-Info.plist -------------------------------------------------------------------------------- /Example/Framer/Framer-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Framer/Framer-Prefix.pch -------------------------------------------------------------------------------- /Example/Framer/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Framer/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/Framer/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Framer/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /Example/Framer/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Framer/Main.storyboard -------------------------------------------------------------------------------- /Example/Framer/NUIAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Framer/NUIAppDelegate.h -------------------------------------------------------------------------------- /Example/Framer/NUIAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Framer/NUIAppDelegate.m -------------------------------------------------------------------------------- /Example/Framer/NUIViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Framer/NUIViewController.h -------------------------------------------------------------------------------- /Example/Framer/NUIViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Framer/NUIViewController.m -------------------------------------------------------------------------------- /Example/Framer/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Example/Framer/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Framer/main.m -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Config/KWAllTestsSuite.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Config/KWAllTestsSuite.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Config/KWSuiteConfigurationBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Config/KWSuiteConfigurationBase.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Config/KWSuiteConfigurationBase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Config/KWSuiteConfigurationBase.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWAny.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Core/KWAny.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWAny.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Core/KWAny.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWBackgroundTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Core/KWBackgroundTask.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWBackgroundTask.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Core/KWBackgroundTask.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Core/KWBlock.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWBlock.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Core/KWBlock.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWCallSite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Core/KWCallSite.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWCallSite.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Core/KWCallSite.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWCaptureSpy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Core/KWCaptureSpy.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWCaptureSpy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Core/KWCaptureSpy.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWCountType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Core/KWCountType.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWDeviceInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Core/KWDeviceInfo.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWDeviceInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Core/KWDeviceInfo.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWExample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Core/KWExample.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWExample.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Core/KWExample.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWExampleDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Core/KWExampleDelegate.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWExampleNodeVisitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Core/KWExampleNodeVisitor.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWExampleSuite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Core/KWExampleSuite.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWExampleSuite.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Core/KWExampleSuite.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWExampleSuiteBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Core/KWExampleSuiteBuilder.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWExampleSuiteBuilder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Core/KWExampleSuiteBuilder.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWExpectationType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Core/KWExpectationType.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWFailure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Core/KWFailure.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWFailure.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Core/KWFailure.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWFormatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Core/KWFormatter.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWFormatter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Core/KWFormatter.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWFutureObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Core/KWFutureObject.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWFutureObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Core/KWFutureObject.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWInvocationCapturer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Core/KWInvocationCapturer.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWInvocationCapturer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Core/KWInvocationCapturer.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWLet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Core/KWLet.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Core/KWMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Core/KWMatcher.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWMatcherFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Core/KWMatcherFactory.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWMatcherFactory.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Core/KWMatcherFactory.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWMatchers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Core/KWMatchers.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWMatchers.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Core/KWMatchers.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWMatching.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Core/KWMatching.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWMessagePattern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Core/KWMessagePattern.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWMessagePattern.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Core/KWMessagePattern.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWMessageSpying.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Core/KWMessageSpying.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWMessageTracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Core/KWMessageTracker.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWMessageTracker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Core/KWMessageTracker.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWNull.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Core/KWNull.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWNull.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Core/KWNull.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWObjCUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Core/KWObjCUtilities.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWObjCUtilities.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Core/KWObjCUtilities.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWProbe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Core/KWProbe.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWProbePoller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Core/KWProbePoller.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWProbePoller.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Core/KWProbePoller.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWReporting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Core/KWReporting.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWSpec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Core/KWSpec.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWSpec.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Core/KWSpec.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWStringUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Core/KWStringUtilities.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWStringUtilities.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Core/KWStringUtilities.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWSymbolicator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Core/KWSymbolicator.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWSymbolicator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Core/KWSymbolicator.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Core/KWValue.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWValue.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Core/KWValue.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWWorkarounds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Core/KWWorkarounds.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWWorkarounds.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Core/KWWorkarounds.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/Kiwi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Core/Kiwi.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KiwiBlockMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Core/KiwiBlockMacros.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KiwiConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Core/KiwiConfiguration.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KiwiMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Core/KiwiMacros.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/NSInvocation+KiwiAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Core/NSInvocation+KiwiAdditions.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/NSInvocation+KiwiAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Core/NSInvocation+KiwiAdditions.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/NSInvocation+OCMAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Core/NSInvocation+OCMAdditions.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/NSInvocation+OCMAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Core/NSInvocation+OCMAdditions.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/NSMethodSignature+KiwiAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Core/NSMethodSignature+KiwiAdditions.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/NSMethodSignature+KiwiAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Core/NSMethodSignature+KiwiAdditions.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/NSNumber+KiwiAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Core/NSNumber+KiwiAdditions.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/NSNumber+KiwiAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Core/NSNumber+KiwiAdditions.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/NSObject+KiwiSpyAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Core/NSObject+KiwiSpyAdditions.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/NSObject+KiwiSpyAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Core/NSObject+KiwiSpyAdditions.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/NSObject+KiwiVerifierAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Core/NSObject+KiwiVerifierAdditions.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/NSObject+KiwiVerifierAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Core/NSObject+KiwiVerifierAdditions.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/NSProxy+KiwiVerifierAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Core/NSProxy+KiwiVerifierAdditions.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/NSProxy+KiwiVerifierAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Core/NSProxy+KiwiVerifierAdditions.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/NSValue+KiwiAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Core/NSValue+KiwiAdditions.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/NSValue+KiwiAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Core/NSValue+KiwiAdditions.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWBeBetweenMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWBeBetweenMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWBeBetweenMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWBeBetweenMatcher.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWBeEmptyMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWBeEmptyMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWBeEmptyMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWBeEmptyMatcher.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWBeIdenticalToMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWBeIdenticalToMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWBeIdenticalToMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWBeIdenticalToMatcher.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWBeKindOfClassMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWBeKindOfClassMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWBeKindOfClassMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWBeKindOfClassMatcher.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWBeMemberOfClassMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWBeMemberOfClassMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWBeMemberOfClassMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWBeMemberOfClassMatcher.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWBeSubclassOfClassMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWBeSubclassOfClassMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWBeSubclassOfClassMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWBeSubclassOfClassMatcher.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWBeTrueMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWBeTrueMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWBeTrueMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWBeTrueMatcher.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWBeWithinMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWBeWithinMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWBeWithinMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWBeWithinMatcher.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWBeZeroMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWBeZeroMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWBeZeroMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWBeZeroMatcher.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWBlockRaiseMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWBlockRaiseMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWBlockRaiseMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWBlockRaiseMatcher.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWChangeMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWChangeMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWChangeMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWChangeMatcher.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWConformToProtocolMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWConformToProtocolMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWConformToProtocolMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWConformToProtocolMatcher.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWContainMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWContainMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWContainMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWContainMatcher.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWContainStringMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWContainStringMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWContainStringMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWContainStringMatcher.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWEqualMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWEqualMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWEqualMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWEqualMatcher.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWGenericMatchEvaluator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWGenericMatchEvaluator.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWGenericMatchEvaluator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWGenericMatchEvaluator.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWGenericMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWGenericMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWGenericMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWGenericMatcher.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWGenericMatchingAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWGenericMatchingAdditions.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWGenericMatchingAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWGenericMatchingAdditions.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWHaveMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWHaveMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWHaveMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWHaveMatcher.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWHaveValueMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWHaveValueMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWHaveValueMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWHaveValueMatcher.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWInequalityMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWInequalityMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWInequalityMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWInequalityMatcher.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWNilMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWNilMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWNilMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWNilMatcher.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWNotificationMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWNotificationMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWNotificationMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWNotificationMatcher.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWReceiveMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWReceiveMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWReceiveMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWReceiveMatcher.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWRegularExpressionPatternMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWRegularExpressionPatternMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWRegularExpressionPatternMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWRegularExpressionPatternMatcher.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWRespondToSelectorMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWRespondToSelectorMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWRespondToSelectorMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWRespondToSelectorMatcher.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWStringContainsMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWStringContainsMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWStringContainsMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWStringContainsMatcher.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWStringPrefixMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWStringPrefixMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWStringPrefixMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWStringPrefixMatcher.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWUserDefinedMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWUserDefinedMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWUserDefinedMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWUserDefinedMatcher.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Mocking/KWMock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Mocking/KWMock.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Mocking/KWMock.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Mocking/KWMock.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Mocking/NSObject+KiwiMockAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Mocking/NSObject+KiwiMockAdditions.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Mocking/NSObject+KiwiMockAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Mocking/NSObject+KiwiMockAdditions.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Nodes/KWAfterAllNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Nodes/KWAfterAllNode.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Nodes/KWAfterAllNode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Nodes/KWAfterAllNode.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Nodes/KWAfterEachNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Nodes/KWAfterEachNode.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Nodes/KWAfterEachNode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Nodes/KWAfterEachNode.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Nodes/KWBeforeAllNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Nodes/KWBeforeAllNode.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Nodes/KWBeforeAllNode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Nodes/KWBeforeAllNode.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Nodes/KWBeforeEachNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Nodes/KWBeforeEachNode.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Nodes/KWBeforeEachNode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Nodes/KWBeforeEachNode.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Nodes/KWBlockNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Nodes/KWBlockNode.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Nodes/KWBlockNode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Nodes/KWBlockNode.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Nodes/KWContextNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Nodes/KWContextNode.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Nodes/KWContextNode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Nodes/KWContextNode.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Nodes/KWExampleNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Nodes/KWExampleNode.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Nodes/KWItNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Nodes/KWItNode.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Nodes/KWItNode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Nodes/KWItNode.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Nodes/KWLetNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Nodes/KWLetNode.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Nodes/KWLetNode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Nodes/KWLetNode.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Nodes/KWPendingNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Nodes/KWPendingNode.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Nodes/KWPendingNode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Nodes/KWPendingNode.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Nodes/KWRegisterMatchersNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Nodes/KWRegisterMatchersNode.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Nodes/KWRegisterMatchersNode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Nodes/KWRegisterMatchersNode.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Shared Examples/KWSharedExample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Shared Examples/KWSharedExample.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Shared Examples/KWSharedExample.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Shared Examples/KWSharedExample.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Shared Examples/KWSharedExampleRegistry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Shared Examples/KWSharedExampleRegistry.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Shared Examples/KWSharedExampleRegistry.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Shared Examples/KWSharedExampleRegistry.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Stubbing/KWIntercept.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Stubbing/KWIntercept.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Stubbing/KWIntercept.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Stubbing/KWIntercept.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Stubbing/KWStub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Stubbing/KWStub.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Stubbing/KWStub.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Stubbing/KWStub.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Stubbing/NSObject+KiwiStubAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Stubbing/NSObject+KiwiStubAdditions.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Stubbing/NSObject+KiwiStubAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Stubbing/NSObject+KiwiStubAdditions.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Verifiers/KWAsyncVerifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Verifiers/KWAsyncVerifier.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Verifiers/KWAsyncVerifier.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Verifiers/KWAsyncVerifier.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Verifiers/KWExistVerifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Verifiers/KWExistVerifier.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Verifiers/KWExistVerifier.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Verifiers/KWExistVerifier.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Verifiers/KWMatchVerifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Verifiers/KWMatchVerifier.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Verifiers/KWMatchVerifier.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Verifiers/KWMatchVerifier.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Verifiers/KWVerifying.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Classes/Verifiers/KWVerifying.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/License.txt -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Kiwi/Readme.md -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/Framer.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Local Podspecs/Framer.podspec.json -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Manifest.lock -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcshareddata/xcschemes/Framer.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Pods.xcodeproj/xcshareddata/xcschemes/Framer.xcscheme -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Framer/Framer-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Target Support Files/Framer/Framer-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Framer/Framer-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Target Support Files/Framer/Framer-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Framer/Framer-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Target Support Files/Framer/Framer-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Framer/Framer.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Target Support Files/Framer/Framer.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Framer/Framer.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Target Support Files/Framer/Framer.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Framer/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Target Support Files/Framer/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Kiwi/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Target Support Files/Kiwi/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Kiwi/Kiwi-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Target Support Files/Kiwi/Kiwi-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Kiwi/Kiwi-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Target Support Files/Kiwi/Kiwi-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Kiwi/Kiwi-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Target Support Files/Kiwi/Kiwi-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Kiwi/Kiwi.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Target Support Files/Kiwi/Kiwi.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Kiwi/Kiwi.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Target Support Files/Kiwi/Kiwi.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Framer_Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Target Support Files/Pods-Framer_Example/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Framer_Example/Pods-Framer_Example-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Target Support Files/Pods-Framer_Example/Pods-Framer_Example-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Framer_Example/Pods-Framer_Example-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Target Support Files/Pods-Framer_Example/Pods-Framer_Example-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Framer_Example/Pods-Framer_Example-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Target Support Files/Pods-Framer_Example/Pods-Framer_Example-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Framer_Example/Pods-Framer_Example-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Target Support Files/Pods-Framer_Example/Pods-Framer_Example-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Framer_Example/Pods-Framer_Example-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Target Support Files/Pods-Framer_Example/Pods-Framer_Example-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Framer_Example/Pods-Framer_Example-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Target Support Files/Pods-Framer_Example/Pods-Framer_Example-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Framer_Example/Pods-Framer_Example.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Target Support Files/Pods-Framer_Example/Pods-Framer_Example.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Framer_Example/Pods-Framer_Example.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Target Support Files/Pods-Framer_Example/Pods-Framer_Example.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Framer_Example/Pods-Framer_Example.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Target Support Files/Pods-Framer_Example/Pods-Framer_Example.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Framer_Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Target Support Files/Pods-Framer_Tests/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Framer_Tests/Pods-Framer_Tests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Target Support Files/Pods-Framer_Tests/Pods-Framer_Tests-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Framer_Tests/Pods-Framer_Tests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Target Support Files/Pods-Framer_Tests/Pods-Framer_Tests-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Framer_Tests/Pods-Framer_Tests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Target Support Files/Pods-Framer_Tests/Pods-Framer_Tests-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Framer_Tests/Pods-Framer_Tests-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Target Support Files/Pods-Framer_Tests/Pods-Framer_Tests-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Framer_Tests/Pods-Framer_Tests-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Target Support Files/Pods-Framer_Tests/Pods-Framer_Tests-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Framer_Tests/Pods-Framer_Tests-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Target Support Files/Pods-Framer_Tests/Pods-Framer_Tests-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Framer_Tests/Pods-Framer_Tests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Target Support Files/Pods-Framer_Tests/Pods-Framer_Tests.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Framer_Tests/Pods-Framer_Tests.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Target Support Files/Pods-Framer_Tests/Pods-Framer_Tests.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Framer_Tests/Pods-Framer_Tests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Pods/Target Support Files/Pods-Framer_Tests/Pods-Framer_Tests.release.xcconfig -------------------------------------------------------------------------------- /Example/Tests/NUIFramerRelationLogicSpec.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Tests/NUIFramerRelationLogicSpec.m -------------------------------------------------------------------------------- /Example/Tests/NUIFramerSpec.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Tests/NUIFramerSpec.m -------------------------------------------------------------------------------- /Example/Tests/NUIFramerStateSpec.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Tests/NUIFramerStateSpec.m -------------------------------------------------------------------------------- /Example/Tests/NUIFramerWidthHeightSpec.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Tests/NUIFramerWidthHeightSpec.m -------------------------------------------------------------------------------- /Example/Tests/Tests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Tests/Tests-Info.plist -------------------------------------------------------------------------------- /Example/Tests/Tests-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Example/Tests/Tests-Prefix.pch -------------------------------------------------------------------------------- /Example/Tests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Framer.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Framer.podspec -------------------------------------------------------------------------------- /Framer/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Framer/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Framer/Classes/Framer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Framer/Classes/Framer.h -------------------------------------------------------------------------------- /Framer/Classes/Macroses.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Framer/Classes/Macroses.h -------------------------------------------------------------------------------- /Framer/Classes/NUIFramer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Framer/Classes/NUIFramer.h -------------------------------------------------------------------------------- /Framer/Classes/NUIFramer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Framer/Classes/NUIFramer.m -------------------------------------------------------------------------------- /Framer/Classes/NUIHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Framer/Classes/NUIHandler.h -------------------------------------------------------------------------------- /Framer/Classes/NUIHandler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Framer/Classes/NUIHandler.m -------------------------------------------------------------------------------- /Framer/Classes/NUIHandlerInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Framer/Classes/NUIHandlerInfo.h -------------------------------------------------------------------------------- /Framer/Classes/NUIHandlerInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Framer/Classes/NUIHandlerInfo.m -------------------------------------------------------------------------------- /Framer/Classes/UIView+NUIAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Framer/Classes/UIView+NUIAdditions.h -------------------------------------------------------------------------------- /Framer/Classes/UIView+NUIAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Framer/Classes/UIView+NUIAdditions.m -------------------------------------------------------------------------------- /Framer/Classes/UIView+NUIInstaller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Framer/Classes/UIView+NUIInstaller.h -------------------------------------------------------------------------------- /Framer/Classes/UIView+NUIInstaller.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/Framer/Classes/UIView+NUIInstaller.m -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framer/HEAD/README.md -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj --------------------------------------------------------------------------------