gitextract_dxkqxvqx/ ├── .gitignore ├── .travis.yml ├── CONTRIBUTING.md ├── Dixie/ │ ├── Dixie/ │ │ ├── ChaosProvider/ │ │ │ ├── BlockChaosProvider/ │ │ │ │ ├── DixieBlockChaosProvider.h │ │ │ │ └── DixieBlockChaosProvider.m │ │ │ ├── CompositeChaosProvider/ │ │ │ │ ├── DixieCompositeChaosProvider.h │ │ │ │ ├── DixieCompositeChaosProvider.m │ │ │ │ ├── DixieCompositeCondition.h │ │ │ │ └── DixieCompositeCondition.m │ │ │ ├── ConstantChaosProvider/ │ │ │ │ ├── DixieConstantChaosProvider.h │ │ │ │ └── DixieConstantChaosProvider.m │ │ │ ├── DixieBaseChaosProvider.h │ │ │ ├── DixieBaseChaosProvider.m │ │ │ ├── DixieChaosContext.h │ │ │ ├── DixieChaosContext.m │ │ │ ├── ExceptionChaosProvider/ │ │ │ │ ├── DixieExceptionChaosProvider.h │ │ │ │ └── DixieExceptionChaosProvider.m │ │ │ ├── NilChaosProvider/ │ │ │ │ ├── DixieNilChaosProvider.h │ │ │ │ └── DixieNilChaosProvider.m │ │ │ ├── NonChaosProvider/ │ │ │ │ ├── DixieNonChaosProvider.h │ │ │ │ └── DixieNonChaosProvider.m │ │ │ ├── RandomChaosProvider/ │ │ │ │ ├── DixieRandomChaosProvider.h │ │ │ │ └── DixieRandomChaosProvider.m │ │ │ └── SequentialChaosProvider/ │ │ │ ├── DixieSequentialChaosProvider.h │ │ │ └── DixieSequentialChaosProvider.m │ │ ├── Dixie+Fluent/ │ │ │ ├── Dixie+Fluent.h │ │ │ └── Dixie+Fluent.m │ │ ├── Dixie.h │ │ ├── Dixie.m │ │ ├── DixieHeaders.h │ │ ├── DixieLogger/ │ │ │ ├── DixieLogger.h │ │ │ ├── DixieLogger.m │ │ │ └── SimpleLogger/ │ │ │ ├── DixieSimpleLogger.h │ │ │ └── DixieSimpleLogger.m │ │ ├── MethodInfo/ │ │ │ ├── DixieMethodInfo.h │ │ │ └── DixieMethodInfo.m │ │ ├── ParamProvider/ │ │ │ ├── DixieBaseParamProvider.h │ │ │ ├── DixieBaseParamProvider.m │ │ │ └── RandomParamProvider/ │ │ │ ├── DixieRandomParamProvider.h │ │ │ └── DixieRandomParamProvider.m │ │ ├── ProfileEntry/ │ │ │ ├── DixieProfileEntry.h │ │ │ └── DixieProfileEntry.m │ │ ├── PuppetMaker/ │ │ │ ├── DixieDefaultPuppetMaker.h │ │ │ ├── DixieDefaultPuppetMaker.m │ │ │ └── DixiePuppetMaking.h │ │ └── Runtime/ │ │ ├── DixieCallEnvironment.h │ │ ├── DixieCallEnvironment.m │ │ ├── DixieRunTimeHelper.h │ │ ├── DixieRunTimeHelper.m │ │ ├── NSObject+DixieRunTimeHelper.h │ │ └── NSObject+DixieRunTimeHelper.m │ ├── Dixie.xcodeproj/ │ │ ├── project.pbxproj │ │ ├── project.xcworkspace/ │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata/ │ │ └── xcschemes/ │ │ ├── Dixie.xcscheme │ │ └── DixieTests.xcscheme │ └── DixieTests/ │ ├── Helpers/ │ │ ├── ChaosProviderTestClass.h │ │ ├── ChaosProviderTestClass.m │ │ ├── SubTestClass.h │ │ ├── SubTestClass.m │ │ ├── TestClass.h │ │ ├── TestClass.m │ │ ├── TestPuppetMaker.h │ │ └── TestPuppetMaker.m │ ├── Info.plist │ ├── Predefined profiles/ │ │ ├── NSDateProfile.h │ │ ├── NSDateProfile.m │ │ ├── NSURLConnectionProfile.h │ │ ├── NSURLConnectionProfile.m │ │ ├── NSURLProfile.h │ │ └── NSURLProfile.m │ └── Units/ │ ├── DixieAPITests.m │ ├── DixieChaosProviderTests.m │ ├── ProfileEntryTests.m │ ├── RandomParamProviderTests.m │ └── RunTimeHelperTests.m ├── Dixie.podspec ├── DixieBasicChaos.codesnippet ├── DixieExampleApp/ │ ├── DixieExampleApp/ │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Base.lproj/ │ │ │ ├── LaunchScreen.xib │ │ │ └── Main.storyboard │ │ ├── CountDownViewController.h │ │ ├── CountDownViewController.m │ │ ├── Images.xcassets/ │ │ │ └── AppIcon.appiconset/ │ │ │ └── Contents.json │ │ ├── Info.plist │ │ ├── MapViewController.h │ │ ├── MapViewController.m │ │ ├── WeatherModel.h │ │ ├── WeatherModel.m │ │ ├── WeatherViewController.h │ │ ├── WeatherViewController.m │ │ └── main.m │ ├── DixieExampleApp.xcodeproj/ │ │ ├── project.pbxproj │ │ └── project.xcworkspace/ │ │ └── contents.xcworkspacedata │ ├── DixieExampleApp.xcworkspace/ │ │ └── contents.xcworkspacedata │ └── Podfile ├── Documentation/ │ ├── docset/ │ │ └── Contents/ │ │ ├── Info.plist │ │ └── Resources/ │ │ ├── Documents/ │ │ │ ├── Blocks/ │ │ │ │ ├── DixieCustomChaosBlock.html │ │ │ │ └── DixieImplementationBlock.html │ │ │ ├── Categories/ │ │ │ │ └── NSObject+DixieRunTimeHelper.html │ │ │ ├── Classes/ │ │ │ │ ├── Dixie.html │ │ │ │ ├── DixieBaseChaosProvider.html │ │ │ │ ├── DixieBaseParamProvider.html │ │ │ │ ├── DixieBlockChaosProvider.html │ │ │ │ ├── DixieCallEnvironment.html │ │ │ │ ├── DixieChaosContext.html │ │ │ │ ├── DixieCompositeChaosProvider.html │ │ │ │ ├── DixieCompositeCondition.html │ │ │ │ ├── DixieConstantChaosProvider.html │ │ │ │ ├── DixieDefaultPuppetMaker.html │ │ │ │ ├── DixieExceptionChaosProvider.html │ │ │ │ ├── DixieLogger.html │ │ │ │ ├── DixieMethodInfo.html │ │ │ │ ├── DixieNilChaosProvider.html │ │ │ │ ├── DixieNonChaosProvider.html │ │ │ │ ├── DixieProfileEntry.html │ │ │ │ ├── DixieRandomChaosProvider.html │ │ │ │ ├── DixieRandomParamProvider.html │ │ │ │ ├── DixieRunTimeHelper.html │ │ │ │ ├── DixieSequentialChaosProvider.html │ │ │ │ └── DixieSimpleLogger.html │ │ │ ├── Protocols/ │ │ │ │ └── DixiePuppetMaking.html │ │ │ ├── css/ │ │ │ │ ├── styles.css │ │ │ │ └── stylesPrint.css │ │ │ ├── hierarchy.html │ │ │ └── index.html │ │ ├── Nodes.xml │ │ ├── Tokens1.xml │ │ ├── Tokens10.xml │ │ ├── Tokens11.xml │ │ ├── Tokens12.xml │ │ ├── Tokens13.xml │ │ ├── Tokens14.xml │ │ ├── Tokens15.xml │ │ ├── Tokens16.xml │ │ ├── Tokens17.xml │ │ ├── Tokens18.xml │ │ ├── Tokens19.xml │ │ ├── Tokens2.xml │ │ ├── Tokens20.xml │ │ ├── Tokens21.xml │ │ ├── Tokens22.xml │ │ ├── Tokens23.xml │ │ ├── Tokens24.xml │ │ ├── Tokens25.xml │ │ ├── Tokens3.xml │ │ ├── Tokens4.xml │ │ ├── Tokens5.xml │ │ ├── Tokens6.xml │ │ ├── Tokens7.xml │ │ ├── Tokens8.xml │ │ ├── Tokens9.xml │ │ ├── docSet.dsidx │ │ ├── docSet.dsidx-shm │ │ ├── docSet.dsidx-wal │ │ ├── docSet.mom │ │ ├── docSet.skidx │ │ ├── docSet.toc │ │ └── docSet.tokencache │ ├── docset-installed.txt │ └── html/ │ ├── Blocks/ │ │ ├── DixieCustomChaosBlock.html │ │ └── DixieImplementationBlock.html │ ├── Categories/ │ │ └── NSObject+DixieRunTimeHelper.html │ ├── Classes/ │ │ ├── Dixie.html │ │ ├── DixieBaseChaosProvider.html │ │ ├── DixieBaseParamProvider.html │ │ ├── DixieBlockChaosProvider.html │ │ ├── DixieCallEnvironment.html │ │ ├── DixieChaosContext.html │ │ ├── DixieCompositeChaosProvider.html │ │ ├── DixieCompositeCondition.html │ │ ├── DixieConstantChaosProvider.html │ │ ├── DixieDefaultPuppetMaker.html │ │ ├── DixieExceptionChaosProvider.html │ │ ├── DixieLogger.html │ │ ├── DixieMethodInfo.html │ │ ├── DixieNilChaosProvider.html │ │ ├── DixieNonChaosProvider.html │ │ ├── DixieProfileEntry.html │ │ ├── DixieRandomChaosProvider.html │ │ ├── DixieRandomParamProvider.html │ │ ├── DixieRunTimeHelper.html │ │ ├── DixieSequentialChaosProvider.html │ │ └── DixieSimpleLogger.html │ ├── Protocols/ │ │ └── DixiePuppetMaking.html │ ├── css/ │ │ ├── styles.css │ │ └── stylesPrint.css │ ├── hierarchy.html │ └── index.html ├── LICENSE ├── README.md ├── deploy_docs.sh └── documentation.sh