├── .gitignore ├── Gemfile ├── Gemfile.lock ├── MIT-LICENSE.txt ├── Package.swift ├── Podfile ├── Podfile.lock ├── README.md ├── Sources └── Swizzlean │ ├── RuntimeUtils.h │ ├── RuntimeUtils.m │ ├── Supporting Files │ └── Info.plist │ ├── Swizzlean.m │ └── include │ └── Swizzlean.h ├── Swizzlean.podspec ├── Swizzlean.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcshareddata │ └── xcschemes │ └── Swizzlean.xcscheme ├── Swizzlean.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── Tests └── SwizzleanSpecs │ ├── Fakes │ ├── FakeRuntimeUtils.h │ ├── FakeRuntimeUtils.m │ ├── IntegrationTestClass.h │ ├── IntegrationTestClass.m │ ├── TestClass.h │ └── TestClass.m │ ├── RuntimeUtilsSpec.m │ ├── Supporting Files │ └── Info.plist │ ├── SwizzleanIntegrationSpec.m │ └── SwizzleanSpec.m ├── fastlane └── Fastfile └── setup.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbaumbach/Swizzlean/HEAD/.gitignore -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbaumbach/Swizzlean/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbaumbach/Swizzlean/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /MIT-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbaumbach/Swizzlean/HEAD/MIT-LICENSE.txt -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbaumbach/Swizzlean/HEAD/Package.swift -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbaumbach/Swizzlean/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbaumbach/Swizzlean/HEAD/Podfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbaumbach/Swizzlean/HEAD/README.md -------------------------------------------------------------------------------- /Sources/Swizzlean/RuntimeUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbaumbach/Swizzlean/HEAD/Sources/Swizzlean/RuntimeUtils.h -------------------------------------------------------------------------------- /Sources/Swizzlean/RuntimeUtils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbaumbach/Swizzlean/HEAD/Sources/Swizzlean/RuntimeUtils.m -------------------------------------------------------------------------------- /Sources/Swizzlean/Supporting Files/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbaumbach/Swizzlean/HEAD/Sources/Swizzlean/Supporting Files/Info.plist -------------------------------------------------------------------------------- /Sources/Swizzlean/Swizzlean.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbaumbach/Swizzlean/HEAD/Sources/Swizzlean/Swizzlean.m -------------------------------------------------------------------------------- /Sources/Swizzlean/include/Swizzlean.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbaumbach/Swizzlean/HEAD/Sources/Swizzlean/include/Swizzlean.h -------------------------------------------------------------------------------- /Swizzlean.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbaumbach/Swizzlean/HEAD/Swizzlean.podspec -------------------------------------------------------------------------------- /Swizzlean.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbaumbach/Swizzlean/HEAD/Swizzlean.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Swizzlean.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbaumbach/Swizzlean/HEAD/Swizzlean.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Swizzlean.xcodeproj/xcshareddata/xcschemes/Swizzlean.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbaumbach/Swizzlean/HEAD/Swizzlean.xcodeproj/xcshareddata/xcschemes/Swizzlean.xcscheme -------------------------------------------------------------------------------- /Swizzlean.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbaumbach/Swizzlean/HEAD/Swizzlean.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Swizzlean.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbaumbach/Swizzlean/HEAD/Swizzlean.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Tests/SwizzleanSpecs/Fakes/FakeRuntimeUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbaumbach/Swizzlean/HEAD/Tests/SwizzleanSpecs/Fakes/FakeRuntimeUtils.h -------------------------------------------------------------------------------- /Tests/SwizzleanSpecs/Fakes/FakeRuntimeUtils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbaumbach/Swizzlean/HEAD/Tests/SwizzleanSpecs/Fakes/FakeRuntimeUtils.m -------------------------------------------------------------------------------- /Tests/SwizzleanSpecs/Fakes/IntegrationTestClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbaumbach/Swizzlean/HEAD/Tests/SwizzleanSpecs/Fakes/IntegrationTestClass.h -------------------------------------------------------------------------------- /Tests/SwizzleanSpecs/Fakes/IntegrationTestClass.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbaumbach/Swizzlean/HEAD/Tests/SwizzleanSpecs/Fakes/IntegrationTestClass.m -------------------------------------------------------------------------------- /Tests/SwizzleanSpecs/Fakes/TestClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbaumbach/Swizzlean/HEAD/Tests/SwizzleanSpecs/Fakes/TestClass.h -------------------------------------------------------------------------------- /Tests/SwizzleanSpecs/Fakes/TestClass.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbaumbach/Swizzlean/HEAD/Tests/SwizzleanSpecs/Fakes/TestClass.m -------------------------------------------------------------------------------- /Tests/SwizzleanSpecs/RuntimeUtilsSpec.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbaumbach/Swizzlean/HEAD/Tests/SwizzleanSpecs/RuntimeUtilsSpec.m -------------------------------------------------------------------------------- /Tests/SwizzleanSpecs/Supporting Files/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbaumbach/Swizzlean/HEAD/Tests/SwizzleanSpecs/Supporting Files/Info.plist -------------------------------------------------------------------------------- /Tests/SwizzleanSpecs/SwizzleanIntegrationSpec.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbaumbach/Swizzlean/HEAD/Tests/SwizzleanSpecs/SwizzleanIntegrationSpec.m -------------------------------------------------------------------------------- /Tests/SwizzleanSpecs/SwizzleanSpec.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbaumbach/Swizzlean/HEAD/Tests/SwizzleanSpecs/SwizzleanSpec.m -------------------------------------------------------------------------------- /fastlane/Fastfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbaumbach/Swizzlean/HEAD/fastlane/Fastfile -------------------------------------------------------------------------------- /setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbaumbach/Swizzlean/HEAD/setup.sh --------------------------------------------------------------------------------