├── .gitignore ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Example ├── KZFileWatchers.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── KZFileWatchers-Example.xcscheme ├── KZFileWatchers.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── KZFileWatchers │ ├── AppDelegate.swift │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ └── ViewController.swift ├── Podfile ├── Podfile.lock ├── Pods │ ├── Local Podspecs │ │ └── KZFileWatchers.podspec.json │ ├── Manifest.lock │ ├── Nimble │ │ ├── Carthage │ │ │ └── Checkouts │ │ │ │ └── CwlPreconditionTesting │ │ │ │ ├── Dependencies │ │ │ │ └── CwlCatchException │ │ │ │ │ └── Sources │ │ │ │ │ ├── CwlCatchException │ │ │ │ │ └── CwlCatchException.swift │ │ │ │ │ └── CwlCatchExceptionSupport │ │ │ │ │ ├── CwlCatchException.m │ │ │ │ │ └── include │ │ │ │ │ └── CwlCatchException.h │ │ │ │ └── Sources │ │ │ │ ├── CwlMachBadInstructionHandler │ │ │ │ ├── CwlMachBadInstructionHandler.m │ │ │ │ ├── include │ │ │ │ │ └── CwlMachBadInstructionHandler.h │ │ │ │ ├── mach_excServer.c │ │ │ │ └── mach_excServer.h │ │ │ │ └── CwlPreconditionTesting │ │ │ │ ├── CwlBadInstructionException.swift │ │ │ │ ├── CwlCatchBadInstruction.swift │ │ │ │ ├── CwlDarwinDefinitions.swift │ │ │ │ └── include │ │ │ │ └── CwlPreconditionTesting.h │ │ ├── LICENSE │ │ ├── README.md │ │ └── Sources │ │ │ ├── Nimble │ │ │ ├── Adapters │ │ │ │ ├── AdapterProtocols.swift │ │ │ │ ├── AssertionDispatcher.swift │ │ │ │ ├── AssertionRecorder.swift │ │ │ │ ├── NMBExpectation.swift │ │ │ │ ├── NMBObjCMatcher.swift │ │ │ │ ├── NimbleEnvironment.swift │ │ │ │ └── NimbleXCTestHandler.swift │ │ │ ├── DSL+Wait.swift │ │ │ ├── DSL.swift │ │ │ ├── Expectation.swift │ │ │ ├── ExpectationMessage.swift │ │ │ ├── Expression.swift │ │ │ ├── FailureMessage.swift │ │ │ ├── Matchers │ │ │ │ ├── AllPass.swift │ │ │ │ ├── Async.swift │ │ │ │ ├── BeAKindOf.swift │ │ │ │ ├── BeAnInstanceOf.swift │ │ │ │ ├── BeCloseTo.swift │ │ │ │ ├── BeEmpty.swift │ │ │ │ ├── BeGreaterThan.swift │ │ │ │ ├── BeGreaterThanOrEqualTo.swift │ │ │ │ ├── BeIdenticalTo.swift │ │ │ │ ├── BeLessThan.swift │ │ │ │ ├── BeLessThanOrEqual.swift │ │ │ │ ├── BeLogical.swift │ │ │ │ ├── BeNil.swift │ │ │ │ ├── BeVoid.swift │ │ │ │ ├── BeginWith.swift │ │ │ │ ├── Contain.swift │ │ │ │ ├── ContainElementSatisfying.swift │ │ │ │ ├── ElementsEqual.swift │ │ │ │ ├── EndWith.swift │ │ │ │ ├── Equal.swift │ │ │ │ ├── HaveCount.swift │ │ │ │ ├── Match.swift │ │ │ │ ├── MatchError.swift │ │ │ │ ├── MatcherFunc.swift │ │ │ │ ├── MatcherProtocols.swift │ │ │ │ ├── PostNotification.swift │ │ │ │ ├── Predicate.swift │ │ │ │ ├── RaisesException.swift │ │ │ │ ├── SatisfyAllOf.swift │ │ │ │ ├── SatisfyAnyOf.swift │ │ │ │ ├── ThrowAssertion.swift │ │ │ │ ├── ThrowError.swift │ │ │ │ └── ToSucceed.swift │ │ │ ├── Nimble.h │ │ │ └── Utils │ │ │ │ ├── Await.swift │ │ │ │ ├── Errors.swift │ │ │ │ ├── Functional.swift │ │ │ │ ├── SourceLocation.swift │ │ │ │ └── Stringers.swift │ │ │ └── NimbleObjectiveC │ │ │ ├── DSL.h │ │ │ ├── DSL.m │ │ │ ├── NMBExceptionCapture.h │ │ │ ├── NMBExceptionCapture.m │ │ │ ├── NMBStringify.h │ │ │ ├── NMBStringify.m │ │ │ └── XCTestObservationCenter+Register.m │ ├── OHHTTPStubs │ │ ├── LICENSE │ │ ├── OHHTTPStubs │ │ │ └── Sources │ │ │ │ ├── Compatibility.h │ │ │ │ ├── JSON │ │ │ │ ├── OHHTTPStubsResponse+JSON.h │ │ │ │ └── OHHTTPStubsResponse+JSON.m │ │ │ │ ├── NSURLSession │ │ │ │ ├── NSURLRequest+HTTPBodyTesting.h │ │ │ │ ├── NSURLRequest+HTTPBodyTesting.m │ │ │ │ ├── OHHTTPStubs+NSURLSessionConfiguration.m │ │ │ │ ├── OHHTTPStubsMethodSwizzling.h │ │ │ │ └── OHHTTPStubsMethodSwizzling.m │ │ │ │ ├── OHHTTPStubs.h │ │ │ │ ├── OHHTTPStubs.m │ │ │ │ ├── OHHTTPStubsResponse.h │ │ │ │ ├── OHHTTPStubsResponse.m │ │ │ │ ├── OHPathHelpers │ │ │ │ ├── OHPathHelpers.h │ │ │ │ └── OHPathHelpers.m │ │ │ │ └── Swift │ │ │ │ └── OHHTTPStubsSwift.swift │ │ └── README.md │ ├── Pods.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── KZFileWatchers.xcscheme │ ├── Quick │ │ ├── LICENSE │ │ ├── README.md │ │ └── Sources │ │ │ ├── Quick │ │ │ ├── Behavior.swift │ │ │ ├── Callsite.swift │ │ │ ├── Configuration │ │ │ │ ├── Configuration.swift │ │ │ │ └── QuickConfiguration.swift │ │ │ ├── DSL │ │ │ │ ├── DSL.swift │ │ │ │ └── World+DSL.swift │ │ │ ├── ErrorUtility.swift │ │ │ ├── Example.swift │ │ │ ├── ExampleGroup.swift │ │ │ ├── ExampleMetadata.swift │ │ │ ├── Filter.swift │ │ │ ├── Hooks │ │ │ │ ├── Closures.swift │ │ │ │ ├── ExampleHooks.swift │ │ │ │ ├── HooksPhase.swift │ │ │ │ └── SuiteHooks.swift │ │ │ ├── NSBundle+CurrentTestBundle.swift │ │ │ ├── QuickSelectedTestSuiteBuilder.swift │ │ │ ├── QuickTestSuite.swift │ │ │ ├── String+C99ExtendedIdentifier.swift │ │ │ ├── URL+FileName.swift │ │ │ └── World.swift │ │ │ ├── QuickObjectiveC │ │ │ ├── Configuration │ │ │ │ ├── QuickConfiguration.h │ │ │ │ └── QuickConfiguration.m │ │ │ ├── DSL │ │ │ │ ├── QCKDSL.h │ │ │ │ └── QCKDSL.m │ │ │ ├── Quick.h │ │ │ ├── QuickSpec.h │ │ │ ├── QuickSpec.m │ │ │ └── XCTestSuite+QuickTestSuiteBuilder.m │ │ │ └── QuickSpecBase │ │ │ ├── QuickSpecBase.m │ │ │ └── include │ │ │ └── QuickSpecBase.h │ └── Target Support Files │ │ ├── KZFileWatchers │ │ ├── Info.plist │ │ ├── KZFileWatchers-Info.plist │ │ ├── KZFileWatchers-dummy.m │ │ ├── KZFileWatchers-prefix.pch │ │ ├── KZFileWatchers-umbrella.h │ │ ├── KZFileWatchers.debug.xcconfig │ │ ├── KZFileWatchers.modulemap │ │ ├── KZFileWatchers.release.xcconfig │ │ └── KZFileWatchers.xcconfig │ │ ├── Nimble │ │ ├── Info.plist │ │ ├── Nimble-Info.plist │ │ ├── Nimble-dummy.m │ │ ├── Nimble-prefix.pch │ │ ├── Nimble-umbrella.h │ │ ├── Nimble.debug.xcconfig │ │ ├── Nimble.modulemap │ │ ├── Nimble.release.xcconfig │ │ └── Nimble.xcconfig │ │ ├── OHHTTPStubs │ │ ├── Info.plist │ │ ├── OHHTTPStubs-Info.plist │ │ ├── OHHTTPStubs-dummy.m │ │ ├── OHHTTPStubs-prefix.pch │ │ ├── OHHTTPStubs-umbrella.h │ │ ├── OHHTTPStubs.debug.xcconfig │ │ ├── OHHTTPStubs.modulemap │ │ ├── OHHTTPStubs.release.xcconfig │ │ └── OHHTTPStubs.xcconfig │ │ ├── Pods-KZFileWatchers_Example │ │ ├── Info.plist │ │ ├── Pods-KZFileWatchers_Example-Info.plist │ │ ├── Pods-KZFileWatchers_Example-acknowledgements.markdown │ │ ├── Pods-KZFileWatchers_Example-acknowledgements.plist │ │ ├── Pods-KZFileWatchers_Example-dummy.m │ │ ├── Pods-KZFileWatchers_Example-frameworks.sh │ │ ├── Pods-KZFileWatchers_Example-resources.sh │ │ ├── Pods-KZFileWatchers_Example-umbrella.h │ │ ├── Pods-KZFileWatchers_Example.debug.xcconfig │ │ ├── Pods-KZFileWatchers_Example.modulemap │ │ └── Pods-KZFileWatchers_Example.release.xcconfig │ │ ├── Pods-KZFileWatchers_Tests │ │ ├── Info.plist │ │ ├── Pods-KZFileWatchers_Tests-Info.plist │ │ ├── Pods-KZFileWatchers_Tests-acknowledgements.markdown │ │ ├── Pods-KZFileWatchers_Tests-acknowledgements.plist │ │ ├── Pods-KZFileWatchers_Tests-dummy.m │ │ ├── Pods-KZFileWatchers_Tests-frameworks.sh │ │ ├── Pods-KZFileWatchers_Tests-resources.sh │ │ ├── Pods-KZFileWatchers_Tests-umbrella.h │ │ ├── Pods-KZFileWatchers_Tests.debug.xcconfig │ │ ├── Pods-KZFileWatchers_Tests.modulemap │ │ └── Pods-KZFileWatchers_Tests.release.xcconfig │ │ └── Quick │ │ ├── Info.plist │ │ ├── Quick-Info.plist │ │ ├── Quick-dummy.m │ │ ├── Quick-prefix.pch │ │ ├── Quick-umbrella.h │ │ ├── Quick.debug.xcconfig │ │ ├── Quick.modulemap │ │ ├── Quick.release.xcconfig │ │ └── Quick.xcconfig └── Tests │ ├── Info.plist │ ├── LocalSpec.swift │ └── RemoteSpec.swift ├── Funding.yml ├── Images └── Demo.gif ├── KZFileWatchers.podspec ├── KZFileWatchers ├── Assets │ └── .gitkeep └── Classes │ ├── .gitkeep │ ├── Common.swift │ ├── Local │ └── Local.swift │ └── Remote │ └── Remote.swift ├── LICENSE ├── ObjcWrappers ├── FileWatcherProtocols.swift ├── LocalFileWatcher.swift ├── RefreshResultType.swift └── RemoteFileWatcher.swift ├── Package.swift ├── README.md ├── Sources └── KZFileWatchers └── _Pods.xcodeproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/.travis.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Example/KZFileWatchers.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/KZFileWatchers.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/KZFileWatchers.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/KZFileWatchers.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/KZFileWatchers.xcodeproj/xcshareddata/xcschemes/KZFileWatchers-Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/KZFileWatchers.xcodeproj/xcshareddata/xcschemes/KZFileWatchers-Example.xcscheme -------------------------------------------------------------------------------- /Example/KZFileWatchers.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/KZFileWatchers.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/KZFileWatchers.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/KZFileWatchers.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/KZFileWatchers/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/KZFileWatchers/AppDelegate.swift -------------------------------------------------------------------------------- /Example/KZFileWatchers/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/KZFileWatchers/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Example/KZFileWatchers/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/KZFileWatchers/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/KZFileWatchers/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/KZFileWatchers/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/KZFileWatchers/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/KZFileWatchers/Info.plist -------------------------------------------------------------------------------- /Example/KZFileWatchers/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/KZFileWatchers/ViewController.swift -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/KZFileWatchers.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Local Podspecs/KZFileWatchers.podspec.json -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Manifest.lock -------------------------------------------------------------------------------- /Example/Pods/Nimble/Carthage/Checkouts/CwlPreconditionTesting/Dependencies/CwlCatchException/Sources/CwlCatchException/CwlCatchException.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Nimble/Carthage/Checkouts/CwlPreconditionTesting/Dependencies/CwlCatchException/Sources/CwlCatchException/CwlCatchException.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Carthage/Checkouts/CwlPreconditionTesting/Dependencies/CwlCatchException/Sources/CwlCatchExceptionSupport/CwlCatchException.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Nimble/Carthage/Checkouts/CwlPreconditionTesting/Dependencies/CwlCatchException/Sources/CwlCatchExceptionSupport/CwlCatchException.m -------------------------------------------------------------------------------- /Example/Pods/Nimble/Carthage/Checkouts/CwlPreconditionTesting/Dependencies/CwlCatchException/Sources/CwlCatchExceptionSupport/include/CwlCatchException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Nimble/Carthage/Checkouts/CwlPreconditionTesting/Dependencies/CwlCatchException/Sources/CwlCatchExceptionSupport/include/CwlCatchException.h -------------------------------------------------------------------------------- /Example/Pods/Nimble/Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlMachBadInstructionHandler/CwlMachBadInstructionHandler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Nimble/Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlMachBadInstructionHandler/CwlMachBadInstructionHandler.m -------------------------------------------------------------------------------- /Example/Pods/Nimble/Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlMachBadInstructionHandler/include/CwlMachBadInstructionHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Nimble/Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlMachBadInstructionHandler/include/CwlMachBadInstructionHandler.h -------------------------------------------------------------------------------- /Example/Pods/Nimble/Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlMachBadInstructionHandler/mach_excServer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Nimble/Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlMachBadInstructionHandler/mach_excServer.c -------------------------------------------------------------------------------- /Example/Pods/Nimble/Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlMachBadInstructionHandler/mach_excServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Nimble/Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlMachBadInstructionHandler/mach_excServer.h -------------------------------------------------------------------------------- /Example/Pods/Nimble/Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlPreconditionTesting/CwlBadInstructionException.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Nimble/Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlPreconditionTesting/CwlBadInstructionException.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlPreconditionTesting/CwlCatchBadInstruction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Nimble/Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlPreconditionTesting/CwlCatchBadInstruction.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlPreconditionTesting/CwlDarwinDefinitions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Nimble/Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlPreconditionTesting/CwlDarwinDefinitions.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlPreconditionTesting/include/CwlPreconditionTesting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Nimble/Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlPreconditionTesting/include/CwlPreconditionTesting.h -------------------------------------------------------------------------------- /Example/Pods/Nimble/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Nimble/LICENSE -------------------------------------------------------------------------------- /Example/Pods/Nimble/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Nimble/README.md -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Adapters/AdapterProtocols.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Nimble/Sources/Nimble/Adapters/AdapterProtocols.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Adapters/AssertionDispatcher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Nimble/Sources/Nimble/Adapters/AssertionDispatcher.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Adapters/AssertionRecorder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Nimble/Sources/Nimble/Adapters/AssertionRecorder.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Adapters/NMBExpectation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Nimble/Sources/Nimble/Adapters/NMBExpectation.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Adapters/NMBObjCMatcher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Nimble/Sources/Nimble/Adapters/NMBObjCMatcher.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Adapters/NimbleEnvironment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Nimble/Sources/Nimble/Adapters/NimbleEnvironment.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Adapters/NimbleXCTestHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Nimble/Sources/Nimble/Adapters/NimbleXCTestHandler.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/DSL+Wait.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Nimble/Sources/Nimble/DSL+Wait.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/DSL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Nimble/Sources/Nimble/DSL.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Expectation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Nimble/Sources/Nimble/Expectation.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/ExpectationMessage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Nimble/Sources/Nimble/ExpectationMessage.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Expression.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Nimble/Sources/Nimble/Expression.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/FailureMessage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Nimble/Sources/Nimble/FailureMessage.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Matchers/AllPass.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Nimble/Sources/Nimble/Matchers/AllPass.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Matchers/Async.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Nimble/Sources/Nimble/Matchers/Async.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Matchers/BeAKindOf.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Nimble/Sources/Nimble/Matchers/BeAKindOf.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Matchers/BeAnInstanceOf.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Nimble/Sources/Nimble/Matchers/BeAnInstanceOf.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Matchers/BeCloseTo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Nimble/Sources/Nimble/Matchers/BeCloseTo.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Matchers/BeEmpty.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Nimble/Sources/Nimble/Matchers/BeEmpty.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Matchers/BeGreaterThan.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Nimble/Sources/Nimble/Matchers/BeGreaterThan.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Matchers/BeGreaterThanOrEqualTo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Nimble/Sources/Nimble/Matchers/BeGreaterThanOrEqualTo.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Matchers/BeIdenticalTo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Nimble/Sources/Nimble/Matchers/BeIdenticalTo.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Matchers/BeLessThan.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Nimble/Sources/Nimble/Matchers/BeLessThan.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Matchers/BeLessThanOrEqual.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Nimble/Sources/Nimble/Matchers/BeLessThanOrEqual.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Matchers/BeLogical.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Nimble/Sources/Nimble/Matchers/BeLogical.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Matchers/BeNil.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Nimble/Sources/Nimble/Matchers/BeNil.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Matchers/BeVoid.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Nimble/Sources/Nimble/Matchers/BeVoid.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Matchers/BeginWith.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Nimble/Sources/Nimble/Matchers/BeginWith.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Matchers/Contain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Nimble/Sources/Nimble/Matchers/Contain.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Matchers/ContainElementSatisfying.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Nimble/Sources/Nimble/Matchers/ContainElementSatisfying.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Matchers/ElementsEqual.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Nimble/Sources/Nimble/Matchers/ElementsEqual.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Matchers/EndWith.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Nimble/Sources/Nimble/Matchers/EndWith.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Matchers/Equal.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Nimble/Sources/Nimble/Matchers/Equal.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Matchers/HaveCount.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Nimble/Sources/Nimble/Matchers/HaveCount.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Matchers/Match.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Nimble/Sources/Nimble/Matchers/Match.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Matchers/MatchError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Nimble/Sources/Nimble/Matchers/MatchError.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Matchers/MatcherFunc.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Nimble/Sources/Nimble/Matchers/MatcherFunc.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Matchers/MatcherProtocols.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Nimble/Sources/Nimble/Matchers/MatcherProtocols.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Matchers/PostNotification.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Nimble/Sources/Nimble/Matchers/PostNotification.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Matchers/Predicate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Nimble/Sources/Nimble/Matchers/Predicate.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Matchers/RaisesException.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Nimble/Sources/Nimble/Matchers/RaisesException.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Matchers/SatisfyAllOf.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Nimble/Sources/Nimble/Matchers/SatisfyAllOf.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Matchers/SatisfyAnyOf.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Nimble/Sources/Nimble/Matchers/SatisfyAnyOf.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Matchers/ThrowAssertion.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Nimble/Sources/Nimble/Matchers/ThrowAssertion.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Matchers/ThrowError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Nimble/Sources/Nimble/Matchers/ThrowError.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Matchers/ToSucceed.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Nimble/Sources/Nimble/Matchers/ToSucceed.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Nimble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Nimble/Sources/Nimble/Nimble.h -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Utils/Await.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Nimble/Sources/Nimble/Utils/Await.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Utils/Errors.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Nimble/Sources/Nimble/Utils/Errors.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Utils/Functional.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Nimble/Sources/Nimble/Utils/Functional.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Utils/SourceLocation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Nimble/Sources/Nimble/Utils/SourceLocation.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Utils/Stringers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Nimble/Sources/Nimble/Utils/Stringers.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/NimbleObjectiveC/DSL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Nimble/Sources/NimbleObjectiveC/DSL.h -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/NimbleObjectiveC/DSL.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Nimble/Sources/NimbleObjectiveC/DSL.m -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/NimbleObjectiveC/NMBExceptionCapture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Nimble/Sources/NimbleObjectiveC/NMBExceptionCapture.h -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/NimbleObjectiveC/NMBExceptionCapture.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Nimble/Sources/NimbleObjectiveC/NMBExceptionCapture.m -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/NimbleObjectiveC/NMBStringify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Nimble/Sources/NimbleObjectiveC/NMBStringify.h -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/NimbleObjectiveC/NMBStringify.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Nimble/Sources/NimbleObjectiveC/NMBStringify.m -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/NimbleObjectiveC/XCTestObservationCenter+Register.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Nimble/Sources/NimbleObjectiveC/XCTestObservationCenter+Register.m -------------------------------------------------------------------------------- /Example/Pods/OHHTTPStubs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/OHHTTPStubs/LICENSE -------------------------------------------------------------------------------- /Example/Pods/OHHTTPStubs/OHHTTPStubs/Sources/Compatibility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/OHHTTPStubs/OHHTTPStubs/Sources/Compatibility.h -------------------------------------------------------------------------------- /Example/Pods/OHHTTPStubs/OHHTTPStubs/Sources/JSON/OHHTTPStubsResponse+JSON.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/OHHTTPStubs/OHHTTPStubs/Sources/JSON/OHHTTPStubsResponse+JSON.h -------------------------------------------------------------------------------- /Example/Pods/OHHTTPStubs/OHHTTPStubs/Sources/JSON/OHHTTPStubsResponse+JSON.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/OHHTTPStubs/OHHTTPStubs/Sources/JSON/OHHTTPStubsResponse+JSON.m -------------------------------------------------------------------------------- /Example/Pods/OHHTTPStubs/OHHTTPStubs/Sources/NSURLSession/NSURLRequest+HTTPBodyTesting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/OHHTTPStubs/OHHTTPStubs/Sources/NSURLSession/NSURLRequest+HTTPBodyTesting.h -------------------------------------------------------------------------------- /Example/Pods/OHHTTPStubs/OHHTTPStubs/Sources/NSURLSession/NSURLRequest+HTTPBodyTesting.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/OHHTTPStubs/OHHTTPStubs/Sources/NSURLSession/NSURLRequest+HTTPBodyTesting.m -------------------------------------------------------------------------------- /Example/Pods/OHHTTPStubs/OHHTTPStubs/Sources/NSURLSession/OHHTTPStubs+NSURLSessionConfiguration.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/OHHTTPStubs/OHHTTPStubs/Sources/NSURLSession/OHHTTPStubs+NSURLSessionConfiguration.m -------------------------------------------------------------------------------- /Example/Pods/OHHTTPStubs/OHHTTPStubs/Sources/NSURLSession/OHHTTPStubsMethodSwizzling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/OHHTTPStubs/OHHTTPStubs/Sources/NSURLSession/OHHTTPStubsMethodSwizzling.h -------------------------------------------------------------------------------- /Example/Pods/OHHTTPStubs/OHHTTPStubs/Sources/NSURLSession/OHHTTPStubsMethodSwizzling.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/OHHTTPStubs/OHHTTPStubs/Sources/NSURLSession/OHHTTPStubsMethodSwizzling.m -------------------------------------------------------------------------------- /Example/Pods/OHHTTPStubs/OHHTTPStubs/Sources/OHHTTPStubs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/OHHTTPStubs/OHHTTPStubs/Sources/OHHTTPStubs.h -------------------------------------------------------------------------------- /Example/Pods/OHHTTPStubs/OHHTTPStubs/Sources/OHHTTPStubs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/OHHTTPStubs/OHHTTPStubs/Sources/OHHTTPStubs.m -------------------------------------------------------------------------------- /Example/Pods/OHHTTPStubs/OHHTTPStubs/Sources/OHHTTPStubsResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/OHHTTPStubs/OHHTTPStubs/Sources/OHHTTPStubsResponse.h -------------------------------------------------------------------------------- /Example/Pods/OHHTTPStubs/OHHTTPStubs/Sources/OHHTTPStubsResponse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/OHHTTPStubs/OHHTTPStubs/Sources/OHHTTPStubsResponse.m -------------------------------------------------------------------------------- /Example/Pods/OHHTTPStubs/OHHTTPStubs/Sources/OHPathHelpers/OHPathHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/OHHTTPStubs/OHHTTPStubs/Sources/OHPathHelpers/OHPathHelpers.h -------------------------------------------------------------------------------- /Example/Pods/OHHTTPStubs/OHHTTPStubs/Sources/OHPathHelpers/OHPathHelpers.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/OHHTTPStubs/OHHTTPStubs/Sources/OHPathHelpers/OHPathHelpers.m -------------------------------------------------------------------------------- /Example/Pods/OHHTTPStubs/OHHTTPStubs/Sources/Swift/OHHTTPStubsSwift.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/OHHTTPStubs/OHHTTPStubs/Sources/Swift/OHHTTPStubsSwift.swift -------------------------------------------------------------------------------- /Example/Pods/OHHTTPStubs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/OHHTTPStubs/README.md -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Pods.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcshareddata/xcschemes/KZFileWatchers.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Pods.xcodeproj/xcshareddata/xcschemes/KZFileWatchers.xcscheme -------------------------------------------------------------------------------- /Example/Pods/Quick/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Quick/LICENSE -------------------------------------------------------------------------------- /Example/Pods/Quick/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Quick/README.md -------------------------------------------------------------------------------- /Example/Pods/Quick/Sources/Quick/Behavior.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Quick/Sources/Quick/Behavior.swift -------------------------------------------------------------------------------- /Example/Pods/Quick/Sources/Quick/Callsite.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Quick/Sources/Quick/Callsite.swift -------------------------------------------------------------------------------- /Example/Pods/Quick/Sources/Quick/Configuration/Configuration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Quick/Sources/Quick/Configuration/Configuration.swift -------------------------------------------------------------------------------- /Example/Pods/Quick/Sources/Quick/Configuration/QuickConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Quick/Sources/Quick/Configuration/QuickConfiguration.swift -------------------------------------------------------------------------------- /Example/Pods/Quick/Sources/Quick/DSL/DSL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Quick/Sources/Quick/DSL/DSL.swift -------------------------------------------------------------------------------- /Example/Pods/Quick/Sources/Quick/DSL/World+DSL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Quick/Sources/Quick/DSL/World+DSL.swift -------------------------------------------------------------------------------- /Example/Pods/Quick/Sources/Quick/ErrorUtility.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Quick/Sources/Quick/ErrorUtility.swift -------------------------------------------------------------------------------- /Example/Pods/Quick/Sources/Quick/Example.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Quick/Sources/Quick/Example.swift -------------------------------------------------------------------------------- /Example/Pods/Quick/Sources/Quick/ExampleGroup.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Quick/Sources/Quick/ExampleGroup.swift -------------------------------------------------------------------------------- /Example/Pods/Quick/Sources/Quick/ExampleMetadata.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Quick/Sources/Quick/ExampleMetadata.swift -------------------------------------------------------------------------------- /Example/Pods/Quick/Sources/Quick/Filter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Quick/Sources/Quick/Filter.swift -------------------------------------------------------------------------------- /Example/Pods/Quick/Sources/Quick/Hooks/Closures.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Quick/Sources/Quick/Hooks/Closures.swift -------------------------------------------------------------------------------- /Example/Pods/Quick/Sources/Quick/Hooks/ExampleHooks.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Quick/Sources/Quick/Hooks/ExampleHooks.swift -------------------------------------------------------------------------------- /Example/Pods/Quick/Sources/Quick/Hooks/HooksPhase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Quick/Sources/Quick/Hooks/HooksPhase.swift -------------------------------------------------------------------------------- /Example/Pods/Quick/Sources/Quick/Hooks/SuiteHooks.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Quick/Sources/Quick/Hooks/SuiteHooks.swift -------------------------------------------------------------------------------- /Example/Pods/Quick/Sources/Quick/NSBundle+CurrentTestBundle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Quick/Sources/Quick/NSBundle+CurrentTestBundle.swift -------------------------------------------------------------------------------- /Example/Pods/Quick/Sources/Quick/QuickSelectedTestSuiteBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Quick/Sources/Quick/QuickSelectedTestSuiteBuilder.swift -------------------------------------------------------------------------------- /Example/Pods/Quick/Sources/Quick/QuickTestSuite.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Quick/Sources/Quick/QuickTestSuite.swift -------------------------------------------------------------------------------- /Example/Pods/Quick/Sources/Quick/String+C99ExtendedIdentifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Quick/Sources/Quick/String+C99ExtendedIdentifier.swift -------------------------------------------------------------------------------- /Example/Pods/Quick/Sources/Quick/URL+FileName.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Quick/Sources/Quick/URL+FileName.swift -------------------------------------------------------------------------------- /Example/Pods/Quick/Sources/Quick/World.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Quick/Sources/Quick/World.swift -------------------------------------------------------------------------------- /Example/Pods/Quick/Sources/QuickObjectiveC/Configuration/QuickConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Quick/Sources/QuickObjectiveC/Configuration/QuickConfiguration.h -------------------------------------------------------------------------------- /Example/Pods/Quick/Sources/QuickObjectiveC/Configuration/QuickConfiguration.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Quick/Sources/QuickObjectiveC/Configuration/QuickConfiguration.m -------------------------------------------------------------------------------- /Example/Pods/Quick/Sources/QuickObjectiveC/DSL/QCKDSL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Quick/Sources/QuickObjectiveC/DSL/QCKDSL.h -------------------------------------------------------------------------------- /Example/Pods/Quick/Sources/QuickObjectiveC/DSL/QCKDSL.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Quick/Sources/QuickObjectiveC/DSL/QCKDSL.m -------------------------------------------------------------------------------- /Example/Pods/Quick/Sources/QuickObjectiveC/Quick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Quick/Sources/QuickObjectiveC/Quick.h -------------------------------------------------------------------------------- /Example/Pods/Quick/Sources/QuickObjectiveC/QuickSpec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Quick/Sources/QuickObjectiveC/QuickSpec.h -------------------------------------------------------------------------------- /Example/Pods/Quick/Sources/QuickObjectiveC/QuickSpec.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Quick/Sources/QuickObjectiveC/QuickSpec.m -------------------------------------------------------------------------------- /Example/Pods/Quick/Sources/QuickObjectiveC/XCTestSuite+QuickTestSuiteBuilder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Quick/Sources/QuickObjectiveC/XCTestSuite+QuickTestSuiteBuilder.m -------------------------------------------------------------------------------- /Example/Pods/Quick/Sources/QuickSpecBase/QuickSpecBase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Quick/Sources/QuickSpecBase/QuickSpecBase.m -------------------------------------------------------------------------------- /Example/Pods/Quick/Sources/QuickSpecBase/include/QuickSpecBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Quick/Sources/QuickSpecBase/include/QuickSpecBase.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/KZFileWatchers/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Target Support Files/KZFileWatchers/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/KZFileWatchers/KZFileWatchers-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Target Support Files/KZFileWatchers/KZFileWatchers-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/KZFileWatchers/KZFileWatchers-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Target Support Files/KZFileWatchers/KZFileWatchers-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/KZFileWatchers/KZFileWatchers-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Target Support Files/KZFileWatchers/KZFileWatchers-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/KZFileWatchers/KZFileWatchers-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Target Support Files/KZFileWatchers/KZFileWatchers-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/KZFileWatchers/KZFileWatchers.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Target Support Files/KZFileWatchers/KZFileWatchers.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/KZFileWatchers/KZFileWatchers.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Target Support Files/KZFileWatchers/KZFileWatchers.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/KZFileWatchers/KZFileWatchers.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Target Support Files/KZFileWatchers/KZFileWatchers.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/KZFileWatchers/KZFileWatchers.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Target Support Files/KZFileWatchers/KZFileWatchers.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Nimble/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Target Support Files/Nimble/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Nimble/Nimble-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Target Support Files/Nimble/Nimble-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Nimble/Nimble-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Target Support Files/Nimble/Nimble-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Nimble/Nimble-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Target Support Files/Nimble/Nimble-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Nimble/Nimble-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Target Support Files/Nimble/Nimble-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Nimble/Nimble.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Target Support Files/Nimble/Nimble.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Nimble/Nimble.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Target Support Files/Nimble/Nimble.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Nimble/Nimble.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Target Support Files/Nimble/Nimble.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Nimble/Nimble.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Target Support Files/Nimble/Nimble.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/OHHTTPStubs/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Target Support Files/OHHTTPStubs/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/OHHTTPStubs/OHHTTPStubs-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Target Support Files/OHHTTPStubs/OHHTTPStubs-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/OHHTTPStubs/OHHTTPStubs-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Target Support Files/OHHTTPStubs/OHHTTPStubs-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/OHHTTPStubs/OHHTTPStubs-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Target Support Files/OHHTTPStubs/OHHTTPStubs-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/OHHTTPStubs/OHHTTPStubs-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Target Support Files/OHHTTPStubs/OHHTTPStubs-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/OHHTTPStubs/OHHTTPStubs.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Target Support Files/OHHTTPStubs/OHHTTPStubs.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/OHHTTPStubs/OHHTTPStubs.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Target Support Files/OHHTTPStubs/OHHTTPStubs.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/OHHTTPStubs/OHHTTPStubs.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Target Support Files/OHHTTPStubs/OHHTTPStubs.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/OHHTTPStubs/OHHTTPStubs.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Target Support Files/OHHTTPStubs/OHHTTPStubs.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-KZFileWatchers_Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Target Support Files/Pods-KZFileWatchers_Example/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-KZFileWatchers_Example/Pods-KZFileWatchers_Example-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Target Support Files/Pods-KZFileWatchers_Example/Pods-KZFileWatchers_Example-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-KZFileWatchers_Example/Pods-KZFileWatchers_Example-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Target Support Files/Pods-KZFileWatchers_Example/Pods-KZFileWatchers_Example-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-KZFileWatchers_Example/Pods-KZFileWatchers_Example-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Target Support Files/Pods-KZFileWatchers_Example/Pods-KZFileWatchers_Example-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-KZFileWatchers_Example/Pods-KZFileWatchers_Example-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Target Support Files/Pods-KZFileWatchers_Example/Pods-KZFileWatchers_Example-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-KZFileWatchers_Example/Pods-KZFileWatchers_Example-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Target Support Files/Pods-KZFileWatchers_Example/Pods-KZFileWatchers_Example-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-KZFileWatchers_Example/Pods-KZFileWatchers_Example-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Target Support Files/Pods-KZFileWatchers_Example/Pods-KZFileWatchers_Example-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-KZFileWatchers_Example/Pods-KZFileWatchers_Example-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Target Support Files/Pods-KZFileWatchers_Example/Pods-KZFileWatchers_Example-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-KZFileWatchers_Example/Pods-KZFileWatchers_Example.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Target Support Files/Pods-KZFileWatchers_Example/Pods-KZFileWatchers_Example.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-KZFileWatchers_Example/Pods-KZFileWatchers_Example.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Target Support Files/Pods-KZFileWatchers_Example/Pods-KZFileWatchers_Example.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-KZFileWatchers_Example/Pods-KZFileWatchers_Example.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Target Support Files/Pods-KZFileWatchers_Example/Pods-KZFileWatchers_Example.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-KZFileWatchers_Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Target Support Files/Pods-KZFileWatchers_Tests/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-KZFileWatchers_Tests/Pods-KZFileWatchers_Tests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Target Support Files/Pods-KZFileWatchers_Tests/Pods-KZFileWatchers_Tests-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-KZFileWatchers_Tests/Pods-KZFileWatchers_Tests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Target Support Files/Pods-KZFileWatchers_Tests/Pods-KZFileWatchers_Tests-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-KZFileWatchers_Tests/Pods-KZFileWatchers_Tests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Target Support Files/Pods-KZFileWatchers_Tests/Pods-KZFileWatchers_Tests-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-KZFileWatchers_Tests/Pods-KZFileWatchers_Tests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Target Support Files/Pods-KZFileWatchers_Tests/Pods-KZFileWatchers_Tests-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-KZFileWatchers_Tests/Pods-KZFileWatchers_Tests-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Target Support Files/Pods-KZFileWatchers_Tests/Pods-KZFileWatchers_Tests-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-KZFileWatchers_Tests/Pods-KZFileWatchers_Tests-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Target Support Files/Pods-KZFileWatchers_Tests/Pods-KZFileWatchers_Tests-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-KZFileWatchers_Tests/Pods-KZFileWatchers_Tests-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Target Support Files/Pods-KZFileWatchers_Tests/Pods-KZFileWatchers_Tests-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-KZFileWatchers_Tests/Pods-KZFileWatchers_Tests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Target Support Files/Pods-KZFileWatchers_Tests/Pods-KZFileWatchers_Tests.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-KZFileWatchers_Tests/Pods-KZFileWatchers_Tests.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Target Support Files/Pods-KZFileWatchers_Tests/Pods-KZFileWatchers_Tests.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-KZFileWatchers_Tests/Pods-KZFileWatchers_Tests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Target Support Files/Pods-KZFileWatchers_Tests/Pods-KZFileWatchers_Tests.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Quick/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Target Support Files/Quick/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Quick/Quick-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Target Support Files/Quick/Quick-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Quick/Quick-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Target Support Files/Quick/Quick-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Quick/Quick-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Target Support Files/Quick/Quick-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Quick/Quick-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Target Support Files/Quick/Quick-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Quick/Quick.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Target Support Files/Quick/Quick.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Quick/Quick.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Target Support Files/Quick/Quick.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Quick/Quick.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Target Support Files/Quick/Quick.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Quick/Quick.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Pods/Target Support Files/Quick/Quick.xcconfig -------------------------------------------------------------------------------- /Example/Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Tests/Info.plist -------------------------------------------------------------------------------- /Example/Tests/LocalSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Tests/LocalSpec.swift -------------------------------------------------------------------------------- /Example/Tests/RemoteSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Example/Tests/RemoteSpec.swift -------------------------------------------------------------------------------- /Funding.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Funding.yml -------------------------------------------------------------------------------- /Images/Demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Images/Demo.gif -------------------------------------------------------------------------------- /KZFileWatchers.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/KZFileWatchers.podspec -------------------------------------------------------------------------------- /KZFileWatchers/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /KZFileWatchers/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /KZFileWatchers/Classes/Common.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/KZFileWatchers/Classes/Common.swift -------------------------------------------------------------------------------- /KZFileWatchers/Classes/Local/Local.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/KZFileWatchers/Classes/Local/Local.swift -------------------------------------------------------------------------------- /KZFileWatchers/Classes/Remote/Remote.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/KZFileWatchers/Classes/Remote/Remote.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/LICENSE -------------------------------------------------------------------------------- /ObjcWrappers/FileWatcherProtocols.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/ObjcWrappers/FileWatcherProtocols.swift -------------------------------------------------------------------------------- /ObjcWrappers/LocalFileWatcher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/ObjcWrappers/LocalFileWatcher.swift -------------------------------------------------------------------------------- /ObjcWrappers/RefreshResultType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/ObjcWrappers/RefreshResultType.swift -------------------------------------------------------------------------------- /ObjcWrappers/RemoteFileWatcher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/ObjcWrappers/RemoteFileWatcher.swift -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/KZFileWatchers/HEAD/README.md -------------------------------------------------------------------------------- /Sources/KZFileWatchers: -------------------------------------------------------------------------------- 1 | ../KZFileWatchers/Classes/ -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj --------------------------------------------------------------------------------