├── .gitignore ├── .travis.yml ├── Barricade ├── Core │ ├── MMBarricade.h │ ├── MMBarricade.m │ ├── MMBarricadeDispatch.h │ ├── MMBarricadeDispatch.m │ ├── MMBarricadeDispatchTests.m │ ├── MMBarricadeErrors.h │ ├── MMBarricadeTests.m │ ├── Response │ │ ├── MMBarricadePathUtility.h │ │ ├── MMBarricadePathUtility.m │ │ ├── MMBarricadePathUtilityTests.m │ │ ├── MMBarricadeResponse+Convenience.h │ │ ├── MMBarricadeResponse+Convenience.m │ │ ├── MMBarricadeResponse.h │ │ ├── MMBarricadeResponse.m │ │ ├── MMBarricadeResponseConvenienceTests.m │ │ └── MMBarricadeResponseTests.m │ ├── ResponseSet │ │ ├── MMBarricadeResponseSet+Convenience.h │ │ ├── MMBarricadeResponseSet+Convenience.m │ │ ├── MMBarricadeResponseSet.h │ │ ├── MMBarricadeResponseSet.m │ │ ├── MMBarricadeResponseSetConvenienceTests.m │ │ └── MMBarricadeResponseSetTests.m │ ├── ResponseStore │ │ ├── MMBarricadeAbstractResponseStore.h │ │ ├── MMBarricadeAbstractResponseStore.m │ │ ├── MMBarricadeInMemoryResponseStore.h │ │ ├── MMBarricadeInMemoryResponseStore.m │ │ ├── MMBarricadeInMemoryResponseStoreTests.m │ │ └── MMBarricadeResponseStore.h │ └── UI │ │ ├── MMBarricadeResponseSelectionViewController.h │ │ ├── MMBarricadeResponseSelectionViewController.m │ │ ├── MMBarricadeResponseSetViewController.h │ │ ├── MMBarricadeResponseSetViewController.m │ │ ├── MMBarricadeShakeWindow.h │ │ ├── MMBarricadeShakeWindow.m │ │ ├── MMBarricadeViewController.h │ │ └── MMBarricadeViewController.m └── Tweaks │ ├── MMBarricade+Tweaks.h │ ├── MMBarricade+Tweaks.m │ ├── MMBarricadeTweaksResponseStore.h │ ├── MMBarricadeTweaksResponseStore.m │ └── MMBarricadeTweaksResponseStoreTests.m ├── CHANGELOG.md ├── DevelopmentApp ├── AppBundleResources │ └── app.bundle.txt ├── Barricade.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── Barricade.xcscheme ├── Barricade.xcworkspace │ └── contents.xcworkspacedata ├── Barricade │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── LaunchImage.launchimage │ │ │ └── Contents.json │ ├── Info.plist │ ├── ViewController.h │ ├── ViewController.m │ └── main.m ├── BarricadeTests │ ├── BarricadeTests.m │ └── Info.plist ├── CocoaPods.podfile ├── LocalServerResources │ └── file.response.txt ├── Podfile.lock └── Pods │ ├── Headers │ ├── Private │ │ ├── OCMock │ │ │ ├── NSInvocation+OCMAdditions.h │ │ │ ├── NSMethodSignature+OCMAdditions.h │ │ │ ├── NSNotificationCenter+OCMAdditions.h │ │ │ ├── NSObject+OCMAdditions.h │ │ │ ├── NSValue+OCMAdditions.h │ │ │ ├── OCClassMockObject.h │ │ │ ├── OCMArg.h │ │ │ ├── OCMBlockCaller.h │ │ │ ├── OCMBoxedReturnValueProvider.h │ │ │ ├── OCMConstraint.h │ │ │ ├── OCMExceptionReturnValueProvider.h │ │ │ ├── OCMExpectationRecorder.h │ │ │ ├── OCMFunctions.h │ │ │ ├── OCMIndirectReturnValueProvider.h │ │ │ ├── OCMInvocationExpectation.h │ │ │ ├── OCMInvocationMatcher.h │ │ │ ├── OCMInvocationStub.h │ │ │ ├── OCMLocation.h │ │ │ ├── OCMMacroState.h │ │ │ ├── OCMNotificationPoster.h │ │ │ ├── OCMObserverRecorder.h │ │ │ ├── OCMPassByRefSetter.h │ │ │ ├── OCMRealObjectForwarder.h │ │ │ ├── OCMRecorder.h │ │ │ ├── OCMReturnValueProvider.h │ │ │ ├── OCMStubRecorder.h │ │ │ ├── OCMVerifier.h │ │ │ ├── OCMock.h │ │ │ ├── OCMockObject.h │ │ │ ├── OCObserverMockObject.h │ │ │ ├── OCPartialMockObject.h │ │ │ └── OCProtocolMockObject.h │ │ └── Tweaks │ │ │ ├── FBTweak.h │ │ │ ├── FBTweakCategory.h │ │ │ ├── FBTweakCollection.h │ │ │ ├── FBTweakEnabled.h │ │ │ ├── FBTweakInline.h │ │ │ ├── FBTweakInlineInternal.h │ │ │ ├── FBTweakShakeWindow.h │ │ │ ├── FBTweakStore.h │ │ │ ├── FBTweakViewController.h │ │ │ ├── _FBTweakArrayViewController.h │ │ │ ├── _FBTweakBindObserver.h │ │ │ ├── _FBTweakCategoryViewController.h │ │ │ ├── _FBTweakCollectionViewController.h │ │ │ ├── _FBTweakDictionaryViewController.h │ │ │ └── _FBTweakTableViewCell.h │ └── Public │ │ ├── OCMock │ │ ├── NSNotificationCenter+OCMAdditions.h │ │ ├── OCMArg.h │ │ ├── OCMConstraint.h │ │ ├── OCMLocation.h │ │ ├── OCMMacroState.h │ │ ├── OCMRecorder.h │ │ ├── OCMStubRecorder.h │ │ ├── OCMock.h │ │ └── OCMockObject.h │ │ └── Tweaks │ │ ├── FBTweak.h │ │ ├── FBTweakCategory.h │ │ ├── FBTweakCollection.h │ │ ├── FBTweakEnabled.h │ │ ├── FBTweakInline.h │ │ ├── FBTweakInlineInternal.h │ │ ├── FBTweakShakeWindow.h │ │ ├── FBTweakStore.h │ │ ├── FBTweakViewController.h │ │ ├── _FBTweakArrayViewController.h │ │ ├── _FBTweakBindObserver.h │ │ ├── _FBTweakCategoryViewController.h │ │ ├── _FBTweakCollectionViewController.h │ │ ├── _FBTweakDictionaryViewController.h │ │ └── _FBTweakTableViewCell.h │ ├── Manifest.lock │ ├── OCMock │ ├── README.md │ └── Source │ │ ├── License.txt │ │ └── OCMock │ │ ├── NSInvocation+OCMAdditions.h │ │ ├── NSInvocation+OCMAdditions.m │ │ ├── NSMethodSignature+OCMAdditions.h │ │ ├── NSMethodSignature+OCMAdditions.m │ │ ├── NSNotificationCenter+OCMAdditions.h │ │ ├── NSNotificationCenter+OCMAdditions.m │ │ ├── NSObject+OCMAdditions.h │ │ ├── NSObject+OCMAdditions.m │ │ ├── NSValue+OCMAdditions.h │ │ ├── NSValue+OCMAdditions.m │ │ ├── OCClassMockObject.h │ │ ├── OCClassMockObject.m │ │ ├── OCMArg.h │ │ ├── OCMArg.m │ │ ├── OCMBlockCaller.h │ │ ├── OCMBlockCaller.m │ │ ├── OCMBoxedReturnValueProvider.h │ │ ├── OCMBoxedReturnValueProvider.m │ │ ├── OCMConstraint.h │ │ ├── OCMConstraint.m │ │ ├── OCMExceptionReturnValueProvider.h │ │ ├── OCMExceptionReturnValueProvider.m │ │ ├── OCMExpectationRecorder.h │ │ ├── OCMExpectationRecorder.m │ │ ├── OCMFunctions.h │ │ ├── OCMFunctions.m │ │ ├── OCMIndirectReturnValueProvider.h │ │ ├── OCMIndirectReturnValueProvider.m │ │ ├── OCMInvocationExpectation.h │ │ ├── OCMInvocationExpectation.m │ │ ├── OCMInvocationMatcher.h │ │ ├── OCMInvocationMatcher.m │ │ ├── OCMInvocationStub.h │ │ ├── OCMInvocationStub.m │ │ ├── OCMLocation.h │ │ ├── OCMLocation.m │ │ ├── OCMMacroState.h │ │ ├── OCMMacroState.m │ │ ├── OCMNotificationPoster.h │ │ ├── OCMNotificationPoster.m │ │ ├── OCMObserverRecorder.h │ │ ├── OCMObserverRecorder.m │ │ ├── OCMPassByRefSetter.h │ │ ├── OCMPassByRefSetter.m │ │ ├── OCMRealObjectForwarder.h │ │ ├── OCMRealObjectForwarder.m │ │ ├── OCMRecorder.h │ │ ├── OCMRecorder.m │ │ ├── OCMReturnValueProvider.h │ │ ├── OCMReturnValueProvider.m │ │ ├── OCMStubRecorder.h │ │ ├── OCMStubRecorder.m │ │ ├── OCMVerifier.h │ │ ├── OCMVerifier.m │ │ ├── OCMock.h │ │ ├── OCMockObject.h │ │ ├── OCMockObject.m │ │ ├── OCObserverMockObject.h │ │ ├── OCObserverMockObject.m │ │ ├── OCPartialMockObject.h │ │ ├── OCPartialMockObject.m │ │ ├── OCProtocolMockObject.h │ │ └── OCProtocolMockObject.m │ ├── Pods.xcodeproj │ └── project.pbxproj │ ├── Target Support Files │ ├── OCMock │ │ ├── OCMock-dummy.m │ │ ├── OCMock-prefix.pch │ │ └── OCMock.xcconfig │ ├── Pods-Barricade-BarricadeTests │ │ ├── Pods-Barricade-BarricadeTests-acknowledgements.markdown │ │ ├── Pods-Barricade-BarricadeTests-acknowledgements.plist │ │ ├── Pods-Barricade-BarricadeTests-dummy.m │ │ ├── Pods-Barricade-BarricadeTests-frameworks.sh │ │ ├── Pods-Barricade-BarricadeTests-resources.sh │ │ ├── Pods-Barricade-BarricadeTests.debug.xcconfig │ │ └── Pods-Barricade-BarricadeTests.release.xcconfig │ ├── Pods-Barricade │ │ ├── Pods-Barricade-acknowledgements.markdown │ │ ├── Pods-Barricade-acknowledgements.plist │ │ ├── Pods-Barricade-dummy.m │ │ ├── Pods-Barricade-frameworks.sh │ │ ├── Pods-Barricade-resources.sh │ │ ├── Pods-Barricade.debug.xcconfig │ │ └── Pods-Barricade.release.xcconfig │ └── Tweaks │ │ ├── Tweaks-dummy.m │ │ ├── Tweaks-prefix.pch │ │ └── Tweaks.xcconfig │ └── Tweaks │ ├── FBTweak │ ├── FBTweak.h │ ├── FBTweak.m │ ├── FBTweakCategory.h │ ├── FBTweakCategory.m │ ├── FBTweakCollection.h │ ├── FBTweakCollection.m │ ├── FBTweakEnabled.h │ ├── FBTweakInline.h │ ├── FBTweakInline.m │ ├── FBTweakInlineInternal.h │ ├── FBTweakShakeWindow.h │ ├── FBTweakShakeWindow.m │ ├── FBTweakStore.h │ ├── FBTweakStore.m │ ├── FBTweakViewController.h │ ├── FBTweakViewController.m │ ├── _FBTweakArrayViewController.h │ ├── _FBTweakArrayViewController.m │ ├── _FBTweakBindObserver.h │ ├── _FBTweakBindObserver.m │ ├── _FBTweakCategoryViewController.h │ ├── _FBTweakCategoryViewController.m │ ├── _FBTweakCollectionViewController.h │ ├── _FBTweakCollectionViewController.m │ ├── _FBTweakDictionaryViewController.h │ ├── _FBTweakDictionaryViewController.m │ ├── _FBTweakTableViewCell.h │ └── _FBTweakTableViewCell.m │ ├── LICENSE │ └── README.md ├── Examples └── ObjC │ ├── BarricadeExample │ ├── BarricadeExample.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ ├── BarricadeExample.xcworkspace │ │ └── contents.xcworkspacedata │ ├── BarricadeExample │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.xib │ │ │ └── Main.storyboard │ │ ├── Images.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ ├── Info.plist │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ └── main.m │ ├── BarricadeExampleTests │ │ ├── BarricadeExampleTests.m │ │ └── Info.plist │ ├── Cocoapods.podfile │ ├── LocalServerFiles │ │ ├── search.empty.json │ │ ├── search.ratelimited.json │ │ └── search.success.json │ ├── Podfile.lock │ └── Pods │ │ ├── Headers │ │ ├── Private │ │ │ └── MMBarricade │ │ │ │ ├── MMBarricade.h │ │ │ │ ├── MMBarricadeAbstractResponseStore.h │ │ │ │ ├── MMBarricadeDispatch.h │ │ │ │ ├── MMBarricadeErrors.h │ │ │ │ ├── MMBarricadeInMemoryResponseStore.h │ │ │ │ ├── MMBarricadePathUtility.h │ │ │ │ ├── MMBarricadeResponse+Convenience.h │ │ │ │ ├── MMBarricadeResponse.h │ │ │ │ ├── MMBarricadeResponseSelectionViewController.h │ │ │ │ ├── MMBarricadeResponseSet+Convenience.h │ │ │ │ ├── MMBarricadeResponseSet.h │ │ │ │ ├── MMBarricadeResponseSetViewController.h │ │ │ │ ├── MMBarricadeResponseStore.h │ │ │ │ ├── MMBarricadeShakeWindow.h │ │ │ │ └── MMBarricadeViewController.h │ │ └── Public │ │ │ └── MMBarricade │ │ │ ├── MMBarricade.h │ │ │ ├── MMBarricadeAbstractResponseStore.h │ │ │ ├── MMBarricadeDispatch.h │ │ │ ├── MMBarricadeErrors.h │ │ │ ├── MMBarricadeInMemoryResponseStore.h │ │ │ ├── MMBarricadePathUtility.h │ │ │ ├── MMBarricadeResponse+Convenience.h │ │ │ ├── MMBarricadeResponse.h │ │ │ ├── MMBarricadeResponseSelectionViewController.h │ │ │ ├── MMBarricadeResponseSet+Convenience.h │ │ │ ├── MMBarricadeResponseSet.h │ │ │ ├── MMBarricadeResponseSetViewController.h │ │ │ ├── MMBarricadeResponseStore.h │ │ │ ├── MMBarricadeShakeWindow.h │ │ │ └── MMBarricadeViewController.h │ │ ├── Local Podspecs │ │ └── MMBarricade.podspec.json │ │ ├── Manifest.lock │ │ ├── Pods.xcodeproj │ │ └── project.pbxproj │ │ └── Target Support Files │ │ ├── Pods-MMBarricade │ │ ├── Pods-MMBarricade-Private.xcconfig │ │ ├── Pods-MMBarricade-dummy.m │ │ ├── Pods-MMBarricade-prefix.pch │ │ └── Pods-MMBarricade.xcconfig │ │ └── Pods │ │ ├── Pods-acknowledgements.markdown │ │ ├── Pods-acknowledgements.plist │ │ ├── Pods-dummy.m │ │ ├── Pods-environment.h │ │ ├── Pods-resources.sh │ │ ├── Pods.debug.xcconfig │ │ └── Pods.release.xcconfig │ └── BarricadeTweaksExample │ ├── BarricadeTweaksExample.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata │ ├── BarricadeTweaksExample.xcworkspace │ └── contents.xcworkspacedata │ ├── BarricadeTweaksExample │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ ├── ViewController.h │ ├── ViewController.m │ └── main.m │ ├── BarricadeTweaksExampleTests │ ├── BarricadeTweaksExampleTests.m │ └── Info.plist │ ├── CocoaPods.podfile │ ├── LocalServerFiles │ ├── search.empty.json │ ├── search.ratelimited.json │ └── search.success.json │ ├── Podfile.lock │ └── Pods │ ├── Headers │ ├── Private │ │ ├── MMBarricade │ │ │ ├── MMBarricade+Tweaks.h │ │ │ ├── MMBarricade.h │ │ │ ├── MMBarricadeAbstractResponseStore.h │ │ │ ├── MMBarricadeDispatch.h │ │ │ ├── MMBarricadeErrors.h │ │ │ ├── MMBarricadeInMemoryResponseStore.h │ │ │ ├── MMBarricadePathUtility.h │ │ │ ├── MMBarricadeResponse+Convenience.h │ │ │ ├── MMBarricadeResponse.h │ │ │ ├── MMBarricadeResponseSelectionViewController.h │ │ │ ├── MMBarricadeResponseSet+Convenience.h │ │ │ ├── MMBarricadeResponseSet.h │ │ │ ├── MMBarricadeResponseSetViewController.h │ │ │ ├── MMBarricadeResponseStore.h │ │ │ ├── MMBarricadeShakeWindow.h │ │ │ ├── MMBarricadeTweaksResponseStore.h │ │ │ └── MMBarricadeViewController.h │ │ └── Tweaks │ │ │ ├── FBTweak.h │ │ │ ├── FBTweakCategory.h │ │ │ ├── FBTweakCollection.h │ │ │ ├── FBTweakEnabled.h │ │ │ ├── FBTweakInline.h │ │ │ ├── FBTweakInlineInternal.h │ │ │ ├── FBTweakShakeWindow.h │ │ │ ├── FBTweakStore.h │ │ │ ├── FBTweakViewController.h │ │ │ ├── _FBTweakArrayViewController.h │ │ │ ├── _FBTweakBindObserver.h │ │ │ ├── _FBTweakCategoryViewController.h │ │ │ ├── _FBTweakCollectionViewController.h │ │ │ ├── _FBTweakDictionaryViewController.h │ │ │ └── _FBTweakTableViewCell.h │ └── Public │ │ ├── MMBarricade │ │ ├── MMBarricade+Tweaks.h │ │ ├── MMBarricade.h │ │ ├── MMBarricadeAbstractResponseStore.h │ │ ├── MMBarricadeDispatch.h │ │ ├── MMBarricadeErrors.h │ │ ├── MMBarricadeInMemoryResponseStore.h │ │ ├── MMBarricadePathUtility.h │ │ ├── MMBarricadeResponse+Convenience.h │ │ ├── MMBarricadeResponse.h │ │ ├── MMBarricadeResponseSelectionViewController.h │ │ ├── MMBarricadeResponseSet+Convenience.h │ │ ├── MMBarricadeResponseSet.h │ │ ├── MMBarricadeResponseSetViewController.h │ │ ├── MMBarricadeResponseStore.h │ │ ├── MMBarricadeShakeWindow.h │ │ ├── MMBarricadeTweaksResponseStore.h │ │ └── MMBarricadeViewController.h │ │ └── Tweaks │ │ ├── FBTweak.h │ │ ├── FBTweakCategory.h │ │ ├── FBTweakCollection.h │ │ ├── FBTweakEnabled.h │ │ ├── FBTweakInline.h │ │ ├── FBTweakInlineInternal.h │ │ ├── FBTweakShakeWindow.h │ │ ├── FBTweakStore.h │ │ ├── FBTweakViewController.h │ │ ├── _FBTweakArrayViewController.h │ │ ├── _FBTweakBindObserver.h │ │ ├── _FBTweakCategoryViewController.h │ │ ├── _FBTweakCollectionViewController.h │ │ ├── _FBTweakDictionaryViewController.h │ │ └── _FBTweakTableViewCell.h │ ├── Local Podspecs │ └── MMBarricade.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ └── project.pbxproj │ ├── Target Support Files │ ├── Pods-MMBarricade │ │ ├── Pods-MMBarricade-Private.xcconfig │ │ ├── Pods-MMBarricade-dummy.m │ │ ├── Pods-MMBarricade-prefix.pch │ │ └── Pods-MMBarricade.xcconfig │ ├── Pods-Tweaks │ │ ├── Pods-Tweaks-Private.xcconfig │ │ ├── Pods-Tweaks-dummy.m │ │ ├── Pods-Tweaks-prefix.pch │ │ └── Pods-Tweaks.xcconfig │ └── Pods │ │ ├── Pods-acknowledgements.markdown │ │ ├── Pods-acknowledgements.plist │ │ ├── Pods-dummy.m │ │ ├── Pods-environment.h │ │ ├── Pods-resources.sh │ │ ├── Pods.debug.xcconfig │ │ └── Pods.release.xcconfig │ └── Tweaks │ ├── FBTweak │ ├── FBTweak.h │ ├── FBTweak.m │ ├── FBTweakCategory.h │ ├── FBTweakCategory.m │ ├── FBTweakCollection.h │ ├── FBTweakCollection.m │ ├── FBTweakEnabled.h │ ├── FBTweakInline.h │ ├── FBTweakInline.m │ ├── FBTweakInlineInternal.h │ ├── FBTweakShakeWindow.h │ ├── FBTweakShakeWindow.m │ ├── FBTweakStore.h │ ├── FBTweakStore.m │ ├── FBTweakViewController.h │ ├── FBTweakViewController.m │ ├── _FBTweakArrayViewController.h │ ├── _FBTweakArrayViewController.m │ ├── _FBTweakBindObserver.h │ ├── _FBTweakBindObserver.m │ ├── _FBTweakCategoryViewController.h │ ├── _FBTweakCategoryViewController.m │ ├── _FBTweakCollectionViewController.h │ ├── _FBTweakCollectionViewController.m │ ├── _FBTweakDictionaryViewController.h │ ├── _FBTweakDictionaryViewController.m │ ├── _FBTweakTableViewCell.h │ └── _FBTweakTableViewCell.m │ ├── LICENSE │ └── README.md ├── LICENSE ├── MMBarricade.podspec ├── README.md └── ReadmeResources ├── MMBarricade.gif └── in-app-selection.jpg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/.travis.yml -------------------------------------------------------------------------------- /Barricade/Core/MMBarricade.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Barricade/Core/MMBarricade.h -------------------------------------------------------------------------------- /Barricade/Core/MMBarricade.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Barricade/Core/MMBarricade.m -------------------------------------------------------------------------------- /Barricade/Core/MMBarricadeDispatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Barricade/Core/MMBarricadeDispatch.h -------------------------------------------------------------------------------- /Barricade/Core/MMBarricadeDispatch.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Barricade/Core/MMBarricadeDispatch.m -------------------------------------------------------------------------------- /Barricade/Core/MMBarricadeDispatchTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Barricade/Core/MMBarricadeDispatchTests.m -------------------------------------------------------------------------------- /Barricade/Core/MMBarricadeErrors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Barricade/Core/MMBarricadeErrors.h -------------------------------------------------------------------------------- /Barricade/Core/MMBarricadeTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Barricade/Core/MMBarricadeTests.m -------------------------------------------------------------------------------- /Barricade/Core/Response/MMBarricadePathUtility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Barricade/Core/Response/MMBarricadePathUtility.h -------------------------------------------------------------------------------- /Barricade/Core/Response/MMBarricadePathUtility.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Barricade/Core/Response/MMBarricadePathUtility.m -------------------------------------------------------------------------------- /Barricade/Core/Response/MMBarricadePathUtilityTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Barricade/Core/Response/MMBarricadePathUtilityTests.m -------------------------------------------------------------------------------- /Barricade/Core/Response/MMBarricadeResponse+Convenience.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Barricade/Core/Response/MMBarricadeResponse+Convenience.h -------------------------------------------------------------------------------- /Barricade/Core/Response/MMBarricadeResponse+Convenience.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Barricade/Core/Response/MMBarricadeResponse+Convenience.m -------------------------------------------------------------------------------- /Barricade/Core/Response/MMBarricadeResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Barricade/Core/Response/MMBarricadeResponse.h -------------------------------------------------------------------------------- /Barricade/Core/Response/MMBarricadeResponse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Barricade/Core/Response/MMBarricadeResponse.m -------------------------------------------------------------------------------- /Barricade/Core/Response/MMBarricadeResponseConvenienceTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Barricade/Core/Response/MMBarricadeResponseConvenienceTests.m -------------------------------------------------------------------------------- /Barricade/Core/Response/MMBarricadeResponseTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Barricade/Core/Response/MMBarricadeResponseTests.m -------------------------------------------------------------------------------- /Barricade/Core/ResponseSet/MMBarricadeResponseSet+Convenience.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Barricade/Core/ResponseSet/MMBarricadeResponseSet+Convenience.h -------------------------------------------------------------------------------- /Barricade/Core/ResponseSet/MMBarricadeResponseSet+Convenience.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Barricade/Core/ResponseSet/MMBarricadeResponseSet+Convenience.m -------------------------------------------------------------------------------- /Barricade/Core/ResponseSet/MMBarricadeResponseSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Barricade/Core/ResponseSet/MMBarricadeResponseSet.h -------------------------------------------------------------------------------- /Barricade/Core/ResponseSet/MMBarricadeResponseSet.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Barricade/Core/ResponseSet/MMBarricadeResponseSet.m -------------------------------------------------------------------------------- /Barricade/Core/ResponseSet/MMBarricadeResponseSetConvenienceTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Barricade/Core/ResponseSet/MMBarricadeResponseSetConvenienceTests.m -------------------------------------------------------------------------------- /Barricade/Core/ResponseSet/MMBarricadeResponseSetTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Barricade/Core/ResponseSet/MMBarricadeResponseSetTests.m -------------------------------------------------------------------------------- /Barricade/Core/ResponseStore/MMBarricadeAbstractResponseStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Barricade/Core/ResponseStore/MMBarricadeAbstractResponseStore.h -------------------------------------------------------------------------------- /Barricade/Core/ResponseStore/MMBarricadeAbstractResponseStore.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Barricade/Core/ResponseStore/MMBarricadeAbstractResponseStore.m -------------------------------------------------------------------------------- /Barricade/Core/ResponseStore/MMBarricadeInMemoryResponseStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Barricade/Core/ResponseStore/MMBarricadeInMemoryResponseStore.h -------------------------------------------------------------------------------- /Barricade/Core/ResponseStore/MMBarricadeInMemoryResponseStore.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Barricade/Core/ResponseStore/MMBarricadeInMemoryResponseStore.m -------------------------------------------------------------------------------- /Barricade/Core/ResponseStore/MMBarricadeInMemoryResponseStoreTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Barricade/Core/ResponseStore/MMBarricadeInMemoryResponseStoreTests.m -------------------------------------------------------------------------------- /Barricade/Core/ResponseStore/MMBarricadeResponseStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Barricade/Core/ResponseStore/MMBarricadeResponseStore.h -------------------------------------------------------------------------------- /Barricade/Core/UI/MMBarricadeResponseSelectionViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Barricade/Core/UI/MMBarricadeResponseSelectionViewController.h -------------------------------------------------------------------------------- /Barricade/Core/UI/MMBarricadeResponseSelectionViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Barricade/Core/UI/MMBarricadeResponseSelectionViewController.m -------------------------------------------------------------------------------- /Barricade/Core/UI/MMBarricadeResponseSetViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Barricade/Core/UI/MMBarricadeResponseSetViewController.h -------------------------------------------------------------------------------- /Barricade/Core/UI/MMBarricadeResponseSetViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Barricade/Core/UI/MMBarricadeResponseSetViewController.m -------------------------------------------------------------------------------- /Barricade/Core/UI/MMBarricadeShakeWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Barricade/Core/UI/MMBarricadeShakeWindow.h -------------------------------------------------------------------------------- /Barricade/Core/UI/MMBarricadeShakeWindow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Barricade/Core/UI/MMBarricadeShakeWindow.m -------------------------------------------------------------------------------- /Barricade/Core/UI/MMBarricadeViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Barricade/Core/UI/MMBarricadeViewController.h -------------------------------------------------------------------------------- /Barricade/Core/UI/MMBarricadeViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Barricade/Core/UI/MMBarricadeViewController.m -------------------------------------------------------------------------------- /Barricade/Tweaks/MMBarricade+Tweaks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Barricade/Tweaks/MMBarricade+Tweaks.h -------------------------------------------------------------------------------- /Barricade/Tweaks/MMBarricade+Tweaks.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Barricade/Tweaks/MMBarricade+Tweaks.m -------------------------------------------------------------------------------- /Barricade/Tweaks/MMBarricadeTweaksResponseStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Barricade/Tweaks/MMBarricadeTweaksResponseStore.h -------------------------------------------------------------------------------- /Barricade/Tweaks/MMBarricadeTweaksResponseStore.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Barricade/Tweaks/MMBarricadeTweaksResponseStore.m -------------------------------------------------------------------------------- /Barricade/Tweaks/MMBarricadeTweaksResponseStoreTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Barricade/Tweaks/MMBarricadeTweaksResponseStoreTests.m -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /DevelopmentApp/AppBundleResources/app.bundle.txt: -------------------------------------------------------------------------------- 1 | Sample file-based response in app bundle. -------------------------------------------------------------------------------- /DevelopmentApp/Barricade.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Barricade.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /DevelopmentApp/Barricade.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Barricade.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /DevelopmentApp/Barricade.xcodeproj/xcshareddata/xcschemes/Barricade.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Barricade.xcodeproj/xcshareddata/xcschemes/Barricade.xcscheme -------------------------------------------------------------------------------- /DevelopmentApp/Barricade.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Barricade.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /DevelopmentApp/Barricade/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Barricade/AppDelegate.h -------------------------------------------------------------------------------- /DevelopmentApp/Barricade/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Barricade/AppDelegate.m -------------------------------------------------------------------------------- /DevelopmentApp/Barricade/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Barricade/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /DevelopmentApp/Barricade/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Barricade/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /DevelopmentApp/Barricade/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Barricade/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /DevelopmentApp/Barricade/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Barricade/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /DevelopmentApp/Barricade/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Barricade/Info.plist -------------------------------------------------------------------------------- /DevelopmentApp/Barricade/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Barricade/ViewController.h -------------------------------------------------------------------------------- /DevelopmentApp/Barricade/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Barricade/ViewController.m -------------------------------------------------------------------------------- /DevelopmentApp/Barricade/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Barricade/main.m -------------------------------------------------------------------------------- /DevelopmentApp/BarricadeTests/BarricadeTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/BarricadeTests/BarricadeTests.m -------------------------------------------------------------------------------- /DevelopmentApp/BarricadeTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/BarricadeTests/Info.plist -------------------------------------------------------------------------------- /DevelopmentApp/CocoaPods.podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/CocoaPods.podfile -------------------------------------------------------------------------------- /DevelopmentApp/LocalServerResources/file.response.txt: -------------------------------------------------------------------------------- 1 | Sample file-based response. -------------------------------------------------------------------------------- /DevelopmentApp/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Podfile.lock -------------------------------------------------------------------------------- /DevelopmentApp/Pods/Headers/Private/OCMock/NSInvocation+OCMAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/NSInvocation+OCMAdditions.h -------------------------------------------------------------------------------- /DevelopmentApp/Pods/Headers/Private/OCMock/NSMethodSignature+OCMAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/NSMethodSignature+OCMAdditions.h -------------------------------------------------------------------------------- /DevelopmentApp/Pods/Headers/Private/OCMock/NSNotificationCenter+OCMAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/NSNotificationCenter+OCMAdditions.h -------------------------------------------------------------------------------- /DevelopmentApp/Pods/Headers/Private/OCMock/NSObject+OCMAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/NSObject+OCMAdditions.h -------------------------------------------------------------------------------- /DevelopmentApp/Pods/Headers/Private/OCMock/NSValue+OCMAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/NSValue+OCMAdditions.h -------------------------------------------------------------------------------- /DevelopmentApp/Pods/Headers/Private/OCMock/OCClassMockObject.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCClassMockObject.h -------------------------------------------------------------------------------- /DevelopmentApp/Pods/Headers/Private/OCMock/OCMArg.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMArg.h -------------------------------------------------------------------------------- /DevelopmentApp/Pods/Headers/Private/OCMock/OCMBlockCaller.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMBlockCaller.h -------------------------------------------------------------------------------- /DevelopmentApp/Pods/Headers/Private/OCMock/OCMBoxedReturnValueProvider.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMBoxedReturnValueProvider.h -------------------------------------------------------------------------------- /DevelopmentApp/Pods/Headers/Private/OCMock/OCMConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMConstraint.h -------------------------------------------------------------------------------- /DevelopmentApp/Pods/Headers/Private/OCMock/OCMExceptionReturnValueProvider.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMExceptionReturnValueProvider.h -------------------------------------------------------------------------------- /DevelopmentApp/Pods/Headers/Private/OCMock/OCMExpectationRecorder.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMExpectationRecorder.h -------------------------------------------------------------------------------- /DevelopmentApp/Pods/Headers/Private/OCMock/OCMFunctions.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMFunctions.h -------------------------------------------------------------------------------- /DevelopmentApp/Pods/Headers/Private/OCMock/OCMIndirectReturnValueProvider.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMIndirectReturnValueProvider.h -------------------------------------------------------------------------------- /DevelopmentApp/Pods/Headers/Private/OCMock/OCMInvocationExpectation.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMInvocationExpectation.h -------------------------------------------------------------------------------- /DevelopmentApp/Pods/Headers/Private/OCMock/OCMInvocationMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMInvocationMatcher.h -------------------------------------------------------------------------------- /DevelopmentApp/Pods/Headers/Private/OCMock/OCMInvocationStub.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMInvocationStub.h -------------------------------------------------------------------------------- /DevelopmentApp/Pods/Headers/Private/OCMock/OCMLocation.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMLocation.h -------------------------------------------------------------------------------- /DevelopmentApp/Pods/Headers/Private/OCMock/OCMMacroState.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMMacroState.h -------------------------------------------------------------------------------- /DevelopmentApp/Pods/Headers/Private/OCMock/OCMNotificationPoster.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMNotificationPoster.h -------------------------------------------------------------------------------- /DevelopmentApp/Pods/Headers/Private/OCMock/OCMObserverRecorder.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMObserverRecorder.h -------------------------------------------------------------------------------- /DevelopmentApp/Pods/Headers/Private/OCMock/OCMPassByRefSetter.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMPassByRefSetter.h -------------------------------------------------------------------------------- /DevelopmentApp/Pods/Headers/Private/OCMock/OCMRealObjectForwarder.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMRealObjectForwarder.h -------------------------------------------------------------------------------- /DevelopmentApp/Pods/Headers/Private/OCMock/OCMRecorder.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMRecorder.h -------------------------------------------------------------------------------- /DevelopmentApp/Pods/Headers/Private/OCMock/OCMReturnValueProvider.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMReturnValueProvider.h -------------------------------------------------------------------------------- /DevelopmentApp/Pods/Headers/Private/OCMock/OCMStubRecorder.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMStubRecorder.h -------------------------------------------------------------------------------- /DevelopmentApp/Pods/Headers/Private/OCMock/OCMVerifier.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMVerifier.h -------------------------------------------------------------------------------- /DevelopmentApp/Pods/Headers/Private/OCMock/OCMock.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMock.h -------------------------------------------------------------------------------- /DevelopmentApp/Pods/Headers/Private/OCMock/OCMockObject.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMockObject.h -------------------------------------------------------------------------------- /DevelopmentApp/Pods/Headers/Private/OCMock/OCObserverMockObject.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCObserverMockObject.h -------------------------------------------------------------------------------- /DevelopmentApp/Pods/Headers/Private/OCMock/OCPartialMockObject.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCPartialMockObject.h -------------------------------------------------------------------------------- /DevelopmentApp/Pods/Headers/Private/OCMock/OCProtocolMockObject.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCProtocolMockObject.h -------------------------------------------------------------------------------- /DevelopmentApp/Pods/Headers/Private/Tweaks/FBTweak.h: -------------------------------------------------------------------------------- 1 | ../../../Tweaks/FBTweak/FBTweak.h -------------------------------------------------------------------------------- /DevelopmentApp/Pods/Headers/Private/Tweaks/FBTweakCategory.h: -------------------------------------------------------------------------------- 1 | ../../../Tweaks/FBTweak/FBTweakCategory.h -------------------------------------------------------------------------------- /DevelopmentApp/Pods/Headers/Private/Tweaks/FBTweakCollection.h: -------------------------------------------------------------------------------- 1 | ../../../Tweaks/FBTweak/FBTweakCollection.h -------------------------------------------------------------------------------- /DevelopmentApp/Pods/Headers/Private/Tweaks/FBTweakEnabled.h: -------------------------------------------------------------------------------- 1 | ../../../Tweaks/FBTweak/FBTweakEnabled.h -------------------------------------------------------------------------------- /DevelopmentApp/Pods/Headers/Private/Tweaks/FBTweakInline.h: -------------------------------------------------------------------------------- 1 | ../../../Tweaks/FBTweak/FBTweakInline.h -------------------------------------------------------------------------------- /DevelopmentApp/Pods/Headers/Private/Tweaks/FBTweakInlineInternal.h: -------------------------------------------------------------------------------- 1 | ../../../Tweaks/FBTweak/FBTweakInlineInternal.h -------------------------------------------------------------------------------- /DevelopmentApp/Pods/Headers/Private/Tweaks/FBTweakShakeWindow.h: -------------------------------------------------------------------------------- 1 | ../../../Tweaks/FBTweak/FBTweakShakeWindow.h -------------------------------------------------------------------------------- /DevelopmentApp/Pods/Headers/Private/Tweaks/FBTweakStore.h: -------------------------------------------------------------------------------- 1 | ../../../Tweaks/FBTweak/FBTweakStore.h -------------------------------------------------------------------------------- /DevelopmentApp/Pods/Headers/Private/Tweaks/FBTweakViewController.h: -------------------------------------------------------------------------------- 1 | ../../../Tweaks/FBTweak/FBTweakViewController.h -------------------------------------------------------------------------------- /DevelopmentApp/Pods/Headers/Private/Tweaks/_FBTweakArrayViewController.h: -------------------------------------------------------------------------------- 1 | ../../../Tweaks/FBTweak/_FBTweakArrayViewController.h -------------------------------------------------------------------------------- /DevelopmentApp/Pods/Headers/Private/Tweaks/_FBTweakBindObserver.h: -------------------------------------------------------------------------------- 1 | ../../../Tweaks/FBTweak/_FBTweakBindObserver.h -------------------------------------------------------------------------------- /DevelopmentApp/Pods/Headers/Private/Tweaks/_FBTweakCategoryViewController.h: -------------------------------------------------------------------------------- 1 | ../../../Tweaks/FBTweak/_FBTweakCategoryViewController.h -------------------------------------------------------------------------------- /DevelopmentApp/Pods/Headers/Private/Tweaks/_FBTweakCollectionViewController.h: -------------------------------------------------------------------------------- 1 | ../../../Tweaks/FBTweak/_FBTweakCollectionViewController.h -------------------------------------------------------------------------------- /DevelopmentApp/Pods/Headers/Private/Tweaks/_FBTweakDictionaryViewController.h: -------------------------------------------------------------------------------- 1 | ../../../Tweaks/FBTweak/_FBTweakDictionaryViewController.h -------------------------------------------------------------------------------- /DevelopmentApp/Pods/Headers/Private/Tweaks/_FBTweakTableViewCell.h: -------------------------------------------------------------------------------- 1 | ../../../Tweaks/FBTweak/_FBTweakTableViewCell.h -------------------------------------------------------------------------------- /DevelopmentApp/Pods/Headers/Public/OCMock/NSNotificationCenter+OCMAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/NSNotificationCenter+OCMAdditions.h -------------------------------------------------------------------------------- /DevelopmentApp/Pods/Headers/Public/OCMock/OCMArg.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMArg.h -------------------------------------------------------------------------------- /DevelopmentApp/Pods/Headers/Public/OCMock/OCMConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMConstraint.h -------------------------------------------------------------------------------- /DevelopmentApp/Pods/Headers/Public/OCMock/OCMLocation.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMLocation.h -------------------------------------------------------------------------------- /DevelopmentApp/Pods/Headers/Public/OCMock/OCMMacroState.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMMacroState.h -------------------------------------------------------------------------------- /DevelopmentApp/Pods/Headers/Public/OCMock/OCMRecorder.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMRecorder.h -------------------------------------------------------------------------------- /DevelopmentApp/Pods/Headers/Public/OCMock/OCMStubRecorder.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMStubRecorder.h -------------------------------------------------------------------------------- /DevelopmentApp/Pods/Headers/Public/OCMock/OCMock.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMock.h -------------------------------------------------------------------------------- /DevelopmentApp/Pods/Headers/Public/OCMock/OCMockObject.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMockObject.h -------------------------------------------------------------------------------- /DevelopmentApp/Pods/Headers/Public/Tweaks/FBTweak.h: -------------------------------------------------------------------------------- 1 | ../../../Tweaks/FBTweak/FBTweak.h -------------------------------------------------------------------------------- /DevelopmentApp/Pods/Headers/Public/Tweaks/FBTweakCategory.h: -------------------------------------------------------------------------------- 1 | ../../../Tweaks/FBTweak/FBTweakCategory.h -------------------------------------------------------------------------------- /DevelopmentApp/Pods/Headers/Public/Tweaks/FBTweakCollection.h: -------------------------------------------------------------------------------- 1 | ../../../Tweaks/FBTweak/FBTweakCollection.h -------------------------------------------------------------------------------- /DevelopmentApp/Pods/Headers/Public/Tweaks/FBTweakEnabled.h: -------------------------------------------------------------------------------- 1 | ../../../Tweaks/FBTweak/FBTweakEnabled.h -------------------------------------------------------------------------------- /DevelopmentApp/Pods/Headers/Public/Tweaks/FBTweakInline.h: -------------------------------------------------------------------------------- 1 | ../../../Tweaks/FBTweak/FBTweakInline.h -------------------------------------------------------------------------------- /DevelopmentApp/Pods/Headers/Public/Tweaks/FBTweakInlineInternal.h: -------------------------------------------------------------------------------- 1 | ../../../Tweaks/FBTweak/FBTweakInlineInternal.h -------------------------------------------------------------------------------- /DevelopmentApp/Pods/Headers/Public/Tweaks/FBTweakShakeWindow.h: -------------------------------------------------------------------------------- 1 | ../../../Tweaks/FBTweak/FBTweakShakeWindow.h -------------------------------------------------------------------------------- /DevelopmentApp/Pods/Headers/Public/Tweaks/FBTweakStore.h: -------------------------------------------------------------------------------- 1 | ../../../Tweaks/FBTweak/FBTweakStore.h -------------------------------------------------------------------------------- /DevelopmentApp/Pods/Headers/Public/Tweaks/FBTweakViewController.h: -------------------------------------------------------------------------------- 1 | ../../../Tweaks/FBTweak/FBTweakViewController.h -------------------------------------------------------------------------------- /DevelopmentApp/Pods/Headers/Public/Tweaks/_FBTweakArrayViewController.h: -------------------------------------------------------------------------------- 1 | ../../../Tweaks/FBTweak/_FBTweakArrayViewController.h -------------------------------------------------------------------------------- /DevelopmentApp/Pods/Headers/Public/Tweaks/_FBTweakBindObserver.h: -------------------------------------------------------------------------------- 1 | ../../../Tweaks/FBTweak/_FBTweakBindObserver.h -------------------------------------------------------------------------------- /DevelopmentApp/Pods/Headers/Public/Tweaks/_FBTweakCategoryViewController.h: -------------------------------------------------------------------------------- 1 | ../../../Tweaks/FBTweak/_FBTweakCategoryViewController.h -------------------------------------------------------------------------------- /DevelopmentApp/Pods/Headers/Public/Tweaks/_FBTweakCollectionViewController.h: -------------------------------------------------------------------------------- 1 | ../../../Tweaks/FBTweak/_FBTweakCollectionViewController.h -------------------------------------------------------------------------------- /DevelopmentApp/Pods/Headers/Public/Tweaks/_FBTweakDictionaryViewController.h: -------------------------------------------------------------------------------- 1 | ../../../Tweaks/FBTweak/_FBTweakDictionaryViewController.h -------------------------------------------------------------------------------- /DevelopmentApp/Pods/Headers/Public/Tweaks/_FBTweakTableViewCell.h: -------------------------------------------------------------------------------- 1 | ../../../Tweaks/FBTweak/_FBTweakTableViewCell.h -------------------------------------------------------------------------------- /DevelopmentApp/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Pods/Manifest.lock -------------------------------------------------------------------------------- /DevelopmentApp/Pods/OCMock/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Pods/OCMock/README.md -------------------------------------------------------------------------------- /DevelopmentApp/Pods/OCMock/Source/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Pods/OCMock/Source/License.txt -------------------------------------------------------------------------------- /DevelopmentApp/Pods/OCMock/Source/OCMock/NSInvocation+OCMAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Pods/OCMock/Source/OCMock/NSInvocation+OCMAdditions.h -------------------------------------------------------------------------------- /DevelopmentApp/Pods/OCMock/Source/OCMock/NSInvocation+OCMAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Pods/OCMock/Source/OCMock/NSInvocation+OCMAdditions.m -------------------------------------------------------------------------------- /DevelopmentApp/Pods/OCMock/Source/OCMock/NSMethodSignature+OCMAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Pods/OCMock/Source/OCMock/NSMethodSignature+OCMAdditions.h -------------------------------------------------------------------------------- /DevelopmentApp/Pods/OCMock/Source/OCMock/NSMethodSignature+OCMAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Pods/OCMock/Source/OCMock/NSMethodSignature+OCMAdditions.m -------------------------------------------------------------------------------- /DevelopmentApp/Pods/OCMock/Source/OCMock/NSNotificationCenter+OCMAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Pods/OCMock/Source/OCMock/NSNotificationCenter+OCMAdditions.h -------------------------------------------------------------------------------- /DevelopmentApp/Pods/OCMock/Source/OCMock/NSNotificationCenter+OCMAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Pods/OCMock/Source/OCMock/NSNotificationCenter+OCMAdditions.m -------------------------------------------------------------------------------- /DevelopmentApp/Pods/OCMock/Source/OCMock/NSObject+OCMAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Pods/OCMock/Source/OCMock/NSObject+OCMAdditions.h -------------------------------------------------------------------------------- /DevelopmentApp/Pods/OCMock/Source/OCMock/NSObject+OCMAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Pods/OCMock/Source/OCMock/NSObject+OCMAdditions.m -------------------------------------------------------------------------------- /DevelopmentApp/Pods/OCMock/Source/OCMock/NSValue+OCMAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Pods/OCMock/Source/OCMock/NSValue+OCMAdditions.h -------------------------------------------------------------------------------- /DevelopmentApp/Pods/OCMock/Source/OCMock/NSValue+OCMAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Pods/OCMock/Source/OCMock/NSValue+OCMAdditions.m -------------------------------------------------------------------------------- /DevelopmentApp/Pods/OCMock/Source/OCMock/OCClassMockObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Pods/OCMock/Source/OCMock/OCClassMockObject.h -------------------------------------------------------------------------------- /DevelopmentApp/Pods/OCMock/Source/OCMock/OCClassMockObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Pods/OCMock/Source/OCMock/OCClassMockObject.m -------------------------------------------------------------------------------- /DevelopmentApp/Pods/OCMock/Source/OCMock/OCMArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Pods/OCMock/Source/OCMock/OCMArg.h -------------------------------------------------------------------------------- /DevelopmentApp/Pods/OCMock/Source/OCMock/OCMArg.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Pods/OCMock/Source/OCMock/OCMArg.m -------------------------------------------------------------------------------- /DevelopmentApp/Pods/OCMock/Source/OCMock/OCMBlockCaller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Pods/OCMock/Source/OCMock/OCMBlockCaller.h -------------------------------------------------------------------------------- /DevelopmentApp/Pods/OCMock/Source/OCMock/OCMBlockCaller.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Pods/OCMock/Source/OCMock/OCMBlockCaller.m -------------------------------------------------------------------------------- /DevelopmentApp/Pods/OCMock/Source/OCMock/OCMBoxedReturnValueProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Pods/OCMock/Source/OCMock/OCMBoxedReturnValueProvider.h -------------------------------------------------------------------------------- /DevelopmentApp/Pods/OCMock/Source/OCMock/OCMBoxedReturnValueProvider.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Pods/OCMock/Source/OCMock/OCMBoxedReturnValueProvider.m -------------------------------------------------------------------------------- /DevelopmentApp/Pods/OCMock/Source/OCMock/OCMConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Pods/OCMock/Source/OCMock/OCMConstraint.h -------------------------------------------------------------------------------- /DevelopmentApp/Pods/OCMock/Source/OCMock/OCMConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Pods/OCMock/Source/OCMock/OCMConstraint.m -------------------------------------------------------------------------------- /DevelopmentApp/Pods/OCMock/Source/OCMock/OCMExceptionReturnValueProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Pods/OCMock/Source/OCMock/OCMExceptionReturnValueProvider.h -------------------------------------------------------------------------------- /DevelopmentApp/Pods/OCMock/Source/OCMock/OCMExceptionReturnValueProvider.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Pods/OCMock/Source/OCMock/OCMExceptionReturnValueProvider.m -------------------------------------------------------------------------------- /DevelopmentApp/Pods/OCMock/Source/OCMock/OCMExpectationRecorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Pods/OCMock/Source/OCMock/OCMExpectationRecorder.h -------------------------------------------------------------------------------- /DevelopmentApp/Pods/OCMock/Source/OCMock/OCMExpectationRecorder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Pods/OCMock/Source/OCMock/OCMExpectationRecorder.m -------------------------------------------------------------------------------- /DevelopmentApp/Pods/OCMock/Source/OCMock/OCMFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Pods/OCMock/Source/OCMock/OCMFunctions.h -------------------------------------------------------------------------------- /DevelopmentApp/Pods/OCMock/Source/OCMock/OCMFunctions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Pods/OCMock/Source/OCMock/OCMFunctions.m -------------------------------------------------------------------------------- /DevelopmentApp/Pods/OCMock/Source/OCMock/OCMIndirectReturnValueProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Pods/OCMock/Source/OCMock/OCMIndirectReturnValueProvider.h -------------------------------------------------------------------------------- /DevelopmentApp/Pods/OCMock/Source/OCMock/OCMIndirectReturnValueProvider.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Pods/OCMock/Source/OCMock/OCMIndirectReturnValueProvider.m -------------------------------------------------------------------------------- /DevelopmentApp/Pods/OCMock/Source/OCMock/OCMInvocationExpectation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Pods/OCMock/Source/OCMock/OCMInvocationExpectation.h -------------------------------------------------------------------------------- /DevelopmentApp/Pods/OCMock/Source/OCMock/OCMInvocationExpectation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Pods/OCMock/Source/OCMock/OCMInvocationExpectation.m -------------------------------------------------------------------------------- /DevelopmentApp/Pods/OCMock/Source/OCMock/OCMInvocationMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Pods/OCMock/Source/OCMock/OCMInvocationMatcher.h -------------------------------------------------------------------------------- /DevelopmentApp/Pods/OCMock/Source/OCMock/OCMInvocationMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Pods/OCMock/Source/OCMock/OCMInvocationMatcher.m -------------------------------------------------------------------------------- /DevelopmentApp/Pods/OCMock/Source/OCMock/OCMInvocationStub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Pods/OCMock/Source/OCMock/OCMInvocationStub.h -------------------------------------------------------------------------------- /DevelopmentApp/Pods/OCMock/Source/OCMock/OCMInvocationStub.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Pods/OCMock/Source/OCMock/OCMInvocationStub.m -------------------------------------------------------------------------------- /DevelopmentApp/Pods/OCMock/Source/OCMock/OCMLocation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Pods/OCMock/Source/OCMock/OCMLocation.h -------------------------------------------------------------------------------- /DevelopmentApp/Pods/OCMock/Source/OCMock/OCMLocation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Pods/OCMock/Source/OCMock/OCMLocation.m -------------------------------------------------------------------------------- /DevelopmentApp/Pods/OCMock/Source/OCMock/OCMMacroState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Pods/OCMock/Source/OCMock/OCMMacroState.h -------------------------------------------------------------------------------- /DevelopmentApp/Pods/OCMock/Source/OCMock/OCMMacroState.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Pods/OCMock/Source/OCMock/OCMMacroState.m -------------------------------------------------------------------------------- /DevelopmentApp/Pods/OCMock/Source/OCMock/OCMNotificationPoster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Pods/OCMock/Source/OCMock/OCMNotificationPoster.h -------------------------------------------------------------------------------- /DevelopmentApp/Pods/OCMock/Source/OCMock/OCMNotificationPoster.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Pods/OCMock/Source/OCMock/OCMNotificationPoster.m -------------------------------------------------------------------------------- /DevelopmentApp/Pods/OCMock/Source/OCMock/OCMObserverRecorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Pods/OCMock/Source/OCMock/OCMObserverRecorder.h -------------------------------------------------------------------------------- /DevelopmentApp/Pods/OCMock/Source/OCMock/OCMObserverRecorder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Pods/OCMock/Source/OCMock/OCMObserverRecorder.m -------------------------------------------------------------------------------- /DevelopmentApp/Pods/OCMock/Source/OCMock/OCMPassByRefSetter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Pods/OCMock/Source/OCMock/OCMPassByRefSetter.h -------------------------------------------------------------------------------- /DevelopmentApp/Pods/OCMock/Source/OCMock/OCMPassByRefSetter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Pods/OCMock/Source/OCMock/OCMPassByRefSetter.m -------------------------------------------------------------------------------- /DevelopmentApp/Pods/OCMock/Source/OCMock/OCMRealObjectForwarder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Pods/OCMock/Source/OCMock/OCMRealObjectForwarder.h -------------------------------------------------------------------------------- /DevelopmentApp/Pods/OCMock/Source/OCMock/OCMRealObjectForwarder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Pods/OCMock/Source/OCMock/OCMRealObjectForwarder.m -------------------------------------------------------------------------------- /DevelopmentApp/Pods/OCMock/Source/OCMock/OCMRecorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Pods/OCMock/Source/OCMock/OCMRecorder.h -------------------------------------------------------------------------------- /DevelopmentApp/Pods/OCMock/Source/OCMock/OCMRecorder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Pods/OCMock/Source/OCMock/OCMRecorder.m -------------------------------------------------------------------------------- /DevelopmentApp/Pods/OCMock/Source/OCMock/OCMReturnValueProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Pods/OCMock/Source/OCMock/OCMReturnValueProvider.h -------------------------------------------------------------------------------- /DevelopmentApp/Pods/OCMock/Source/OCMock/OCMReturnValueProvider.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Pods/OCMock/Source/OCMock/OCMReturnValueProvider.m -------------------------------------------------------------------------------- /DevelopmentApp/Pods/OCMock/Source/OCMock/OCMStubRecorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Pods/OCMock/Source/OCMock/OCMStubRecorder.h -------------------------------------------------------------------------------- /DevelopmentApp/Pods/OCMock/Source/OCMock/OCMStubRecorder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Pods/OCMock/Source/OCMock/OCMStubRecorder.m -------------------------------------------------------------------------------- /DevelopmentApp/Pods/OCMock/Source/OCMock/OCMVerifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Pods/OCMock/Source/OCMock/OCMVerifier.h -------------------------------------------------------------------------------- /DevelopmentApp/Pods/OCMock/Source/OCMock/OCMVerifier.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Pods/OCMock/Source/OCMock/OCMVerifier.m -------------------------------------------------------------------------------- /DevelopmentApp/Pods/OCMock/Source/OCMock/OCMock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Pods/OCMock/Source/OCMock/OCMock.h -------------------------------------------------------------------------------- /DevelopmentApp/Pods/OCMock/Source/OCMock/OCMockObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Pods/OCMock/Source/OCMock/OCMockObject.h -------------------------------------------------------------------------------- /DevelopmentApp/Pods/OCMock/Source/OCMock/OCMockObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Pods/OCMock/Source/OCMock/OCMockObject.m -------------------------------------------------------------------------------- /DevelopmentApp/Pods/OCMock/Source/OCMock/OCObserverMockObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Pods/OCMock/Source/OCMock/OCObserverMockObject.h -------------------------------------------------------------------------------- /DevelopmentApp/Pods/OCMock/Source/OCMock/OCObserverMockObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Pods/OCMock/Source/OCMock/OCObserverMockObject.m -------------------------------------------------------------------------------- /DevelopmentApp/Pods/OCMock/Source/OCMock/OCPartialMockObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Pods/OCMock/Source/OCMock/OCPartialMockObject.h -------------------------------------------------------------------------------- /DevelopmentApp/Pods/OCMock/Source/OCMock/OCPartialMockObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Pods/OCMock/Source/OCMock/OCPartialMockObject.m -------------------------------------------------------------------------------- /DevelopmentApp/Pods/OCMock/Source/OCMock/OCProtocolMockObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Pods/OCMock/Source/OCMock/OCProtocolMockObject.h -------------------------------------------------------------------------------- /DevelopmentApp/Pods/OCMock/Source/OCMock/OCProtocolMockObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Pods/OCMock/Source/OCMock/OCProtocolMockObject.m -------------------------------------------------------------------------------- /DevelopmentApp/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /DevelopmentApp/Pods/Target Support Files/OCMock/OCMock-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Pods/Target Support Files/OCMock/OCMock-dummy.m -------------------------------------------------------------------------------- /DevelopmentApp/Pods/Target Support Files/OCMock/OCMock-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Pods/Target Support Files/OCMock/OCMock-prefix.pch -------------------------------------------------------------------------------- /DevelopmentApp/Pods/Target Support Files/OCMock/OCMock.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Pods/Target Support Files/OCMock/OCMock.xcconfig -------------------------------------------------------------------------------- /DevelopmentApp/Pods/Target Support Files/Pods-Barricade-BarricadeTests/Pods-Barricade-BarricadeTests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Pods/Target Support Files/Pods-Barricade-BarricadeTests/Pods-Barricade-BarricadeTests-acknowledgements.markdown -------------------------------------------------------------------------------- /DevelopmentApp/Pods/Target Support Files/Pods-Barricade-BarricadeTests/Pods-Barricade-BarricadeTests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Pods/Target Support Files/Pods-Barricade-BarricadeTests/Pods-Barricade-BarricadeTests-acknowledgements.plist -------------------------------------------------------------------------------- /DevelopmentApp/Pods/Target Support Files/Pods-Barricade-BarricadeTests/Pods-Barricade-BarricadeTests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Pods/Target Support Files/Pods-Barricade-BarricadeTests/Pods-Barricade-BarricadeTests-dummy.m -------------------------------------------------------------------------------- /DevelopmentApp/Pods/Target Support Files/Pods-Barricade-BarricadeTests/Pods-Barricade-BarricadeTests-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Pods/Target Support Files/Pods-Barricade-BarricadeTests/Pods-Barricade-BarricadeTests-frameworks.sh -------------------------------------------------------------------------------- /DevelopmentApp/Pods/Target Support Files/Pods-Barricade-BarricadeTests/Pods-Barricade-BarricadeTests-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Pods/Target Support Files/Pods-Barricade-BarricadeTests/Pods-Barricade-BarricadeTests-resources.sh -------------------------------------------------------------------------------- /DevelopmentApp/Pods/Target Support Files/Pods-Barricade-BarricadeTests/Pods-Barricade-BarricadeTests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Pods/Target Support Files/Pods-Barricade-BarricadeTests/Pods-Barricade-BarricadeTests.debug.xcconfig -------------------------------------------------------------------------------- /DevelopmentApp/Pods/Target Support Files/Pods-Barricade-BarricadeTests/Pods-Barricade-BarricadeTests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Pods/Target Support Files/Pods-Barricade-BarricadeTests/Pods-Barricade-BarricadeTests.release.xcconfig -------------------------------------------------------------------------------- /DevelopmentApp/Pods/Target Support Files/Pods-Barricade/Pods-Barricade-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Pods/Target Support Files/Pods-Barricade/Pods-Barricade-acknowledgements.markdown -------------------------------------------------------------------------------- /DevelopmentApp/Pods/Target Support Files/Pods-Barricade/Pods-Barricade-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Pods/Target Support Files/Pods-Barricade/Pods-Barricade-acknowledgements.plist -------------------------------------------------------------------------------- /DevelopmentApp/Pods/Target Support Files/Pods-Barricade/Pods-Barricade-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Pods/Target Support Files/Pods-Barricade/Pods-Barricade-dummy.m -------------------------------------------------------------------------------- /DevelopmentApp/Pods/Target Support Files/Pods-Barricade/Pods-Barricade-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Pods/Target Support Files/Pods-Barricade/Pods-Barricade-frameworks.sh -------------------------------------------------------------------------------- /DevelopmentApp/Pods/Target Support Files/Pods-Barricade/Pods-Barricade-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Pods/Target Support Files/Pods-Barricade/Pods-Barricade-resources.sh -------------------------------------------------------------------------------- /DevelopmentApp/Pods/Target Support Files/Pods-Barricade/Pods-Barricade.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Pods/Target Support Files/Pods-Barricade/Pods-Barricade.debug.xcconfig -------------------------------------------------------------------------------- /DevelopmentApp/Pods/Target Support Files/Pods-Barricade/Pods-Barricade.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Pods/Target Support Files/Pods-Barricade/Pods-Barricade.release.xcconfig -------------------------------------------------------------------------------- /DevelopmentApp/Pods/Target Support Files/Tweaks/Tweaks-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Pods/Target Support Files/Tweaks/Tweaks-dummy.m -------------------------------------------------------------------------------- /DevelopmentApp/Pods/Target Support Files/Tweaks/Tweaks-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Pods/Target Support Files/Tweaks/Tweaks-prefix.pch -------------------------------------------------------------------------------- /DevelopmentApp/Pods/Target Support Files/Tweaks/Tweaks.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Pods/Target Support Files/Tweaks/Tweaks.xcconfig -------------------------------------------------------------------------------- /DevelopmentApp/Pods/Tweaks/FBTweak/FBTweak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Pods/Tweaks/FBTweak/FBTweak.h -------------------------------------------------------------------------------- /DevelopmentApp/Pods/Tweaks/FBTweak/FBTweak.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Pods/Tweaks/FBTweak/FBTweak.m -------------------------------------------------------------------------------- /DevelopmentApp/Pods/Tweaks/FBTweak/FBTweakCategory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Pods/Tweaks/FBTweak/FBTweakCategory.h -------------------------------------------------------------------------------- /DevelopmentApp/Pods/Tweaks/FBTweak/FBTweakCategory.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Pods/Tweaks/FBTweak/FBTweakCategory.m -------------------------------------------------------------------------------- /DevelopmentApp/Pods/Tweaks/FBTweak/FBTweakCollection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Pods/Tweaks/FBTweak/FBTweakCollection.h -------------------------------------------------------------------------------- /DevelopmentApp/Pods/Tweaks/FBTweak/FBTweakCollection.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Pods/Tweaks/FBTweak/FBTweakCollection.m -------------------------------------------------------------------------------- /DevelopmentApp/Pods/Tweaks/FBTweak/FBTweakEnabled.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Pods/Tweaks/FBTweak/FBTweakEnabled.h -------------------------------------------------------------------------------- /DevelopmentApp/Pods/Tweaks/FBTweak/FBTweakInline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Pods/Tweaks/FBTweak/FBTweakInline.h -------------------------------------------------------------------------------- /DevelopmentApp/Pods/Tweaks/FBTweak/FBTweakInline.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Pods/Tweaks/FBTweak/FBTweakInline.m -------------------------------------------------------------------------------- /DevelopmentApp/Pods/Tweaks/FBTweak/FBTweakInlineInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Pods/Tweaks/FBTweak/FBTweakInlineInternal.h -------------------------------------------------------------------------------- /DevelopmentApp/Pods/Tweaks/FBTweak/FBTweakShakeWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Pods/Tweaks/FBTweak/FBTweakShakeWindow.h -------------------------------------------------------------------------------- /DevelopmentApp/Pods/Tweaks/FBTweak/FBTweakShakeWindow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Pods/Tweaks/FBTweak/FBTweakShakeWindow.m -------------------------------------------------------------------------------- /DevelopmentApp/Pods/Tweaks/FBTweak/FBTweakStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Pods/Tweaks/FBTweak/FBTweakStore.h -------------------------------------------------------------------------------- /DevelopmentApp/Pods/Tweaks/FBTweak/FBTweakStore.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Pods/Tweaks/FBTweak/FBTweakStore.m -------------------------------------------------------------------------------- /DevelopmentApp/Pods/Tweaks/FBTweak/FBTweakViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Pods/Tweaks/FBTweak/FBTweakViewController.h -------------------------------------------------------------------------------- /DevelopmentApp/Pods/Tweaks/FBTweak/FBTweakViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Pods/Tweaks/FBTweak/FBTweakViewController.m -------------------------------------------------------------------------------- /DevelopmentApp/Pods/Tweaks/FBTweak/_FBTweakArrayViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Pods/Tweaks/FBTweak/_FBTweakArrayViewController.h -------------------------------------------------------------------------------- /DevelopmentApp/Pods/Tweaks/FBTweak/_FBTweakArrayViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Pods/Tweaks/FBTweak/_FBTweakArrayViewController.m -------------------------------------------------------------------------------- /DevelopmentApp/Pods/Tweaks/FBTweak/_FBTweakBindObserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Pods/Tweaks/FBTweak/_FBTweakBindObserver.h -------------------------------------------------------------------------------- /DevelopmentApp/Pods/Tweaks/FBTweak/_FBTweakBindObserver.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Pods/Tweaks/FBTweak/_FBTweakBindObserver.m -------------------------------------------------------------------------------- /DevelopmentApp/Pods/Tweaks/FBTweak/_FBTweakCategoryViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Pods/Tweaks/FBTweak/_FBTweakCategoryViewController.h -------------------------------------------------------------------------------- /DevelopmentApp/Pods/Tweaks/FBTweak/_FBTweakCategoryViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Pods/Tweaks/FBTweak/_FBTweakCategoryViewController.m -------------------------------------------------------------------------------- /DevelopmentApp/Pods/Tweaks/FBTweak/_FBTweakCollectionViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Pods/Tweaks/FBTweak/_FBTweakCollectionViewController.h -------------------------------------------------------------------------------- /DevelopmentApp/Pods/Tweaks/FBTweak/_FBTweakCollectionViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Pods/Tweaks/FBTweak/_FBTweakCollectionViewController.m -------------------------------------------------------------------------------- /DevelopmentApp/Pods/Tweaks/FBTweak/_FBTweakDictionaryViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Pods/Tweaks/FBTweak/_FBTweakDictionaryViewController.h -------------------------------------------------------------------------------- /DevelopmentApp/Pods/Tweaks/FBTweak/_FBTweakDictionaryViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Pods/Tweaks/FBTweak/_FBTweakDictionaryViewController.m -------------------------------------------------------------------------------- /DevelopmentApp/Pods/Tweaks/FBTweak/_FBTweakTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Pods/Tweaks/FBTweak/_FBTweakTableViewCell.h -------------------------------------------------------------------------------- /DevelopmentApp/Pods/Tweaks/FBTweak/_FBTweakTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Pods/Tweaks/FBTweak/_FBTweakTableViewCell.m -------------------------------------------------------------------------------- /DevelopmentApp/Pods/Tweaks/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Pods/Tweaks/LICENSE -------------------------------------------------------------------------------- /DevelopmentApp/Pods/Tweaks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/DevelopmentApp/Pods/Tweaks/README.md -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeExample/BarricadeExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Examples/ObjC/BarricadeExample/BarricadeExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeExample/BarricadeExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Examples/ObjC/BarricadeExample/BarricadeExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeExample/BarricadeExample.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Examples/ObjC/BarricadeExample/BarricadeExample.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeExample/BarricadeExample/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Examples/ObjC/BarricadeExample/BarricadeExample/AppDelegate.h -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeExample/BarricadeExample/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Examples/ObjC/BarricadeExample/BarricadeExample/AppDelegate.m -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeExample/BarricadeExample/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Examples/ObjC/BarricadeExample/BarricadeExample/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeExample/BarricadeExample/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Examples/ObjC/BarricadeExample/BarricadeExample/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeExample/BarricadeExample/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Examples/ObjC/BarricadeExample/BarricadeExample/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeExample/BarricadeExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Examples/ObjC/BarricadeExample/BarricadeExample/Info.plist -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeExample/BarricadeExample/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Examples/ObjC/BarricadeExample/BarricadeExample/ViewController.h -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeExample/BarricadeExample/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Examples/ObjC/BarricadeExample/BarricadeExample/ViewController.m -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeExample/BarricadeExample/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Examples/ObjC/BarricadeExample/BarricadeExample/main.m -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeExample/BarricadeExampleTests/BarricadeExampleTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Examples/ObjC/BarricadeExample/BarricadeExampleTests/BarricadeExampleTests.m -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeExample/BarricadeExampleTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Examples/ObjC/BarricadeExample/BarricadeExampleTests/Info.plist -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeExample/Cocoapods.podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Examples/ObjC/BarricadeExample/Cocoapods.podfile -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeExample/LocalServerFiles/search.empty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Examples/ObjC/BarricadeExample/LocalServerFiles/search.empty.json -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeExample/LocalServerFiles/search.ratelimited.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Examples/ObjC/BarricadeExample/LocalServerFiles/search.ratelimited.json -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeExample/LocalServerFiles/search.success.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Examples/ObjC/BarricadeExample/LocalServerFiles/search.success.json -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeExample/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Examples/ObjC/BarricadeExample/Podfile.lock -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeExample/Pods/Headers/Private/MMBarricade/MMBarricade.h: -------------------------------------------------------------------------------- 1 | ../../../../../../../Barricade/Core/MMBarricade.h -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeExample/Pods/Headers/Private/MMBarricade/MMBarricadeAbstractResponseStore.h: -------------------------------------------------------------------------------- 1 | ../../../../../../../Barricade/Core/ResponseStore/MMBarricadeAbstractResponseStore.h -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeExample/Pods/Headers/Private/MMBarricade/MMBarricadeDispatch.h: -------------------------------------------------------------------------------- 1 | ../../../../../../../Barricade/Core/MMBarricadeDispatch.h -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeExample/Pods/Headers/Private/MMBarricade/MMBarricadeErrors.h: -------------------------------------------------------------------------------- 1 | ../../../../../../../Barricade/Core/MMBarricadeErrors.h -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeExample/Pods/Headers/Private/MMBarricade/MMBarricadeInMemoryResponseStore.h: -------------------------------------------------------------------------------- 1 | ../../../../../../../Barricade/Core/ResponseStore/MMBarricadeInMemoryResponseStore.h -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeExample/Pods/Headers/Private/MMBarricade/MMBarricadePathUtility.h: -------------------------------------------------------------------------------- 1 | ../../../../../../../Barricade/Core/Response/MMBarricadePathUtility.h -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeExample/Pods/Headers/Private/MMBarricade/MMBarricadeResponse+Convenience.h: -------------------------------------------------------------------------------- 1 | ../../../../../../../Barricade/Core/Response/MMBarricadeResponse+Convenience.h -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeExample/Pods/Headers/Private/MMBarricade/MMBarricadeResponse.h: -------------------------------------------------------------------------------- 1 | ../../../../../../../Barricade/Core/Response/MMBarricadeResponse.h -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeExample/Pods/Headers/Private/MMBarricade/MMBarricadeResponseSelectionViewController.h: -------------------------------------------------------------------------------- 1 | ../../../../../../../Barricade/Core/UI/MMBarricadeResponseSelectionViewController.h -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeExample/Pods/Headers/Private/MMBarricade/MMBarricadeResponseSet+Convenience.h: -------------------------------------------------------------------------------- 1 | ../../../../../../../Barricade/Core/ResponseSet/MMBarricadeResponseSet+Convenience.h -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeExample/Pods/Headers/Private/MMBarricade/MMBarricadeResponseSet.h: -------------------------------------------------------------------------------- 1 | ../../../../../../../Barricade/Core/ResponseSet/MMBarricadeResponseSet.h -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeExample/Pods/Headers/Private/MMBarricade/MMBarricadeResponseSetViewController.h: -------------------------------------------------------------------------------- 1 | ../../../../../../../Barricade/Core/UI/MMBarricadeResponseSetViewController.h -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeExample/Pods/Headers/Private/MMBarricade/MMBarricadeResponseStore.h: -------------------------------------------------------------------------------- 1 | ../../../../../../../Barricade/Core/ResponseStore/MMBarricadeResponseStore.h -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeExample/Pods/Headers/Private/MMBarricade/MMBarricadeShakeWindow.h: -------------------------------------------------------------------------------- 1 | ../../../../../../../Barricade/Core/UI/MMBarricadeShakeWindow.h -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeExample/Pods/Headers/Private/MMBarricade/MMBarricadeViewController.h: -------------------------------------------------------------------------------- 1 | ../../../../../../../Barricade/Core/UI/MMBarricadeViewController.h -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeExample/Pods/Headers/Public/MMBarricade/MMBarricade.h: -------------------------------------------------------------------------------- 1 | ../../../../../../../Barricade/Core/MMBarricade.h -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeExample/Pods/Headers/Public/MMBarricade/MMBarricadeAbstractResponseStore.h: -------------------------------------------------------------------------------- 1 | ../../../../../../../Barricade/Core/ResponseStore/MMBarricadeAbstractResponseStore.h -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeExample/Pods/Headers/Public/MMBarricade/MMBarricadeDispatch.h: -------------------------------------------------------------------------------- 1 | ../../../../../../../Barricade/Core/MMBarricadeDispatch.h -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeExample/Pods/Headers/Public/MMBarricade/MMBarricadeErrors.h: -------------------------------------------------------------------------------- 1 | ../../../../../../../Barricade/Core/MMBarricadeErrors.h -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeExample/Pods/Headers/Public/MMBarricade/MMBarricadeInMemoryResponseStore.h: -------------------------------------------------------------------------------- 1 | ../../../../../../../Barricade/Core/ResponseStore/MMBarricadeInMemoryResponseStore.h -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeExample/Pods/Headers/Public/MMBarricade/MMBarricadePathUtility.h: -------------------------------------------------------------------------------- 1 | ../../../../../../../Barricade/Core/Response/MMBarricadePathUtility.h -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeExample/Pods/Headers/Public/MMBarricade/MMBarricadeResponse+Convenience.h: -------------------------------------------------------------------------------- 1 | ../../../../../../../Barricade/Core/Response/MMBarricadeResponse+Convenience.h -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeExample/Pods/Headers/Public/MMBarricade/MMBarricadeResponse.h: -------------------------------------------------------------------------------- 1 | ../../../../../../../Barricade/Core/Response/MMBarricadeResponse.h -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeExample/Pods/Headers/Public/MMBarricade/MMBarricadeResponseSelectionViewController.h: -------------------------------------------------------------------------------- 1 | ../../../../../../../Barricade/Core/UI/MMBarricadeResponseSelectionViewController.h -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeExample/Pods/Headers/Public/MMBarricade/MMBarricadeResponseSet+Convenience.h: -------------------------------------------------------------------------------- 1 | ../../../../../../../Barricade/Core/ResponseSet/MMBarricadeResponseSet+Convenience.h -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeExample/Pods/Headers/Public/MMBarricade/MMBarricadeResponseSet.h: -------------------------------------------------------------------------------- 1 | ../../../../../../../Barricade/Core/ResponseSet/MMBarricadeResponseSet.h -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeExample/Pods/Headers/Public/MMBarricade/MMBarricadeResponseSetViewController.h: -------------------------------------------------------------------------------- 1 | ../../../../../../../Barricade/Core/UI/MMBarricadeResponseSetViewController.h -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeExample/Pods/Headers/Public/MMBarricade/MMBarricadeResponseStore.h: -------------------------------------------------------------------------------- 1 | ../../../../../../../Barricade/Core/ResponseStore/MMBarricadeResponseStore.h -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeExample/Pods/Headers/Public/MMBarricade/MMBarricadeShakeWindow.h: -------------------------------------------------------------------------------- 1 | ../../../../../../../Barricade/Core/UI/MMBarricadeShakeWindow.h -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeExample/Pods/Headers/Public/MMBarricade/MMBarricadeViewController.h: -------------------------------------------------------------------------------- 1 | ../../../../../../../Barricade/Core/UI/MMBarricadeViewController.h -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeExample/Pods/Local Podspecs/MMBarricade.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Examples/ObjC/BarricadeExample/Pods/Local Podspecs/MMBarricade.podspec.json -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeExample/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Examples/ObjC/BarricadeExample/Pods/Manifest.lock -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeExample/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Examples/ObjC/BarricadeExample/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeExample/Pods/Target Support Files/Pods-MMBarricade/Pods-MMBarricade-Private.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Examples/ObjC/BarricadeExample/Pods/Target Support Files/Pods-MMBarricade/Pods-MMBarricade-Private.xcconfig -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeExample/Pods/Target Support Files/Pods-MMBarricade/Pods-MMBarricade-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Examples/ObjC/BarricadeExample/Pods/Target Support Files/Pods-MMBarricade/Pods-MMBarricade-dummy.m -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeExample/Pods/Target Support Files/Pods-MMBarricade/Pods-MMBarricade-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Examples/ObjC/BarricadeExample/Pods/Target Support Files/Pods-MMBarricade/Pods-MMBarricade-prefix.pch -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeExample/Pods/Target Support Files/Pods-MMBarricade/Pods-MMBarricade.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Examples/ObjC/BarricadeExample/Pods/Target Support Files/Pods-MMBarricade/Pods-MMBarricade.xcconfig -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeExample/Pods/Target Support Files/Pods/Pods-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Examples/ObjC/BarricadeExample/Pods/Target Support Files/Pods/Pods-acknowledgements.markdown -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeExample/Pods/Target Support Files/Pods/Pods-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Examples/ObjC/BarricadeExample/Pods/Target Support Files/Pods/Pods-acknowledgements.plist -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeExample/Pods/Target Support Files/Pods/Pods-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Examples/ObjC/BarricadeExample/Pods/Target Support Files/Pods/Pods-dummy.m -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeExample/Pods/Target Support Files/Pods/Pods-environment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Examples/ObjC/BarricadeExample/Pods/Target Support Files/Pods/Pods-environment.h -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeExample/Pods/Target Support Files/Pods/Pods-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Examples/ObjC/BarricadeExample/Pods/Target Support Files/Pods/Pods-resources.sh -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeExample/Pods/Target Support Files/Pods/Pods.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Examples/ObjC/BarricadeExample/Pods/Target Support Files/Pods/Pods.debug.xcconfig -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeExample/Pods/Target Support Files/Pods/Pods.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Examples/ObjC/BarricadeExample/Pods/Target Support Files/Pods/Pods.release.xcconfig -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeTweaksExample/BarricadeTweaksExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Examples/ObjC/BarricadeTweaksExample/BarricadeTweaksExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeTweaksExample/BarricadeTweaksExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Examples/ObjC/BarricadeTweaksExample/BarricadeTweaksExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeTweaksExample/BarricadeTweaksExample.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Examples/ObjC/BarricadeTweaksExample/BarricadeTweaksExample.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeTweaksExample/BarricadeTweaksExample/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Examples/ObjC/BarricadeTweaksExample/BarricadeTweaksExample/AppDelegate.h -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeTweaksExample/BarricadeTweaksExample/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Examples/ObjC/BarricadeTweaksExample/BarricadeTweaksExample/AppDelegate.m -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeTweaksExample/BarricadeTweaksExample/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Examples/ObjC/BarricadeTweaksExample/BarricadeTweaksExample/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeTweaksExample/BarricadeTweaksExample/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Examples/ObjC/BarricadeTweaksExample/BarricadeTweaksExample/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeTweaksExample/BarricadeTweaksExample/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Examples/ObjC/BarricadeTweaksExample/BarricadeTweaksExample/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeTweaksExample/BarricadeTweaksExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Examples/ObjC/BarricadeTweaksExample/BarricadeTweaksExample/Info.plist -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeTweaksExample/BarricadeTweaksExample/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Examples/ObjC/BarricadeTweaksExample/BarricadeTweaksExample/ViewController.h -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeTweaksExample/BarricadeTweaksExample/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Examples/ObjC/BarricadeTweaksExample/BarricadeTweaksExample/ViewController.m -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeTweaksExample/BarricadeTweaksExample/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Examples/ObjC/BarricadeTweaksExample/BarricadeTweaksExample/main.m -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeTweaksExample/BarricadeTweaksExampleTests/BarricadeTweaksExampleTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Examples/ObjC/BarricadeTweaksExample/BarricadeTweaksExampleTests/BarricadeTweaksExampleTests.m -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeTweaksExample/BarricadeTweaksExampleTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Examples/ObjC/BarricadeTweaksExample/BarricadeTweaksExampleTests/Info.plist -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeTweaksExample/CocoaPods.podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Examples/ObjC/BarricadeTweaksExample/CocoaPods.podfile -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeTweaksExample/LocalServerFiles/search.empty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Examples/ObjC/BarricadeTweaksExample/LocalServerFiles/search.empty.json -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeTweaksExample/LocalServerFiles/search.ratelimited.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Examples/ObjC/BarricadeTweaksExample/LocalServerFiles/search.ratelimited.json -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeTweaksExample/LocalServerFiles/search.success.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Examples/ObjC/BarricadeTweaksExample/LocalServerFiles/search.success.json -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeTweaksExample/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Examples/ObjC/BarricadeTweaksExample/Podfile.lock -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeTweaksExample/Pods/Headers/Private/MMBarricade/MMBarricade+Tweaks.h: -------------------------------------------------------------------------------- 1 | ../../../../../../../Barricade/Tweaks/MMBarricade+Tweaks.h -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeTweaksExample/Pods/Headers/Private/MMBarricade/MMBarricade.h: -------------------------------------------------------------------------------- 1 | ../../../../../../../Barricade/Core/MMBarricade.h -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeTweaksExample/Pods/Headers/Private/MMBarricade/MMBarricadeAbstractResponseStore.h: -------------------------------------------------------------------------------- 1 | ../../../../../../../Barricade/Core/ResponseStore/MMBarricadeAbstractResponseStore.h -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeTweaksExample/Pods/Headers/Private/MMBarricade/MMBarricadeDispatch.h: -------------------------------------------------------------------------------- 1 | ../../../../../../../Barricade/Core/MMBarricadeDispatch.h -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeTweaksExample/Pods/Headers/Private/MMBarricade/MMBarricadeErrors.h: -------------------------------------------------------------------------------- 1 | ../../../../../../../Barricade/Core/MMBarricadeErrors.h -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeTweaksExample/Pods/Headers/Private/MMBarricade/MMBarricadeInMemoryResponseStore.h: -------------------------------------------------------------------------------- 1 | ../../../../../../../Barricade/Core/ResponseStore/MMBarricadeInMemoryResponseStore.h -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeTweaksExample/Pods/Headers/Private/MMBarricade/MMBarricadePathUtility.h: -------------------------------------------------------------------------------- 1 | ../../../../../../../Barricade/Core/Response/MMBarricadePathUtility.h -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeTweaksExample/Pods/Headers/Private/MMBarricade/MMBarricadeResponse+Convenience.h: -------------------------------------------------------------------------------- 1 | ../../../../../../../Barricade/Core/Response/MMBarricadeResponse+Convenience.h -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeTweaksExample/Pods/Headers/Private/MMBarricade/MMBarricadeResponse.h: -------------------------------------------------------------------------------- 1 | ../../../../../../../Barricade/Core/Response/MMBarricadeResponse.h -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeTweaksExample/Pods/Headers/Private/MMBarricade/MMBarricadeResponseSelectionViewController.h: -------------------------------------------------------------------------------- 1 | ../../../../../../../Barricade/Core/UI/MMBarricadeResponseSelectionViewController.h -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeTweaksExample/Pods/Headers/Private/MMBarricade/MMBarricadeResponseSet+Convenience.h: -------------------------------------------------------------------------------- 1 | ../../../../../../../Barricade/Core/ResponseSet/MMBarricadeResponseSet+Convenience.h -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeTweaksExample/Pods/Headers/Private/MMBarricade/MMBarricadeResponseSet.h: -------------------------------------------------------------------------------- 1 | ../../../../../../../Barricade/Core/ResponseSet/MMBarricadeResponseSet.h -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeTweaksExample/Pods/Headers/Private/MMBarricade/MMBarricadeResponseSetViewController.h: -------------------------------------------------------------------------------- 1 | ../../../../../../../Barricade/Core/UI/MMBarricadeResponseSetViewController.h -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeTweaksExample/Pods/Headers/Private/MMBarricade/MMBarricadeResponseStore.h: -------------------------------------------------------------------------------- 1 | ../../../../../../../Barricade/Core/ResponseStore/MMBarricadeResponseStore.h -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeTweaksExample/Pods/Headers/Private/MMBarricade/MMBarricadeShakeWindow.h: -------------------------------------------------------------------------------- 1 | ../../../../../../../Barricade/Core/UI/MMBarricadeShakeWindow.h -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeTweaksExample/Pods/Headers/Private/MMBarricade/MMBarricadeTweaksResponseStore.h: -------------------------------------------------------------------------------- 1 | ../../../../../../../Barricade/Tweaks/MMBarricadeTweaksResponseStore.h -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeTweaksExample/Pods/Headers/Private/MMBarricade/MMBarricadeViewController.h: -------------------------------------------------------------------------------- 1 | ../../../../../../../Barricade/Core/UI/MMBarricadeViewController.h -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeTweaksExample/Pods/Headers/Private/Tweaks/FBTweak.h: -------------------------------------------------------------------------------- 1 | ../../../Tweaks/FBTweak/FBTweak.h -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeTweaksExample/Pods/Headers/Private/Tweaks/FBTweakCategory.h: -------------------------------------------------------------------------------- 1 | ../../../Tweaks/FBTweak/FBTweakCategory.h -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeTweaksExample/Pods/Headers/Private/Tweaks/FBTweakCollection.h: -------------------------------------------------------------------------------- 1 | ../../../Tweaks/FBTweak/FBTweakCollection.h -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeTweaksExample/Pods/Headers/Private/Tweaks/FBTweakEnabled.h: -------------------------------------------------------------------------------- 1 | ../../../Tweaks/FBTweak/FBTweakEnabled.h -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeTweaksExample/Pods/Headers/Private/Tweaks/FBTweakInline.h: -------------------------------------------------------------------------------- 1 | ../../../Tweaks/FBTweak/FBTweakInline.h -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeTweaksExample/Pods/Headers/Private/Tweaks/FBTweakInlineInternal.h: -------------------------------------------------------------------------------- 1 | ../../../Tweaks/FBTweak/FBTweakInlineInternal.h -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeTweaksExample/Pods/Headers/Private/Tweaks/FBTweakShakeWindow.h: -------------------------------------------------------------------------------- 1 | ../../../Tweaks/FBTweak/FBTweakShakeWindow.h -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeTweaksExample/Pods/Headers/Private/Tweaks/FBTweakStore.h: -------------------------------------------------------------------------------- 1 | ../../../Tweaks/FBTweak/FBTweakStore.h -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeTweaksExample/Pods/Headers/Private/Tweaks/FBTweakViewController.h: -------------------------------------------------------------------------------- 1 | ../../../Tweaks/FBTweak/FBTweakViewController.h -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeTweaksExample/Pods/Headers/Private/Tweaks/_FBTweakArrayViewController.h: -------------------------------------------------------------------------------- 1 | ../../../Tweaks/FBTweak/_FBTweakArrayViewController.h -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeTweaksExample/Pods/Headers/Private/Tweaks/_FBTweakBindObserver.h: -------------------------------------------------------------------------------- 1 | ../../../Tweaks/FBTweak/_FBTweakBindObserver.h -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeTweaksExample/Pods/Headers/Private/Tweaks/_FBTweakCategoryViewController.h: -------------------------------------------------------------------------------- 1 | ../../../Tweaks/FBTweak/_FBTweakCategoryViewController.h -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeTweaksExample/Pods/Headers/Private/Tweaks/_FBTweakCollectionViewController.h: -------------------------------------------------------------------------------- 1 | ../../../Tweaks/FBTweak/_FBTweakCollectionViewController.h -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeTweaksExample/Pods/Headers/Private/Tweaks/_FBTweakDictionaryViewController.h: -------------------------------------------------------------------------------- 1 | ../../../Tweaks/FBTweak/_FBTweakDictionaryViewController.h -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeTweaksExample/Pods/Headers/Private/Tweaks/_FBTweakTableViewCell.h: -------------------------------------------------------------------------------- 1 | ../../../Tweaks/FBTweak/_FBTweakTableViewCell.h -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeTweaksExample/Pods/Headers/Public/MMBarricade/MMBarricade+Tweaks.h: -------------------------------------------------------------------------------- 1 | ../../../../../../../Barricade/Tweaks/MMBarricade+Tweaks.h -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeTweaksExample/Pods/Headers/Public/MMBarricade/MMBarricade.h: -------------------------------------------------------------------------------- 1 | ../../../../../../../Barricade/Core/MMBarricade.h -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeTweaksExample/Pods/Headers/Public/MMBarricade/MMBarricadeAbstractResponseStore.h: -------------------------------------------------------------------------------- 1 | ../../../../../../../Barricade/Core/ResponseStore/MMBarricadeAbstractResponseStore.h -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeTweaksExample/Pods/Headers/Public/MMBarricade/MMBarricadeDispatch.h: -------------------------------------------------------------------------------- 1 | ../../../../../../../Barricade/Core/MMBarricadeDispatch.h -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeTweaksExample/Pods/Headers/Public/MMBarricade/MMBarricadeErrors.h: -------------------------------------------------------------------------------- 1 | ../../../../../../../Barricade/Core/MMBarricadeErrors.h -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeTweaksExample/Pods/Headers/Public/MMBarricade/MMBarricadeInMemoryResponseStore.h: -------------------------------------------------------------------------------- 1 | ../../../../../../../Barricade/Core/ResponseStore/MMBarricadeInMemoryResponseStore.h -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeTweaksExample/Pods/Headers/Public/MMBarricade/MMBarricadePathUtility.h: -------------------------------------------------------------------------------- 1 | ../../../../../../../Barricade/Core/Response/MMBarricadePathUtility.h -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeTweaksExample/Pods/Headers/Public/MMBarricade/MMBarricadeResponse+Convenience.h: -------------------------------------------------------------------------------- 1 | ../../../../../../../Barricade/Core/Response/MMBarricadeResponse+Convenience.h -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeTweaksExample/Pods/Headers/Public/MMBarricade/MMBarricadeResponse.h: -------------------------------------------------------------------------------- 1 | ../../../../../../../Barricade/Core/Response/MMBarricadeResponse.h -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeTweaksExample/Pods/Headers/Public/MMBarricade/MMBarricadeResponseSelectionViewController.h: -------------------------------------------------------------------------------- 1 | ../../../../../../../Barricade/Core/UI/MMBarricadeResponseSelectionViewController.h -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeTweaksExample/Pods/Headers/Public/MMBarricade/MMBarricadeResponseSet+Convenience.h: -------------------------------------------------------------------------------- 1 | ../../../../../../../Barricade/Core/ResponseSet/MMBarricadeResponseSet+Convenience.h -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeTweaksExample/Pods/Headers/Public/MMBarricade/MMBarricadeResponseSet.h: -------------------------------------------------------------------------------- 1 | ../../../../../../../Barricade/Core/ResponseSet/MMBarricadeResponseSet.h -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeTweaksExample/Pods/Headers/Public/MMBarricade/MMBarricadeResponseSetViewController.h: -------------------------------------------------------------------------------- 1 | ../../../../../../../Barricade/Core/UI/MMBarricadeResponseSetViewController.h -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeTweaksExample/Pods/Headers/Public/MMBarricade/MMBarricadeResponseStore.h: -------------------------------------------------------------------------------- 1 | ../../../../../../../Barricade/Core/ResponseStore/MMBarricadeResponseStore.h -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeTweaksExample/Pods/Headers/Public/MMBarricade/MMBarricadeShakeWindow.h: -------------------------------------------------------------------------------- 1 | ../../../../../../../Barricade/Core/UI/MMBarricadeShakeWindow.h -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeTweaksExample/Pods/Headers/Public/MMBarricade/MMBarricadeTweaksResponseStore.h: -------------------------------------------------------------------------------- 1 | ../../../../../../../Barricade/Tweaks/MMBarricadeTweaksResponseStore.h -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeTweaksExample/Pods/Headers/Public/MMBarricade/MMBarricadeViewController.h: -------------------------------------------------------------------------------- 1 | ../../../../../../../Barricade/Core/UI/MMBarricadeViewController.h -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeTweaksExample/Pods/Headers/Public/Tweaks/FBTweak.h: -------------------------------------------------------------------------------- 1 | ../../../Tweaks/FBTweak/FBTweak.h -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeTweaksExample/Pods/Headers/Public/Tweaks/FBTweakCategory.h: -------------------------------------------------------------------------------- 1 | ../../../Tweaks/FBTweak/FBTweakCategory.h -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeTweaksExample/Pods/Headers/Public/Tweaks/FBTweakCollection.h: -------------------------------------------------------------------------------- 1 | ../../../Tweaks/FBTweak/FBTweakCollection.h -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeTweaksExample/Pods/Headers/Public/Tweaks/FBTweakEnabled.h: -------------------------------------------------------------------------------- 1 | ../../../Tweaks/FBTweak/FBTweakEnabled.h -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeTweaksExample/Pods/Headers/Public/Tweaks/FBTweakInline.h: -------------------------------------------------------------------------------- 1 | ../../../Tweaks/FBTweak/FBTweakInline.h -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeTweaksExample/Pods/Headers/Public/Tweaks/FBTweakInlineInternal.h: -------------------------------------------------------------------------------- 1 | ../../../Tweaks/FBTweak/FBTweakInlineInternal.h -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeTweaksExample/Pods/Headers/Public/Tweaks/FBTweakShakeWindow.h: -------------------------------------------------------------------------------- 1 | ../../../Tweaks/FBTweak/FBTweakShakeWindow.h -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeTweaksExample/Pods/Headers/Public/Tweaks/FBTweakStore.h: -------------------------------------------------------------------------------- 1 | ../../../Tweaks/FBTweak/FBTweakStore.h -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeTweaksExample/Pods/Headers/Public/Tweaks/FBTweakViewController.h: -------------------------------------------------------------------------------- 1 | ../../../Tweaks/FBTweak/FBTweakViewController.h -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeTweaksExample/Pods/Headers/Public/Tweaks/_FBTweakArrayViewController.h: -------------------------------------------------------------------------------- 1 | ../../../Tweaks/FBTweak/_FBTweakArrayViewController.h -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeTweaksExample/Pods/Headers/Public/Tweaks/_FBTweakBindObserver.h: -------------------------------------------------------------------------------- 1 | ../../../Tweaks/FBTweak/_FBTweakBindObserver.h -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeTweaksExample/Pods/Headers/Public/Tweaks/_FBTweakCategoryViewController.h: -------------------------------------------------------------------------------- 1 | ../../../Tweaks/FBTweak/_FBTweakCategoryViewController.h -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeTweaksExample/Pods/Headers/Public/Tweaks/_FBTweakCollectionViewController.h: -------------------------------------------------------------------------------- 1 | ../../../Tweaks/FBTweak/_FBTweakCollectionViewController.h -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeTweaksExample/Pods/Headers/Public/Tweaks/_FBTweakDictionaryViewController.h: -------------------------------------------------------------------------------- 1 | ../../../Tweaks/FBTweak/_FBTweakDictionaryViewController.h -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeTweaksExample/Pods/Headers/Public/Tweaks/_FBTweakTableViewCell.h: -------------------------------------------------------------------------------- 1 | ../../../Tweaks/FBTweak/_FBTweakTableViewCell.h -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeTweaksExample/Pods/Local Podspecs/MMBarricade.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Examples/ObjC/BarricadeTweaksExample/Pods/Local Podspecs/MMBarricade.podspec.json -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeTweaksExample/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Examples/ObjC/BarricadeTweaksExample/Pods/Manifest.lock -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeTweaksExample/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Examples/ObjC/BarricadeTweaksExample/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeTweaksExample/Pods/Target Support Files/Pods-MMBarricade/Pods-MMBarricade-Private.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Examples/ObjC/BarricadeTweaksExample/Pods/Target Support Files/Pods-MMBarricade/Pods-MMBarricade-Private.xcconfig -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeTweaksExample/Pods/Target Support Files/Pods-MMBarricade/Pods-MMBarricade-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Examples/ObjC/BarricadeTweaksExample/Pods/Target Support Files/Pods-MMBarricade/Pods-MMBarricade-dummy.m -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeTweaksExample/Pods/Target Support Files/Pods-MMBarricade/Pods-MMBarricade-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Examples/ObjC/BarricadeTweaksExample/Pods/Target Support Files/Pods-MMBarricade/Pods-MMBarricade-prefix.pch -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeTweaksExample/Pods/Target Support Files/Pods-MMBarricade/Pods-MMBarricade.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Examples/ObjC/BarricadeTweaksExample/Pods/Target Support Files/Pods-MMBarricade/Pods-MMBarricade.xcconfig -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeTweaksExample/Pods/Target Support Files/Pods-Tweaks/Pods-Tweaks-Private.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Examples/ObjC/BarricadeTweaksExample/Pods/Target Support Files/Pods-Tweaks/Pods-Tweaks-Private.xcconfig -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeTweaksExample/Pods/Target Support Files/Pods-Tweaks/Pods-Tweaks-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Examples/ObjC/BarricadeTweaksExample/Pods/Target Support Files/Pods-Tweaks/Pods-Tweaks-dummy.m -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeTweaksExample/Pods/Target Support Files/Pods-Tweaks/Pods-Tweaks-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Examples/ObjC/BarricadeTweaksExample/Pods/Target Support Files/Pods-Tweaks/Pods-Tweaks-prefix.pch -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeTweaksExample/Pods/Target Support Files/Pods-Tweaks/Pods-Tweaks.xcconfig: -------------------------------------------------------------------------------- 1 | PODS_TWEAKS_OTHER_LDFLAGS = -framework "MessageUI" -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeTweaksExample/Pods/Target Support Files/Pods/Pods-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Examples/ObjC/BarricadeTweaksExample/Pods/Target Support Files/Pods/Pods-acknowledgements.markdown -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeTweaksExample/Pods/Target Support Files/Pods/Pods-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Examples/ObjC/BarricadeTweaksExample/Pods/Target Support Files/Pods/Pods-acknowledgements.plist -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeTweaksExample/Pods/Target Support Files/Pods/Pods-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Examples/ObjC/BarricadeTweaksExample/Pods/Target Support Files/Pods/Pods-dummy.m -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeTweaksExample/Pods/Target Support Files/Pods/Pods-environment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Examples/ObjC/BarricadeTweaksExample/Pods/Target Support Files/Pods/Pods-environment.h -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeTweaksExample/Pods/Target Support Files/Pods/Pods-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Examples/ObjC/BarricadeTweaksExample/Pods/Target Support Files/Pods/Pods-resources.sh -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeTweaksExample/Pods/Target Support Files/Pods/Pods.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Examples/ObjC/BarricadeTweaksExample/Pods/Target Support Files/Pods/Pods.debug.xcconfig -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeTweaksExample/Pods/Target Support Files/Pods/Pods.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Examples/ObjC/BarricadeTweaksExample/Pods/Target Support Files/Pods/Pods.release.xcconfig -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeTweaksExample/Pods/Tweaks/FBTweak/FBTweak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Examples/ObjC/BarricadeTweaksExample/Pods/Tweaks/FBTweak/FBTweak.h -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeTweaksExample/Pods/Tweaks/FBTweak/FBTweak.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Examples/ObjC/BarricadeTweaksExample/Pods/Tweaks/FBTweak/FBTweak.m -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeTweaksExample/Pods/Tweaks/FBTweak/FBTweakCategory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Examples/ObjC/BarricadeTweaksExample/Pods/Tweaks/FBTweak/FBTweakCategory.h -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeTweaksExample/Pods/Tweaks/FBTweak/FBTweakCategory.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Examples/ObjC/BarricadeTweaksExample/Pods/Tweaks/FBTweak/FBTweakCategory.m -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeTweaksExample/Pods/Tweaks/FBTweak/FBTweakCollection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Examples/ObjC/BarricadeTweaksExample/Pods/Tweaks/FBTweak/FBTweakCollection.h -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeTweaksExample/Pods/Tweaks/FBTweak/FBTweakCollection.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Examples/ObjC/BarricadeTweaksExample/Pods/Tweaks/FBTweak/FBTweakCollection.m -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeTweaksExample/Pods/Tweaks/FBTweak/FBTweakEnabled.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Examples/ObjC/BarricadeTweaksExample/Pods/Tweaks/FBTweak/FBTweakEnabled.h -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeTweaksExample/Pods/Tweaks/FBTweak/FBTweakInline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Examples/ObjC/BarricadeTweaksExample/Pods/Tweaks/FBTweak/FBTweakInline.h -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeTweaksExample/Pods/Tweaks/FBTweak/FBTweakInline.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Examples/ObjC/BarricadeTweaksExample/Pods/Tweaks/FBTweak/FBTweakInline.m -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeTweaksExample/Pods/Tweaks/FBTweak/FBTweakInlineInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Examples/ObjC/BarricadeTweaksExample/Pods/Tweaks/FBTweak/FBTweakInlineInternal.h -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeTweaksExample/Pods/Tweaks/FBTweak/FBTweakShakeWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Examples/ObjC/BarricadeTweaksExample/Pods/Tweaks/FBTweak/FBTweakShakeWindow.h -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeTweaksExample/Pods/Tweaks/FBTweak/FBTweakShakeWindow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Examples/ObjC/BarricadeTweaksExample/Pods/Tweaks/FBTweak/FBTweakShakeWindow.m -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeTweaksExample/Pods/Tweaks/FBTweak/FBTweakStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Examples/ObjC/BarricadeTweaksExample/Pods/Tweaks/FBTweak/FBTweakStore.h -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeTweaksExample/Pods/Tweaks/FBTweak/FBTweakStore.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Examples/ObjC/BarricadeTweaksExample/Pods/Tweaks/FBTweak/FBTweakStore.m -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeTweaksExample/Pods/Tweaks/FBTweak/FBTweakViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Examples/ObjC/BarricadeTweaksExample/Pods/Tweaks/FBTweak/FBTweakViewController.h -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeTweaksExample/Pods/Tweaks/FBTweak/FBTweakViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Examples/ObjC/BarricadeTweaksExample/Pods/Tweaks/FBTweak/FBTweakViewController.m -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeTweaksExample/Pods/Tweaks/FBTweak/_FBTweakArrayViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Examples/ObjC/BarricadeTweaksExample/Pods/Tweaks/FBTweak/_FBTweakArrayViewController.h -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeTweaksExample/Pods/Tweaks/FBTweak/_FBTweakArrayViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Examples/ObjC/BarricadeTweaksExample/Pods/Tweaks/FBTweak/_FBTweakArrayViewController.m -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeTweaksExample/Pods/Tweaks/FBTweak/_FBTweakBindObserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Examples/ObjC/BarricadeTweaksExample/Pods/Tweaks/FBTweak/_FBTweakBindObserver.h -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeTweaksExample/Pods/Tweaks/FBTweak/_FBTweakBindObserver.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Examples/ObjC/BarricadeTweaksExample/Pods/Tweaks/FBTweak/_FBTweakBindObserver.m -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeTweaksExample/Pods/Tweaks/FBTweak/_FBTweakCategoryViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Examples/ObjC/BarricadeTweaksExample/Pods/Tweaks/FBTweak/_FBTweakCategoryViewController.h -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeTweaksExample/Pods/Tweaks/FBTweak/_FBTweakCategoryViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Examples/ObjC/BarricadeTweaksExample/Pods/Tweaks/FBTweak/_FBTweakCategoryViewController.m -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeTweaksExample/Pods/Tweaks/FBTweak/_FBTweakCollectionViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Examples/ObjC/BarricadeTweaksExample/Pods/Tweaks/FBTweak/_FBTweakCollectionViewController.h -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeTweaksExample/Pods/Tweaks/FBTweak/_FBTweakCollectionViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Examples/ObjC/BarricadeTweaksExample/Pods/Tweaks/FBTweak/_FBTweakCollectionViewController.m -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeTweaksExample/Pods/Tweaks/FBTweak/_FBTweakDictionaryViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Examples/ObjC/BarricadeTweaksExample/Pods/Tweaks/FBTweak/_FBTweakDictionaryViewController.h -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeTweaksExample/Pods/Tweaks/FBTweak/_FBTweakDictionaryViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Examples/ObjC/BarricadeTweaksExample/Pods/Tweaks/FBTweak/_FBTweakDictionaryViewController.m -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeTweaksExample/Pods/Tweaks/FBTweak/_FBTweakTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Examples/ObjC/BarricadeTweaksExample/Pods/Tweaks/FBTweak/_FBTweakTableViewCell.h -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeTweaksExample/Pods/Tweaks/FBTweak/_FBTweakTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Examples/ObjC/BarricadeTweaksExample/Pods/Tweaks/FBTweak/_FBTweakTableViewCell.m -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeTweaksExample/Pods/Tweaks/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Examples/ObjC/BarricadeTweaksExample/Pods/Tweaks/LICENSE -------------------------------------------------------------------------------- /Examples/ObjC/BarricadeTweaksExample/Pods/Tweaks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/Examples/ObjC/BarricadeTweaksExample/Pods/Tweaks/README.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/LICENSE -------------------------------------------------------------------------------- /MMBarricade.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/MMBarricade.podspec -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/README.md -------------------------------------------------------------------------------- /ReadmeResources/MMBarricade.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/ReadmeResources/MMBarricade.gif -------------------------------------------------------------------------------- /ReadmeResources/in-app-selection.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutualmobile/MMBarricade/HEAD/ReadmeResources/in-app-selection.jpg --------------------------------------------------------------------------------