├── .gitignore ├── .idea ├── .name ├── modules.xml ├── runConfigurations │ ├── TyphoonSwift_iOS.xml │ └── TyphoonSwift_macOS.xml ├── typhoon-swift.iml ├── vcs.xml ├── workspace.xml └── xcode.xml ├── Dependencies ├── Package.swift ├── Packages │ ├── Clang_C-1.0.2 │ │ ├── BuildSystem.h │ │ ├── CXCompilationDatabase.h │ │ ├── CXErrorCode.h │ │ ├── CXString.h │ │ ├── Documentation.h │ │ ├── Index.h │ │ ├── Makefile │ │ ├── Package.swift │ │ ├── Platform.h │ │ └── module.modulemap │ ├── Commandant-0.11.2 │ │ ├── .gitignore │ │ ├── .gitmodules │ │ ├── .swift-version │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── Cartfile │ │ ├── Cartfile.private │ │ ├── Cartfile.resolved │ │ ├── Carthage │ │ │ └── Checkouts │ │ │ │ ├── Nimble │ │ │ │ ├── .gitignore │ │ │ │ ├── .swift-version │ │ │ │ ├── .travis.yml │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ ├── Gemfile │ │ │ │ ├── Gemfile.lock │ │ │ │ ├── LICENSE.md │ │ │ │ ├── Nimble.podspec │ │ │ │ ├── Nimble.xcodeproj │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ ├── project.xcworkspace │ │ │ │ │ │ └── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ └── xcschemes │ │ │ │ │ │ ├── Nimble-iOS.xcscheme │ │ │ │ │ │ ├── Nimble-macOS.xcscheme │ │ │ │ │ │ └── Nimble-tvOS.xcscheme │ │ │ │ ├── Package.swift │ │ │ │ ├── README.md │ │ │ │ ├── Sources │ │ │ │ │ ├── Nimble │ │ │ │ │ │ ├── Adapters │ │ │ │ │ │ │ ├── AdapterProtocols.swift │ │ │ │ │ │ │ ├── AssertionDispatcher.swift │ │ │ │ │ │ │ ├── AssertionRecorder.swift │ │ │ │ │ │ │ ├── NMBExpectation.swift │ │ │ │ │ │ │ ├── NMBObjCMatcher.swift │ │ │ │ │ │ │ ├── NimbleEnvironment.swift │ │ │ │ │ │ │ ├── NimbleXCTestHandler.swift │ │ │ │ │ │ │ └── NonObjectiveC │ │ │ │ │ │ │ │ └── ExceptionCapture.swift │ │ │ │ │ │ ├── DSL+Wait.swift │ │ │ │ │ │ ├── DSL.swift │ │ │ │ │ │ ├── Expectation.swift │ │ │ │ │ │ ├── Expression.swift │ │ │ │ │ │ ├── FailureMessage.swift │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ ├── Matchers │ │ │ │ │ │ │ ├── AllPass.swift │ │ │ │ │ │ │ ├── AsyncMatcherWrapper.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 │ │ │ │ │ │ │ ├── EndWith.swift │ │ │ │ │ │ │ ├── Equal.swift │ │ │ │ │ │ │ ├── HaveCount.swift │ │ │ │ │ │ │ ├── Match.swift │ │ │ │ │ │ │ ├── MatchError.swift │ │ │ │ │ │ │ ├── MatcherFunc.swift │ │ │ │ │ │ │ ├── MatcherProtocols.swift │ │ │ │ │ │ │ ├── PostNotification.swift │ │ │ │ │ │ │ ├── RaisesException.swift │ │ │ │ │ │ │ ├── SatisfyAnyOf.swift │ │ │ │ │ │ │ └── ThrowError.swift │ │ │ │ │ │ ├── Nimble.h │ │ │ │ │ │ └── Utils │ │ │ │ │ │ │ ├── Async.swift │ │ │ │ │ │ │ ├── Errors.swift │ │ │ │ │ │ │ ├── Functional.swift │ │ │ │ │ │ │ ├── SourceLocation.swift │ │ │ │ │ │ │ └── Stringers.swift │ │ │ │ │ └── NimbleObjectiveC │ │ │ │ │ │ ├── CurrentTestCaseTracker.h │ │ │ │ │ │ ├── DSL.h │ │ │ │ │ │ ├── DSL.m │ │ │ │ │ │ ├── NMBExceptionCapture.h │ │ │ │ │ │ ├── NMBExceptionCapture.m │ │ │ │ │ │ ├── NMBStringify.h │ │ │ │ │ │ ├── NMBStringify.m │ │ │ │ │ │ └── XCTestObservationCenter+Register.m │ │ │ │ ├── Tests │ │ │ │ │ ├── LinuxMain.swift │ │ │ │ │ └── NimbleTests │ │ │ │ │ │ ├── AsynchronousTest.swift │ │ │ │ │ │ ├── Helpers │ │ │ │ │ │ ├── ObjectWithLazyProperty.swift │ │ │ │ │ │ ├── XCTestCaseProvider.swift │ │ │ │ │ │ └── utils.swift │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ ├── LinuxSupport.swift │ │ │ │ │ │ ├── Matchers │ │ │ │ │ │ ├── AllPassTest.swift │ │ │ │ │ │ ├── BeAKindOfTest.swift │ │ │ │ │ │ ├── BeAnInstanceOfTest.swift │ │ │ │ │ │ ├── BeCloseToTest.swift │ │ │ │ │ │ ├── BeEmptyTest.swift │ │ │ │ │ │ ├── BeGreaterThanOrEqualToTest.swift │ │ │ │ │ │ ├── BeGreaterThanTest.swift │ │ │ │ │ │ ├── BeIdenticalToObjectTest.swift │ │ │ │ │ │ ├── BeIdenticalToTest.swift │ │ │ │ │ │ ├── BeLessThanOrEqualToTest.swift │ │ │ │ │ │ ├── BeLessThanTest.swift │ │ │ │ │ │ ├── BeLogicalTest.swift │ │ │ │ │ │ ├── BeNilTest.swift │ │ │ │ │ │ ├── BeVoidTest.swift │ │ │ │ │ │ ├── BeginWithTest.swift │ │ │ │ │ │ ├── ContainTest.swift │ │ │ │ │ │ ├── EndWithTest.swift │ │ │ │ │ │ ├── EqualTest.swift │ │ │ │ │ │ ├── HaveCountTest.swift │ │ │ │ │ │ ├── MatchErrorTest.swift │ │ │ │ │ │ ├── MatchTest.swift │ │ │ │ │ │ ├── PostNotificationTest.swift │ │ │ │ │ │ ├── RaisesExceptionTest.swift │ │ │ │ │ │ ├── SatisfyAnyOfTest.swift │ │ │ │ │ │ └── ThrowErrorTest.swift │ │ │ │ │ │ ├── SynchronousTests.swift │ │ │ │ │ │ ├── UserDescriptionTest.swift │ │ │ │ │ │ └── objc │ │ │ │ │ │ ├── NimbleSpecHelper.h │ │ │ │ │ │ ├── ObjCAllPassTest.m │ │ │ │ │ │ ├── ObjCAsyncTest.m │ │ │ │ │ │ ├── ObjCBeAnInstanceOfTest.m │ │ │ │ │ │ ├── ObjCBeCloseToTest.m │ │ │ │ │ │ ├── ObjCBeEmptyTest.m │ │ │ │ │ │ ├── ObjCBeFalseTest.m │ │ │ │ │ │ ├── ObjCBeFalsyTest.m │ │ │ │ │ │ ├── ObjCBeGreaterThanOrEqualToTest.m │ │ │ │ │ │ ├── ObjCBeGreaterThanTest.m │ │ │ │ │ │ ├── ObjCBeIdenticalToTest.m │ │ │ │ │ │ ├── ObjCBeKindOfTest.m │ │ │ │ │ │ ├── ObjCBeLessThanOrEqualToTest.m │ │ │ │ │ │ ├── ObjCBeLessThanTest.m │ │ │ │ │ │ ├── ObjCBeNilTest.m │ │ │ │ │ │ ├── ObjCBeTrueTest.m │ │ │ │ │ │ ├── ObjCBeTruthyTest.m │ │ │ │ │ │ ├── ObjCBeginWithTest.m │ │ │ │ │ │ ├── ObjCContainTest.m │ │ │ │ │ │ ├── ObjCEndWithTest.m │ │ │ │ │ │ ├── ObjCEqualTest.m │ │ │ │ │ │ ├── ObjCHaveCount.m │ │ │ │ │ │ ├── ObjCMatchTest.m │ │ │ │ │ │ ├── ObjCRaiseExceptionTest.m │ │ │ │ │ │ ├── ObjCSatisfyAnyOfTest.m │ │ │ │ │ │ ├── ObjCSyncTest.m │ │ │ │ │ │ ├── ObjCUserDescriptionTest.m │ │ │ │ │ │ └── ObjcStringersTest.m │ │ │ │ ├── script │ │ │ │ │ └── release │ │ │ │ └── test │ │ │ │ ├── Quick │ │ │ │ ├── .gitignore │ │ │ │ ├── .gitmodules │ │ │ │ ├── .swift-version │ │ │ │ ├── .travis.yml │ │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ ├── Documentation │ │ │ │ │ ├── README.md │ │ │ │ │ ├── en-us │ │ │ │ │ │ ├── ArrangeActAssert.md │ │ │ │ │ │ ├── BehavioralTesting.md │ │ │ │ │ │ ├── ConfiguringQuick.md │ │ │ │ │ │ ├── InstallingFileTemplates.md │ │ │ │ │ │ ├── InstallingQuick.md │ │ │ │ │ │ ├── MoreResources.md │ │ │ │ │ │ ├── NimbleAssertions.md │ │ │ │ │ │ ├── QuickExamplesAndGroups.md │ │ │ │ │ │ ├── QuickInObjectiveC.md │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── SettingUpYourXcodeProject.md │ │ │ │ │ │ ├── SharedExamples.md │ │ │ │ │ │ ├── TestUsingTestDoubles.md │ │ │ │ │ │ ├── TestingApps.md │ │ │ │ │ │ └── Troubleshooting.md │ │ │ │ │ ├── ja │ │ │ │ │ │ ├── ArrangeActAssert.md │ │ │ │ │ │ ├── BehavioralTesting.md │ │ │ │ │ │ ├── ConfiguringQuick.md │ │ │ │ │ │ ├── InstallingFileTemplates.md │ │ │ │ │ │ ├── InstallingQuick.md │ │ │ │ │ │ ├── MoreResources.md │ │ │ │ │ │ ├── NimbleAssertions.md │ │ │ │ │ │ ├── QuickExamplesAndGroups.md │ │ │ │ │ │ ├── QuickInObjectiveC.md │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── SettingUpYourXcodeProject.md │ │ │ │ │ │ ├── SharedExamples.md │ │ │ │ │ │ ├── TestUsingTestDoubles.md │ │ │ │ │ │ ├── TestingApps.md │ │ │ │ │ │ └── Troubleshooting.md │ │ │ │ │ └── zh-cn │ │ │ │ │ │ ├── ArrangeActAssert.md │ │ │ │ │ │ ├── BehavioralTesting.md │ │ │ │ │ │ ├── ConfiguringQuick.md │ │ │ │ │ │ ├── InstallingFileTemplates.md │ │ │ │ │ │ ├── InstallingQuick.md │ │ │ │ │ │ ├── MoreResources.md │ │ │ │ │ │ ├── NimbleAssertions.md │ │ │ │ │ │ ├── QuickExamplesAndGroups.md │ │ │ │ │ │ ├── QuickInObjectiveC.md │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── SettingUpYourXcodeProject.md │ │ │ │ │ │ ├── TestUsingTestDoubles.md │ │ │ │ │ │ ├── TestingApps.md │ │ │ │ │ │ └── Troubleshooting.md │ │ │ │ ├── Externals │ │ │ │ │ └── Nimble │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── .swift-version │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ │ │ ├── Gemfile │ │ │ │ │ │ ├── Gemfile.lock │ │ │ │ │ │ ├── LICENSE.md │ │ │ │ │ │ ├── Nimble.podspec │ │ │ │ │ │ ├── Nimble.xcodeproj │ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ │ ├── project.xcworkspace │ │ │ │ │ │ │ └── contents.xcworkspacedata │ │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ │ └── xcschemes │ │ │ │ │ │ │ ├── Nimble-iOS.xcscheme │ │ │ │ │ │ │ ├── Nimble-macOS.xcscheme │ │ │ │ │ │ │ └── Nimble-tvOS.xcscheme │ │ │ │ │ │ ├── Package.swift │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── Sources │ │ │ │ │ │ ├── Nimble │ │ │ │ │ │ │ ├── Adapters │ │ │ │ │ │ │ │ ├── AdapterProtocols.swift │ │ │ │ │ │ │ │ ├── AssertionDispatcher.swift │ │ │ │ │ │ │ │ ├── AssertionRecorder.swift │ │ │ │ │ │ │ │ ├── NMBExpectation.swift │ │ │ │ │ │ │ │ ├── NMBObjCMatcher.swift │ │ │ │ │ │ │ │ ├── NimbleEnvironment.swift │ │ │ │ │ │ │ │ ├── NimbleXCTestHandler.swift │ │ │ │ │ │ │ │ └── NonObjectiveC │ │ │ │ │ │ │ │ │ └── ExceptionCapture.swift │ │ │ │ │ │ │ ├── DSL+Wait.swift │ │ │ │ │ │ │ ├── DSL.swift │ │ │ │ │ │ │ ├── Expectation.swift │ │ │ │ │ │ │ ├── Expression.swift │ │ │ │ │ │ │ ├── FailureMessage.swift │ │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ │ ├── Matchers │ │ │ │ │ │ │ │ ├── AllPass.swift │ │ │ │ │ │ │ │ ├── AsyncMatcherWrapper.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 │ │ │ │ │ │ │ │ ├── EndWith.swift │ │ │ │ │ │ │ │ ├── Equal.swift │ │ │ │ │ │ │ │ ├── HaveCount.swift │ │ │ │ │ │ │ │ ├── Match.swift │ │ │ │ │ │ │ │ ├── MatchError.swift │ │ │ │ │ │ │ │ ├── MatcherFunc.swift │ │ │ │ │ │ │ │ ├── MatcherProtocols.swift │ │ │ │ │ │ │ │ ├── PostNotification.swift │ │ │ │ │ │ │ │ ├── RaisesException.swift │ │ │ │ │ │ │ │ ├── SatisfyAnyOf.swift │ │ │ │ │ │ │ │ └── ThrowError.swift │ │ │ │ │ │ │ ├── Nimble.h │ │ │ │ │ │ │ └── Utils │ │ │ │ │ │ │ │ ├── Async.swift │ │ │ │ │ │ │ │ ├── Errors.swift │ │ │ │ │ │ │ │ ├── Functional.swift │ │ │ │ │ │ │ │ ├── SourceLocation.swift │ │ │ │ │ │ │ │ └── Stringers.swift │ │ │ │ │ │ └── NimbleObjectiveC │ │ │ │ │ │ │ ├── CurrentTestCaseTracker.h │ │ │ │ │ │ │ ├── DSL.h │ │ │ │ │ │ │ ├── DSL.m │ │ │ │ │ │ │ ├── NMBExceptionCapture.h │ │ │ │ │ │ │ ├── NMBExceptionCapture.m │ │ │ │ │ │ │ ├── NMBStringify.h │ │ │ │ │ │ │ ├── NMBStringify.m │ │ │ │ │ │ │ └── XCTestObservationCenter+Register.m │ │ │ │ │ │ ├── Tests │ │ │ │ │ │ ├── LinuxMain.swift │ │ │ │ │ │ └── NimbleTests │ │ │ │ │ │ │ ├── AsynchronousTest.swift │ │ │ │ │ │ │ ├── Helpers │ │ │ │ │ │ │ ├── ObjectWithLazyProperty.swift │ │ │ │ │ │ │ ├── XCTestCaseProvider.swift │ │ │ │ │ │ │ └── utils.swift │ │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ │ ├── LinuxSupport.swift │ │ │ │ │ │ │ ├── Matchers │ │ │ │ │ │ │ ├── AllPassTest.swift │ │ │ │ │ │ │ ├── BeAKindOfTest.swift │ │ │ │ │ │ │ ├── BeAnInstanceOfTest.swift │ │ │ │ │ │ │ ├── BeCloseToTest.swift │ │ │ │ │ │ │ ├── BeEmptyTest.swift │ │ │ │ │ │ │ ├── BeGreaterThanOrEqualToTest.swift │ │ │ │ │ │ │ ├── BeGreaterThanTest.swift │ │ │ │ │ │ │ ├── BeIdenticalToObjectTest.swift │ │ │ │ │ │ │ ├── BeIdenticalToTest.swift │ │ │ │ │ │ │ ├── BeLessThanOrEqualToTest.swift │ │ │ │ │ │ │ ├── BeLessThanTest.swift │ │ │ │ │ │ │ ├── BeLogicalTest.swift │ │ │ │ │ │ │ ├── BeNilTest.swift │ │ │ │ │ │ │ ├── BeVoidTest.swift │ │ │ │ │ │ │ ├── BeginWithTest.swift │ │ │ │ │ │ │ ├── ContainTest.swift │ │ │ │ │ │ │ ├── EndWithTest.swift │ │ │ │ │ │ │ ├── EqualTest.swift │ │ │ │ │ │ │ ├── HaveCountTest.swift │ │ │ │ │ │ │ ├── MatchErrorTest.swift │ │ │ │ │ │ │ ├── MatchTest.swift │ │ │ │ │ │ │ ├── PostNotificationTest.swift │ │ │ │ │ │ │ ├── RaisesExceptionTest.swift │ │ │ │ │ │ │ ├── SatisfyAnyOfTest.swift │ │ │ │ │ │ │ └── ThrowErrorTest.swift │ │ │ │ │ │ │ ├── SynchronousTests.swift │ │ │ │ │ │ │ ├── UserDescriptionTest.swift │ │ │ │ │ │ │ └── objc │ │ │ │ │ │ │ ├── NimbleSpecHelper.h │ │ │ │ │ │ │ ├── ObjCAllPassTest.m │ │ │ │ │ │ │ ├── ObjCAsyncTest.m │ │ │ │ │ │ │ ├── ObjCBeAnInstanceOfTest.m │ │ │ │ │ │ │ ├── ObjCBeCloseToTest.m │ │ │ │ │ │ │ ├── ObjCBeEmptyTest.m │ │ │ │ │ │ │ ├── ObjCBeFalseTest.m │ │ │ │ │ │ │ ├── ObjCBeFalsyTest.m │ │ │ │ │ │ │ ├── ObjCBeGreaterThanOrEqualToTest.m │ │ │ │ │ │ │ ├── ObjCBeGreaterThanTest.m │ │ │ │ │ │ │ ├── ObjCBeIdenticalToTest.m │ │ │ │ │ │ │ ├── ObjCBeKindOfTest.m │ │ │ │ │ │ │ ├── ObjCBeLessThanOrEqualToTest.m │ │ │ │ │ │ │ ├── ObjCBeLessThanTest.m │ │ │ │ │ │ │ ├── ObjCBeNilTest.m │ │ │ │ │ │ │ ├── ObjCBeTrueTest.m │ │ │ │ │ │ │ ├── ObjCBeTruthyTest.m │ │ │ │ │ │ │ ├── ObjCBeginWithTest.m │ │ │ │ │ │ │ ├── ObjCContainTest.m │ │ │ │ │ │ │ ├── ObjCEndWithTest.m │ │ │ │ │ │ │ ├── ObjCEqualTest.m │ │ │ │ │ │ │ ├── ObjCHaveCount.m │ │ │ │ │ │ │ ├── ObjCMatchTest.m │ │ │ │ │ │ │ ├── ObjCRaiseExceptionTest.m │ │ │ │ │ │ │ ├── ObjCSatisfyAnyOfTest.m │ │ │ │ │ │ │ ├── ObjCSyncTest.m │ │ │ │ │ │ │ ├── ObjCUserDescriptionTest.m │ │ │ │ │ │ │ └── ObjcStringersTest.m │ │ │ │ │ │ ├── script │ │ │ │ │ │ └── release │ │ │ │ │ │ └── test │ │ │ │ ├── Gemfile │ │ │ │ ├── Gemfile.lock │ │ │ │ ├── LICENSE │ │ │ │ ├── Package.swift │ │ │ │ ├── Quick Templates │ │ │ │ │ ├── Quick Configuration Class.xctemplate │ │ │ │ │ │ ├── Objective-C │ │ │ │ │ │ │ ├── ___FILEBASENAME___.h │ │ │ │ │ │ │ └── ___FILEBASENAME___.m │ │ │ │ │ │ ├── Swift │ │ │ │ │ │ │ └── ___FILEBASENAME___.swift │ │ │ │ │ │ ├── TemplateIcon.icns │ │ │ │ │ │ └── TemplateInfo.plist │ │ │ │ │ └── Quick Spec Class.xctemplate │ │ │ │ │ │ ├── Objective-C │ │ │ │ │ │ └── ___FILEBASENAME___.m │ │ │ │ │ │ ├── Swift │ │ │ │ │ │ └── ___FILEBASENAME___.swift │ │ │ │ │ │ ├── TemplateIcon.icns │ │ │ │ │ │ └── TemplateInfo.plist │ │ │ │ ├── Quick.podspec │ │ │ │ ├── Quick.xcodeproj │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ ├── project.xcworkspace │ │ │ │ │ │ └── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ └── xcschemes │ │ │ │ │ │ ├── Quick-iOS.xcscheme │ │ │ │ │ │ ├── Quick-macOS.xcscheme │ │ │ │ │ │ └── Quick-tvOS.xcscheme │ │ │ │ ├── Quick.xcworkspace │ │ │ │ │ └── contents.xcworkspacedata │ │ │ │ ├── README.md │ │ │ │ ├── Rakefile │ │ │ │ ├── Sources │ │ │ │ │ ├── Quick │ │ │ │ │ │ ├── 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 │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ ├── NSBundle+CurrentTestBundle.swift │ │ │ │ │ │ ├── QuickMain.swift │ │ │ │ │ │ ├── QuickSelectedTestSuiteBuilder.swift │ │ │ │ │ │ ├── QuickSpec.swift │ │ │ │ │ │ ├── QuickTestSuite.swift │ │ │ │ │ │ ├── String+FileName.swift │ │ │ │ │ │ └── World.swift │ │ │ │ │ └── QuickObjectiveC │ │ │ │ │ │ ├── Configuration │ │ │ │ │ │ ├── QuickConfiguration.h │ │ │ │ │ │ └── QuickConfiguration.m │ │ │ │ │ │ ├── DSL │ │ │ │ │ │ ├── QCKDSL.h │ │ │ │ │ │ ├── QCKDSL.m │ │ │ │ │ │ └── World+DSL.h │ │ │ │ │ │ ├── NSString+QCKSelectorName.h │ │ │ │ │ │ ├── NSString+QCKSelectorName.m │ │ │ │ │ │ ├── Quick.h │ │ │ │ │ │ ├── QuickSpec.h │ │ │ │ │ │ ├── QuickSpec.m │ │ │ │ │ │ ├── World.h │ │ │ │ │ │ └── XCTestSuite+QuickTestSuiteBuilder.m │ │ │ │ ├── Tests │ │ │ │ │ ├── LinuxMain.swift │ │ │ │ │ └── QuickTests │ │ │ │ │ │ ├── QuickFocusedTests │ │ │ │ │ │ ├── FocusedTests+ObjC.m │ │ │ │ │ │ ├── FocusedTests.swift │ │ │ │ │ │ └── Info.plist │ │ │ │ │ │ ├── QuickTestHelpers │ │ │ │ │ │ ├── SpecRunner.swift │ │ │ │ │ │ ├── TestRun.swift │ │ │ │ │ │ └── XCTestCaseProvider.swift │ │ │ │ │ │ └── QuickTests │ │ │ │ │ │ ├── Fixtures │ │ │ │ │ │ └── FunctionalTests_SharedExamplesTests_SharedExamples.swift │ │ │ │ │ │ ├── FunctionalTests │ │ │ │ │ │ ├── AfterEachTests.swift │ │ │ │ │ │ ├── AfterSuiteTests.swift │ │ │ │ │ │ ├── BeforeEachTests.swift │ │ │ │ │ │ ├── BeforeSuiteTests.swift │ │ │ │ │ │ ├── Configuration │ │ │ │ │ │ │ ├── AfterEach │ │ │ │ │ │ │ │ ├── Configuration+AfterEach.swift │ │ │ │ │ │ │ │ └── Configuration+AfterEachTests.swift │ │ │ │ │ │ │ └── BeforeEach │ │ │ │ │ │ │ │ ├── Configuration+BeforeEach.swift │ │ │ │ │ │ │ │ └── Configuration+BeforeEachTests.swift │ │ │ │ │ │ ├── ContextTests.swift │ │ │ │ │ │ ├── CrossReferencingSpecs.swift │ │ │ │ │ │ ├── DescribeTests.swift │ │ │ │ │ │ ├── ItTests.swift │ │ │ │ │ │ ├── ObjC │ │ │ │ │ │ │ ├── AfterEachTests+ObjC.m │ │ │ │ │ │ │ ├── AfterSuiteTests+ObjC.m │ │ │ │ │ │ │ ├── BeforeEachTests+ObjC.m │ │ │ │ │ │ │ ├── BeforeSuiteTests+ObjC.m │ │ │ │ │ │ │ ├── FailureTests+ObjC.m │ │ │ │ │ │ │ ├── FailureUsingXCTAssertTests+ObjC.m │ │ │ │ │ │ │ ├── ItTests+ObjC.m │ │ │ │ │ │ │ ├── PendingTests+ObjC.m │ │ │ │ │ │ │ ├── SharedExamples+BeforeEachTests+ObjC.m │ │ │ │ │ │ │ └── SharedExamplesTests+ObjC.m │ │ │ │ │ │ ├── PendingTests.swift │ │ │ │ │ │ ├── SharedExamples+BeforeEachTests.swift │ │ │ │ │ │ └── SharedExamplesTests.swift │ │ │ │ │ │ ├── Helpers │ │ │ │ │ │ ├── QCKSpecRunner.h │ │ │ │ │ │ ├── QCKSpecRunner.m │ │ │ │ │ │ ├── QuickSpec+QuickSpec_MethodList.h │ │ │ │ │ │ ├── QuickSpec+QuickSpec_MethodList.m │ │ │ │ │ │ ├── QuickTestsBridgingHeader.h │ │ │ │ │ │ ├── XCTestObservationCenter+QCKSuspendObservation.h │ │ │ │ │ │ └── XCTestObservationCenter+QCKSuspendObservation.m │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ └── QuickConfigurationTests.m │ │ │ │ └── script │ │ │ │ │ ├── release │ │ │ │ │ ├── travis-install-linux │ │ │ │ │ ├── travis-install-macos │ │ │ │ │ ├── travis-script-linux │ │ │ │ │ └── travis-script-macos │ │ │ │ ├── Result │ │ │ │ ├── .gitignore │ │ │ │ ├── .swift-version │ │ │ │ ├── .travis.yml │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ ├── LICENSE │ │ │ │ ├── Package.swift │ │ │ │ ├── README.md │ │ │ │ ├── Result.podspec │ │ │ │ ├── Result.xcodeproj │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ ├── project.xcworkspace │ │ │ │ │ │ └── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ └── xcschemes │ │ │ │ │ │ ├── Result-Mac.xcscheme │ │ │ │ │ │ ├── Result-iOS.xcscheme │ │ │ │ │ │ ├── Result-tvOS.xcscheme │ │ │ │ │ │ └── Result-watchOS.xcscheme │ │ │ │ ├── Result │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── Result.h │ │ │ │ │ ├── Result.swift │ │ │ │ │ └── ResultProtocol.swift │ │ │ │ └── Tests │ │ │ │ │ ├── LinuxMain.swift │ │ │ │ │ └── ResultTests │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── ResultTests.swift │ │ │ │ └── xcconfigs │ │ │ │ ├── .gitignore │ │ │ │ ├── Base │ │ │ │ ├── Common.xcconfig │ │ │ │ ├── Configurations │ │ │ │ │ ├── Debug.xcconfig │ │ │ │ │ ├── Profile.xcconfig │ │ │ │ │ ├── Release.xcconfig │ │ │ │ │ └── Test.xcconfig │ │ │ │ └── Targets │ │ │ │ │ ├── Application.xcconfig │ │ │ │ │ ├── Framework.xcconfig │ │ │ │ │ └── StaticLibrary.xcconfig │ │ │ │ ├── Mac OS X │ │ │ │ ├── Mac-Application.xcconfig │ │ │ │ ├── Mac-Base.xcconfig │ │ │ │ ├── Mac-DynamicLibrary.xcconfig │ │ │ │ ├── Mac-Framework.xcconfig │ │ │ │ └── Mac-StaticLibrary.xcconfig │ │ │ │ ├── README.md │ │ │ │ ├── iOS │ │ │ │ ├── iOS-Application.xcconfig │ │ │ │ ├── iOS-Base.xcconfig │ │ │ │ ├── iOS-Framework.xcconfig │ │ │ │ └── iOS-StaticLibrary.xcconfig │ │ │ │ ├── tvOS │ │ │ │ ├── tvOS-Application.xcconfig │ │ │ │ ├── tvOS-Base.xcconfig │ │ │ │ ├── tvOS-Framework.xcconfig │ │ │ │ └── tvOS-StaticLibrary.xcconfig │ │ │ │ └── watchOS │ │ │ │ ├── watchOS-Application.xcconfig │ │ │ │ ├── watchOS-Base.xcconfig │ │ │ │ ├── watchOS-Framework.xcconfig │ │ │ │ └── watchOS-StaticLibrary.xcconfig │ │ ├── Commandant.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── Commandant.xcscheme │ │ ├── Commandant.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ ├── LICENSE.md │ │ ├── Package.swift │ │ ├── README.md │ │ ├── Sources │ │ │ └── Commandant │ │ │ │ ├── Argument.swift │ │ │ │ ├── ArgumentParser.swift │ │ │ │ ├── ArgumentProtocol.swift │ │ │ │ ├── Command.swift │ │ │ │ ├── Commandant.h │ │ │ │ ├── Errors.swift │ │ │ │ ├── HelpCommand.swift │ │ │ │ ├── Info.plist │ │ │ │ ├── LinuxSupport.swift │ │ │ │ ├── Option.swift │ │ │ │ └── Switch.swift │ │ └── Tests │ │ │ ├── CommandantTests │ │ │ ├── CommandSpec.swift │ │ │ ├── Info.plist │ │ │ └── OptionSpec.swift │ │ │ └── LinuxMain.swift │ ├── PathKit-0.7.1 │ │ ├── .gitignore │ │ ├── .swift-version │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── Package.swift │ │ ├── PathKit.podspec │ │ ├── README.md │ │ ├── Sources │ │ │ └── PathKit.swift │ │ └── Tests │ │ │ ├── LinuxMain.swift │ │ │ └── PathKitTests │ │ │ ├── Fixtures │ │ │ ├── directory │ │ │ │ ├── child │ │ │ │ └── subdirectory │ │ │ │ │ └── child │ │ │ ├── file │ │ │ ├── hello │ │ │ ├── permissions │ │ │ │ ├── deletable │ │ │ │ ├── executable │ │ │ │ ├── readable │ │ │ │ └── writable │ │ │ └── symlinks │ │ │ │ ├── directory │ │ │ │ ├── file │ │ │ │ ├── same-dir │ │ │ │ └── swift │ │ │ ├── PathKitSpec.swift │ │ │ └── XCTest.swift │ ├── Result-3.0.0 │ │ ├── .gitignore │ │ ├── .swift-version │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── Package.swift │ │ ├── README.md │ │ ├── Result.podspec │ │ ├── Result.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ ├── Result-Mac.xcscheme │ │ │ │ ├── Result-iOS.xcscheme │ │ │ │ ├── Result-tvOS.xcscheme │ │ │ │ └── Result-watchOS.xcscheme │ │ ├── Result │ │ │ ├── Info.plist │ │ │ ├── Result.h │ │ │ ├── Result.swift │ │ │ └── ResultProtocol.swift │ │ └── Tests │ │ │ ├── LinuxMain.swift │ │ │ └── ResultTests │ │ │ ├── Info.plist │ │ │ └── ResultTests.swift │ ├── SWXMLHash-3.0.2 │ │ ├── .gitignore │ │ ├── .swift-version │ │ ├── .swiftlint.yml │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── Package.swift │ │ ├── README.md │ │ ├── Rakefile │ │ ├── SWXMLHash.podspec │ │ ├── SWXMLHash.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ ├── SWXMLHash OSX.xcscheme │ │ │ │ ├── SWXMLHash iOS.xcscheme │ │ │ │ ├── SWXMLHash tvOS.xcscheme │ │ │ │ └── SWXMLHash watchOS.xcscheme │ │ ├── SWXMLHash.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ ├── SWXMLHashPlayground.playground │ │ │ ├── contents.xcplayground │ │ │ └── section-1.swift │ │ ├── Scripts │ │ │ └── build.sh │ │ ├── Source │ │ │ ├── Info.plist │ │ │ ├── SWXMLHash+TypeConversion.swift │ │ │ ├── SWXMLHash.h │ │ │ └── SWXMLHash.swift │ │ └── Tests │ │ │ ├── LinuxMain.swift │ │ │ └── SWXMLHashTests │ │ │ ├── Info.plist │ │ │ ├── LazyTypesConversionTests.swift │ │ │ ├── LazyWhiteSpaceParsingTests.swift │ │ │ ├── LazyXMLParsingTests.swift │ │ │ ├── LinuxShims.swift │ │ │ ├── MixedTextWithXMLElementsTests.swift │ │ │ ├── SWXMLHashConfigTests.swift │ │ │ ├── TypeConversionArrayOfNonPrimitiveTypesTests.swift │ │ │ ├── TypeConversionBasicTypesTests.swift │ │ │ ├── TypeConversionComplexTypesTests.swift │ │ │ ├── TypeConversionPrimitypeTypesTests.swift │ │ │ ├── WhiteSpaceParsingTests.swift │ │ │ ├── XMLParsingTests.swift │ │ │ └── test.xml │ ├── SourceKit-1.0.1 │ │ ├── .gitignore │ │ ├── Package.swift │ │ ├── module.modulemap │ │ └── sourcekitd.h │ ├── SourceKitten-0.15.0 │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .gitmodules │ │ ├── .swift-version │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── Cartfile │ │ ├── Cartfile.private │ │ ├── Cartfile.resolved │ │ ├── Carthage │ │ │ └── Checkouts │ │ │ │ ├── Commandant │ │ │ │ ├── .Package.test.swift │ │ │ │ ├── .gitignore │ │ │ │ ├── .gitmodules │ │ │ │ ├── .swift-version │ │ │ │ ├── .travis.yml │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ ├── Cartfile │ │ │ │ ├── Cartfile.private │ │ │ │ ├── Cartfile.resolved │ │ │ │ ├── Carthage │ │ │ │ │ └── Checkouts │ │ │ │ │ │ ├── Nimble │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── .swift-version │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ │ │ ├── Gemfile │ │ │ │ │ │ ├── Gemfile.lock │ │ │ │ │ │ ├── LICENSE.md │ │ │ │ │ │ ├── Nimble.podspec │ │ │ │ │ │ ├── Nimble.xcodeproj │ │ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ │ │ ├── project.xcworkspace │ │ │ │ │ │ │ │ └── contents.xcworkspacedata │ │ │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ │ │ └── xcschemes │ │ │ │ │ │ │ │ ├── Nimble-iOS.xcscheme │ │ │ │ │ │ │ │ ├── Nimble-macOS.xcscheme │ │ │ │ │ │ │ │ └── Nimble-tvOS.xcscheme │ │ │ │ │ │ ├── Package.swift │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── Sources │ │ │ │ │ │ │ ├── Nimble │ │ │ │ │ │ │ │ ├── Adapters │ │ │ │ │ │ │ │ │ ├── AdapterProtocols.swift │ │ │ │ │ │ │ │ │ ├── AssertionDispatcher.swift │ │ │ │ │ │ │ │ │ ├── AssertionRecorder.swift │ │ │ │ │ │ │ │ │ ├── NMBExpectation.swift │ │ │ │ │ │ │ │ │ ├── NMBObjCMatcher.swift │ │ │ │ │ │ │ │ │ ├── NimbleEnvironment.swift │ │ │ │ │ │ │ │ │ ├── NimbleXCTestHandler.swift │ │ │ │ │ │ │ │ │ └── NonObjectiveC │ │ │ │ │ │ │ │ │ │ └── ExceptionCapture.swift │ │ │ │ │ │ │ │ ├── DSL+Wait.swift │ │ │ │ │ │ │ │ ├── DSL.swift │ │ │ │ │ │ │ │ ├── Expectation.swift │ │ │ │ │ │ │ │ ├── Expression.swift │ │ │ │ │ │ │ │ ├── FailureMessage.swift │ │ │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ │ │ ├── Matchers │ │ │ │ │ │ │ │ │ ├── AllPass.swift │ │ │ │ │ │ │ │ │ ├── AsyncMatcherWrapper.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 │ │ │ │ │ │ │ │ │ ├── EndWith.swift │ │ │ │ │ │ │ │ │ ├── Equal.swift │ │ │ │ │ │ │ │ │ ├── HaveCount.swift │ │ │ │ │ │ │ │ │ ├── Match.swift │ │ │ │ │ │ │ │ │ ├── MatchError.swift │ │ │ │ │ │ │ │ │ ├── MatcherFunc.swift │ │ │ │ │ │ │ │ │ ├── MatcherProtocols.swift │ │ │ │ │ │ │ │ │ ├── PostNotification.swift │ │ │ │ │ │ │ │ │ ├── RaisesException.swift │ │ │ │ │ │ │ │ │ ├── SatisfyAnyOf.swift │ │ │ │ │ │ │ │ │ └── ThrowError.swift │ │ │ │ │ │ │ │ ├── Nimble.h │ │ │ │ │ │ │ │ └── Utils │ │ │ │ │ │ │ │ │ ├── Async.swift │ │ │ │ │ │ │ │ │ ├── Errors.swift │ │ │ │ │ │ │ │ │ ├── Functional.swift │ │ │ │ │ │ │ │ │ ├── SourceLocation.swift │ │ │ │ │ │ │ │ │ └── Stringers.swift │ │ │ │ │ │ │ └── NimbleObjectiveC │ │ │ │ │ │ │ │ ├── CurrentTestCaseTracker.h │ │ │ │ │ │ │ │ ├── DSL.h │ │ │ │ │ │ │ │ ├── DSL.m │ │ │ │ │ │ │ │ ├── NMBExceptionCapture.h │ │ │ │ │ │ │ │ ├── NMBExceptionCapture.m │ │ │ │ │ │ │ │ ├── NMBStringify.h │ │ │ │ │ │ │ │ ├── NMBStringify.m │ │ │ │ │ │ │ │ └── XCTestObservationCenter+Register.m │ │ │ │ │ │ ├── Tests │ │ │ │ │ │ │ ├── LinuxMain.swift │ │ │ │ │ │ │ └── NimbleTests │ │ │ │ │ │ │ │ ├── AsynchronousTest.swift │ │ │ │ │ │ │ │ ├── Helpers │ │ │ │ │ │ │ │ ├── ObjectWithLazyProperty.swift │ │ │ │ │ │ │ │ ├── XCTestCaseProvider.swift │ │ │ │ │ │ │ │ └── utils.swift │ │ │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ │ │ ├── LinuxSupport.swift │ │ │ │ │ │ │ │ ├── Matchers │ │ │ │ │ │ │ │ ├── AllPassTest.swift │ │ │ │ │ │ │ │ ├── BeAKindOfTest.swift │ │ │ │ │ │ │ │ ├── BeAnInstanceOfTest.swift │ │ │ │ │ │ │ │ ├── BeCloseToTest.swift │ │ │ │ │ │ │ │ ├── BeEmptyTest.swift │ │ │ │ │ │ │ │ ├── BeGreaterThanOrEqualToTest.swift │ │ │ │ │ │ │ │ ├── BeGreaterThanTest.swift │ │ │ │ │ │ │ │ ├── BeIdenticalToObjectTest.swift │ │ │ │ │ │ │ │ ├── BeIdenticalToTest.swift │ │ │ │ │ │ │ │ ├── BeLessThanOrEqualToTest.swift │ │ │ │ │ │ │ │ ├── BeLessThanTest.swift │ │ │ │ │ │ │ │ ├── BeLogicalTest.swift │ │ │ │ │ │ │ │ ├── BeNilTest.swift │ │ │ │ │ │ │ │ ├── BeVoidTest.swift │ │ │ │ │ │ │ │ ├── BeginWithTest.swift │ │ │ │ │ │ │ │ ├── ContainTest.swift │ │ │ │ │ │ │ │ ├── EndWithTest.swift │ │ │ │ │ │ │ │ ├── EqualTest.swift │ │ │ │ │ │ │ │ ├── HaveCountTest.swift │ │ │ │ │ │ │ │ ├── MatchErrorTest.swift │ │ │ │ │ │ │ │ ├── MatchTest.swift │ │ │ │ │ │ │ │ ├── PostNotificationTest.swift │ │ │ │ │ │ │ │ ├── RaisesExceptionTest.swift │ │ │ │ │ │ │ │ ├── SatisfyAnyOfTest.swift │ │ │ │ │ │ │ │ └── ThrowErrorTest.swift │ │ │ │ │ │ │ │ ├── SynchronousTests.swift │ │ │ │ │ │ │ │ ├── UserDescriptionTest.swift │ │ │ │ │ │ │ │ └── objc │ │ │ │ │ │ │ │ ├── NimbleSpecHelper.h │ │ │ │ │ │ │ │ ├── ObjCAllPassTest.m │ │ │ │ │ │ │ │ ├── ObjCAsyncTest.m │ │ │ │ │ │ │ │ ├── ObjCBeAnInstanceOfTest.m │ │ │ │ │ │ │ │ ├── ObjCBeCloseToTest.m │ │ │ │ │ │ │ │ ├── ObjCBeEmptyTest.m │ │ │ │ │ │ │ │ ├── ObjCBeFalseTest.m │ │ │ │ │ │ │ │ ├── ObjCBeFalsyTest.m │ │ │ │ │ │ │ │ ├── ObjCBeGreaterThanOrEqualToTest.m │ │ │ │ │ │ │ │ ├── ObjCBeGreaterThanTest.m │ │ │ │ │ │ │ │ ├── ObjCBeIdenticalToTest.m │ │ │ │ │ │ │ │ ├── ObjCBeKindOfTest.m │ │ │ │ │ │ │ │ ├── ObjCBeLessThanOrEqualToTest.m │ │ │ │ │ │ │ │ ├── ObjCBeLessThanTest.m │ │ │ │ │ │ │ │ ├── ObjCBeNilTest.m │ │ │ │ │ │ │ │ ├── ObjCBeTrueTest.m │ │ │ │ │ │ │ │ ├── ObjCBeTruthyTest.m │ │ │ │ │ │ │ │ ├── ObjCBeginWithTest.m │ │ │ │ │ │ │ │ ├── ObjCContainTest.m │ │ │ │ │ │ │ │ ├── ObjCEndWithTest.m │ │ │ │ │ │ │ │ ├── ObjCEqualTest.m │ │ │ │ │ │ │ │ ├── ObjCHaveCount.m │ │ │ │ │ │ │ │ ├── ObjCMatchTest.m │ │ │ │ │ │ │ │ ├── ObjCRaiseExceptionTest.m │ │ │ │ │ │ │ │ ├── ObjCSatisfyAnyOfTest.m │ │ │ │ │ │ │ │ ├── ObjCSyncTest.m │ │ │ │ │ │ │ │ ├── ObjCUserDescriptionTest.m │ │ │ │ │ │ │ │ └── ObjcStringersTest.m │ │ │ │ │ │ ├── script │ │ │ │ │ │ │ └── release │ │ │ │ │ │ └── test │ │ │ │ │ │ ├── Quick │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── .gitmodules │ │ │ │ │ │ ├── .swift-version │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ │ │ ├── Documentation │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── en-us │ │ │ │ │ │ │ │ ├── ArrangeActAssert.md │ │ │ │ │ │ │ │ ├── BehavioralTesting.md │ │ │ │ │ │ │ │ ├── ConfiguringQuick.md │ │ │ │ │ │ │ │ ├── InstallingFileTemplates.md │ │ │ │ │ │ │ │ ├── InstallingQuick.md │ │ │ │ │ │ │ │ ├── MoreResources.md │ │ │ │ │ │ │ │ ├── NimbleAssertions.md │ │ │ │ │ │ │ │ ├── QuickExamplesAndGroups.md │ │ │ │ │ │ │ │ ├── QuickInObjectiveC.md │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ ├── SettingUpYourXcodeProject.md │ │ │ │ │ │ │ │ ├── SharedExamples.md │ │ │ │ │ │ │ │ ├── TestUsingTestDoubles.md │ │ │ │ │ │ │ │ ├── TestingApps.md │ │ │ │ │ │ │ │ └── Troubleshooting.md │ │ │ │ │ │ │ ├── ja │ │ │ │ │ │ │ │ ├── ArrangeActAssert.md │ │ │ │ │ │ │ │ ├── BehavioralTesting.md │ │ │ │ │ │ │ │ ├── ConfiguringQuick.md │ │ │ │ │ │ │ │ ├── InstallingFileTemplates.md │ │ │ │ │ │ │ │ ├── InstallingQuick.md │ │ │ │ │ │ │ │ ├── MoreResources.md │ │ │ │ │ │ │ │ ├── NimbleAssertions.md │ │ │ │ │ │ │ │ ├── QuickExamplesAndGroups.md │ │ │ │ │ │ │ │ ├── QuickInObjectiveC.md │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ ├── SettingUpYourXcodeProject.md │ │ │ │ │ │ │ │ ├── SharedExamples.md │ │ │ │ │ │ │ │ ├── TestUsingTestDoubles.md │ │ │ │ │ │ │ │ ├── TestingApps.md │ │ │ │ │ │ │ │ └── Troubleshooting.md │ │ │ │ │ │ │ └── zh-cn │ │ │ │ │ │ │ │ ├── ArrangeActAssert.md │ │ │ │ │ │ │ │ ├── BehavioralTesting.md │ │ │ │ │ │ │ │ ├── ConfiguringQuick.md │ │ │ │ │ │ │ │ ├── InstallingFileTemplates.md │ │ │ │ │ │ │ │ ├── InstallingQuick.md │ │ │ │ │ │ │ │ ├── MoreResources.md │ │ │ │ │ │ │ │ ├── NimbleAssertions.md │ │ │ │ │ │ │ │ ├── QuickExamplesAndGroups.md │ │ │ │ │ │ │ │ ├── QuickInObjectiveC.md │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ ├── SettingUpYourXcodeProject.md │ │ │ │ │ │ │ │ ├── TestUsingTestDoubles.md │ │ │ │ │ │ │ │ ├── TestingApps.md │ │ │ │ │ │ │ │ └── Troubleshooting.md │ │ │ │ │ │ ├── Externals │ │ │ │ │ │ │ └── Nimble │ │ │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ │ │ ├── .swift-version │ │ │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ │ │ │ │ ├── Gemfile │ │ │ │ │ │ │ │ ├── Gemfile.lock │ │ │ │ │ │ │ │ ├── LICENSE.md │ │ │ │ │ │ │ │ ├── Nimble.podspec │ │ │ │ │ │ │ │ ├── Nimble.xcodeproj │ │ │ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ │ │ │ ├── project.xcworkspace │ │ │ │ │ │ │ │ │ └── contents.xcworkspacedata │ │ │ │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ │ │ │ └── xcschemes │ │ │ │ │ │ │ │ │ ├── Nimble-iOS.xcscheme │ │ │ │ │ │ │ │ │ ├── Nimble-macOS.xcscheme │ │ │ │ │ │ │ │ │ └── Nimble-tvOS.xcscheme │ │ │ │ │ │ │ │ ├── Package.swift │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ ├── Sources │ │ │ │ │ │ │ │ ├── Nimble │ │ │ │ │ │ │ │ │ ├── Adapters │ │ │ │ │ │ │ │ │ │ ├── AdapterProtocols.swift │ │ │ │ │ │ │ │ │ │ ├── AssertionDispatcher.swift │ │ │ │ │ │ │ │ │ │ ├── AssertionRecorder.swift │ │ │ │ │ │ │ │ │ │ ├── NMBExpectation.swift │ │ │ │ │ │ │ │ │ │ ├── NMBObjCMatcher.swift │ │ │ │ │ │ │ │ │ │ ├── NimbleEnvironment.swift │ │ │ │ │ │ │ │ │ │ ├── NimbleXCTestHandler.swift │ │ │ │ │ │ │ │ │ │ └── NonObjectiveC │ │ │ │ │ │ │ │ │ │ │ └── ExceptionCapture.swift │ │ │ │ │ │ │ │ │ ├── DSL+Wait.swift │ │ │ │ │ │ │ │ │ ├── DSL.swift │ │ │ │ │ │ │ │ │ ├── Expectation.swift │ │ │ │ │ │ │ │ │ ├── Expression.swift │ │ │ │ │ │ │ │ │ ├── FailureMessage.swift │ │ │ │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ │ │ │ ├── Matchers │ │ │ │ │ │ │ │ │ │ ├── AllPass.swift │ │ │ │ │ │ │ │ │ │ ├── AsyncMatcherWrapper.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 │ │ │ │ │ │ │ │ │ │ ├── EndWith.swift │ │ │ │ │ │ │ │ │ │ ├── Equal.swift │ │ │ │ │ │ │ │ │ │ ├── HaveCount.swift │ │ │ │ │ │ │ │ │ │ ├── Match.swift │ │ │ │ │ │ │ │ │ │ ├── MatchError.swift │ │ │ │ │ │ │ │ │ │ ├── MatcherFunc.swift │ │ │ │ │ │ │ │ │ │ ├── MatcherProtocols.swift │ │ │ │ │ │ │ │ │ │ ├── PostNotification.swift │ │ │ │ │ │ │ │ │ │ ├── RaisesException.swift │ │ │ │ │ │ │ │ │ │ ├── SatisfyAnyOf.swift │ │ │ │ │ │ │ │ │ │ └── ThrowError.swift │ │ │ │ │ │ │ │ │ ├── Nimble.h │ │ │ │ │ │ │ │ │ └── Utils │ │ │ │ │ │ │ │ │ │ ├── Async.swift │ │ │ │ │ │ │ │ │ │ ├── Errors.swift │ │ │ │ │ │ │ │ │ │ ├── Functional.swift │ │ │ │ │ │ │ │ │ │ ├── SourceLocation.swift │ │ │ │ │ │ │ │ │ │ └── Stringers.swift │ │ │ │ │ │ │ │ └── NimbleObjectiveC │ │ │ │ │ │ │ │ │ ├── CurrentTestCaseTracker.h │ │ │ │ │ │ │ │ │ ├── DSL.h │ │ │ │ │ │ │ │ │ ├── DSL.m │ │ │ │ │ │ │ │ │ ├── NMBExceptionCapture.h │ │ │ │ │ │ │ │ │ ├── NMBExceptionCapture.m │ │ │ │ │ │ │ │ │ ├── NMBStringify.h │ │ │ │ │ │ │ │ │ ├── NMBStringify.m │ │ │ │ │ │ │ │ │ └── XCTestObservationCenter+Register.m │ │ │ │ │ │ │ │ ├── Tests │ │ │ │ │ │ │ │ ├── LinuxMain.swift │ │ │ │ │ │ │ │ └── NimbleTests │ │ │ │ │ │ │ │ │ ├── AsynchronousTest.swift │ │ │ │ │ │ │ │ │ ├── Helpers │ │ │ │ │ │ │ │ │ ├── ObjectWithLazyProperty.swift │ │ │ │ │ │ │ │ │ ├── XCTestCaseProvider.swift │ │ │ │ │ │ │ │ │ └── utils.swift │ │ │ │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ │ │ │ ├── LinuxSupport.swift │ │ │ │ │ │ │ │ │ ├── Matchers │ │ │ │ │ │ │ │ │ ├── AllPassTest.swift │ │ │ │ │ │ │ │ │ ├── BeAKindOfTest.swift │ │ │ │ │ │ │ │ │ ├── BeAnInstanceOfTest.swift │ │ │ │ │ │ │ │ │ ├── BeCloseToTest.swift │ │ │ │ │ │ │ │ │ ├── BeEmptyTest.swift │ │ │ │ │ │ │ │ │ ├── BeGreaterThanOrEqualToTest.swift │ │ │ │ │ │ │ │ │ ├── BeGreaterThanTest.swift │ │ │ │ │ │ │ │ │ ├── BeIdenticalToObjectTest.swift │ │ │ │ │ │ │ │ │ ├── BeIdenticalToTest.swift │ │ │ │ │ │ │ │ │ ├── BeLessThanOrEqualToTest.swift │ │ │ │ │ │ │ │ │ ├── BeLessThanTest.swift │ │ │ │ │ │ │ │ │ ├── BeLogicalTest.swift │ │ │ │ │ │ │ │ │ ├── BeNilTest.swift │ │ │ │ │ │ │ │ │ ├── BeVoidTest.swift │ │ │ │ │ │ │ │ │ ├── BeginWithTest.swift │ │ │ │ │ │ │ │ │ ├── ContainTest.swift │ │ │ │ │ │ │ │ │ ├── EndWithTest.swift │ │ │ │ │ │ │ │ │ ├── EqualTest.swift │ │ │ │ │ │ │ │ │ ├── HaveCountTest.swift │ │ │ │ │ │ │ │ │ ├── MatchErrorTest.swift │ │ │ │ │ │ │ │ │ ├── MatchTest.swift │ │ │ │ │ │ │ │ │ ├── PostNotificationTest.swift │ │ │ │ │ │ │ │ │ ├── RaisesExceptionTest.swift │ │ │ │ │ │ │ │ │ ├── SatisfyAnyOfTest.swift │ │ │ │ │ │ │ │ │ └── ThrowErrorTest.swift │ │ │ │ │ │ │ │ │ ├── SynchronousTests.swift │ │ │ │ │ │ │ │ │ ├── UserDescriptionTest.swift │ │ │ │ │ │ │ │ │ └── objc │ │ │ │ │ │ │ │ │ ├── NimbleSpecHelper.h │ │ │ │ │ │ │ │ │ ├── ObjCAllPassTest.m │ │ │ │ │ │ │ │ │ ├── ObjCAsyncTest.m │ │ │ │ │ │ │ │ │ ├── ObjCBeAnInstanceOfTest.m │ │ │ │ │ │ │ │ │ ├── ObjCBeCloseToTest.m │ │ │ │ │ │ │ │ │ ├── ObjCBeEmptyTest.m │ │ │ │ │ │ │ │ │ ├── ObjCBeFalseTest.m │ │ │ │ │ │ │ │ │ ├── ObjCBeFalsyTest.m │ │ │ │ │ │ │ │ │ ├── ObjCBeGreaterThanOrEqualToTest.m │ │ │ │ │ │ │ │ │ ├── ObjCBeGreaterThanTest.m │ │ │ │ │ │ │ │ │ ├── ObjCBeIdenticalToTest.m │ │ │ │ │ │ │ │ │ ├── ObjCBeKindOfTest.m │ │ │ │ │ │ │ │ │ ├── ObjCBeLessThanOrEqualToTest.m │ │ │ │ │ │ │ │ │ ├── ObjCBeLessThanTest.m │ │ │ │ │ │ │ │ │ ├── ObjCBeNilTest.m │ │ │ │ │ │ │ │ │ ├── ObjCBeTrueTest.m │ │ │ │ │ │ │ │ │ ├── ObjCBeTruthyTest.m │ │ │ │ │ │ │ │ │ ├── ObjCBeginWithTest.m │ │ │ │ │ │ │ │ │ ├── ObjCContainTest.m │ │ │ │ │ │ │ │ │ ├── ObjCEndWithTest.m │ │ │ │ │ │ │ │ │ ├── ObjCEqualTest.m │ │ │ │ │ │ │ │ │ ├── ObjCHaveCount.m │ │ │ │ │ │ │ │ │ ├── ObjCMatchTest.m │ │ │ │ │ │ │ │ │ ├── ObjCRaiseExceptionTest.m │ │ │ │ │ │ │ │ │ ├── ObjCSatisfyAnyOfTest.m │ │ │ │ │ │ │ │ │ ├── ObjCSyncTest.m │ │ │ │ │ │ │ │ │ ├── ObjCUserDescriptionTest.m │ │ │ │ │ │ │ │ │ └── ObjcStringersTest.m │ │ │ │ │ │ │ │ ├── script │ │ │ │ │ │ │ │ └── release │ │ │ │ │ │ │ │ └── test │ │ │ │ │ │ ├── Gemfile │ │ │ │ │ │ ├── Gemfile.lock │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── Package.swift │ │ │ │ │ │ ├── Quick Templates │ │ │ │ │ │ │ ├── Quick Configuration Class.xctemplate │ │ │ │ │ │ │ │ ├── Objective-C │ │ │ │ │ │ │ │ │ ├── ___FILEBASENAME___.h │ │ │ │ │ │ │ │ │ └── ___FILEBASENAME___.m │ │ │ │ │ │ │ │ ├── Swift │ │ │ │ │ │ │ │ │ └── ___FILEBASENAME___.swift │ │ │ │ │ │ │ │ ├── TemplateIcon.icns │ │ │ │ │ │ │ │ └── TemplateInfo.plist │ │ │ │ │ │ │ └── Quick Spec Class.xctemplate │ │ │ │ │ │ │ │ ├── Objective-C │ │ │ │ │ │ │ │ └── ___FILEBASENAME___.m │ │ │ │ │ │ │ │ ├── Swift │ │ │ │ │ │ │ │ └── ___FILEBASENAME___.swift │ │ │ │ │ │ │ │ ├── TemplateIcon.icns │ │ │ │ │ │ │ │ └── TemplateInfo.plist │ │ │ │ │ │ ├── Quick.podspec │ │ │ │ │ │ ├── Quick.xcodeproj │ │ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ │ │ ├── project.xcworkspace │ │ │ │ │ │ │ │ └── contents.xcworkspacedata │ │ │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ │ │ └── xcschemes │ │ │ │ │ │ │ │ ├── Quick-iOS.xcscheme │ │ │ │ │ │ │ │ ├── Quick-macOS.xcscheme │ │ │ │ │ │ │ │ └── Quick-tvOS.xcscheme │ │ │ │ │ │ ├── Quick.xcworkspace │ │ │ │ │ │ │ └── contents.xcworkspacedata │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── Rakefile │ │ │ │ │ │ ├── Sources │ │ │ │ │ │ │ ├── Quick │ │ │ │ │ │ │ │ ├── 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 │ │ │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ │ │ ├── NSBundle+CurrentTestBundle.swift │ │ │ │ │ │ │ │ ├── QuickMain.swift │ │ │ │ │ │ │ │ ├── QuickSelectedTestSuiteBuilder.swift │ │ │ │ │ │ │ │ ├── QuickSpec.swift │ │ │ │ │ │ │ │ ├── QuickTestSuite.swift │ │ │ │ │ │ │ │ ├── String+FileName.swift │ │ │ │ │ │ │ │ └── World.swift │ │ │ │ │ │ │ └── QuickObjectiveC │ │ │ │ │ │ │ │ ├── Configuration │ │ │ │ │ │ │ │ ├── QuickConfiguration.h │ │ │ │ │ │ │ │ └── QuickConfiguration.m │ │ │ │ │ │ │ │ ├── DSL │ │ │ │ │ │ │ │ ├── QCKDSL.h │ │ │ │ │ │ │ │ ├── QCKDSL.m │ │ │ │ │ │ │ │ └── World+DSL.h │ │ │ │ │ │ │ │ ├── NSString+QCKSelectorName.h │ │ │ │ │ │ │ │ ├── NSString+QCKSelectorName.m │ │ │ │ │ │ │ │ ├── Quick.h │ │ │ │ │ │ │ │ ├── QuickSpec.h │ │ │ │ │ │ │ │ ├── QuickSpec.m │ │ │ │ │ │ │ │ ├── World.h │ │ │ │ │ │ │ │ └── XCTestSuite+QuickTestSuiteBuilder.m │ │ │ │ │ │ ├── Tests │ │ │ │ │ │ │ ├── LinuxMain.swift │ │ │ │ │ │ │ └── QuickTests │ │ │ │ │ │ │ │ ├── QuickFocusedTests │ │ │ │ │ │ │ │ ├── FocusedTests+ObjC.m │ │ │ │ │ │ │ │ ├── FocusedTests.swift │ │ │ │ │ │ │ │ └── Info.plist │ │ │ │ │ │ │ │ ├── QuickTestHelpers │ │ │ │ │ │ │ │ ├── SpecRunner.swift │ │ │ │ │ │ │ │ ├── TestRun.swift │ │ │ │ │ │ │ │ └── XCTestCaseProvider.swift │ │ │ │ │ │ │ │ └── QuickTests │ │ │ │ │ │ │ │ ├── Fixtures │ │ │ │ │ │ │ │ └── FunctionalTests_SharedExamplesTests_SharedExamples.swift │ │ │ │ │ │ │ │ ├── FunctionalTests │ │ │ │ │ │ │ │ ├── AfterEachTests.swift │ │ │ │ │ │ │ │ ├── AfterSuiteTests.swift │ │ │ │ │ │ │ │ ├── BeforeEachTests.swift │ │ │ │ │ │ │ │ ├── BeforeSuiteTests.swift │ │ │ │ │ │ │ │ ├── Configuration │ │ │ │ │ │ │ │ │ ├── AfterEach │ │ │ │ │ │ │ │ │ │ ├── Configuration+AfterEach.swift │ │ │ │ │ │ │ │ │ │ └── Configuration+AfterEachTests.swift │ │ │ │ │ │ │ │ │ └── BeforeEach │ │ │ │ │ │ │ │ │ │ ├── Configuration+BeforeEach.swift │ │ │ │ │ │ │ │ │ │ └── Configuration+BeforeEachTests.swift │ │ │ │ │ │ │ │ ├── ContextTests.swift │ │ │ │ │ │ │ │ ├── CrossReferencingSpecs.swift │ │ │ │ │ │ │ │ ├── DescribeTests.swift │ │ │ │ │ │ │ │ ├── ItTests.swift │ │ │ │ │ │ │ │ ├── ObjC │ │ │ │ │ │ │ │ │ ├── AfterEachTests+ObjC.m │ │ │ │ │ │ │ │ │ ├── AfterSuiteTests+ObjC.m │ │ │ │ │ │ │ │ │ ├── BeforeEachTests+ObjC.m │ │ │ │ │ │ │ │ │ ├── BeforeSuiteTests+ObjC.m │ │ │ │ │ │ │ │ │ ├── FailureTests+ObjC.m │ │ │ │ │ │ │ │ │ ├── FailureUsingXCTAssertTests+ObjC.m │ │ │ │ │ │ │ │ │ ├── ItTests+ObjC.m │ │ │ │ │ │ │ │ │ ├── PendingTests+ObjC.m │ │ │ │ │ │ │ │ │ ├── SharedExamples+BeforeEachTests+ObjC.m │ │ │ │ │ │ │ │ │ └── SharedExamplesTests+ObjC.m │ │ │ │ │ │ │ │ ├── PendingTests.swift │ │ │ │ │ │ │ │ ├── SharedExamples+BeforeEachTests.swift │ │ │ │ │ │ │ │ └── SharedExamplesTests.swift │ │ │ │ │ │ │ │ ├── Helpers │ │ │ │ │ │ │ │ ├── QCKSpecRunner.h │ │ │ │ │ │ │ │ ├── QCKSpecRunner.m │ │ │ │ │ │ │ │ ├── QuickSpec+QuickSpec_MethodList.h │ │ │ │ │ │ │ │ ├── QuickSpec+QuickSpec_MethodList.m │ │ │ │ │ │ │ │ ├── QuickTestsBridgingHeader.h │ │ │ │ │ │ │ │ ├── XCTestObservationCenter+QCKSuspendObservation.h │ │ │ │ │ │ │ │ └── XCTestObservationCenter+QCKSuspendObservation.m │ │ │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ │ │ └── QuickConfigurationTests.m │ │ │ │ │ │ └── script │ │ │ │ │ │ │ ├── release │ │ │ │ │ │ │ ├── travis-install-linux │ │ │ │ │ │ │ ├── travis-install-macos │ │ │ │ │ │ │ ├── travis-script-linux │ │ │ │ │ │ │ └── travis-script-macos │ │ │ │ │ │ ├── Result │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── .swift-version │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── Package.swift │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── Result.podspec │ │ │ │ │ │ ├── Result.xcodeproj │ │ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ │ │ ├── project.xcworkspace │ │ │ │ │ │ │ │ └── contents.xcworkspacedata │ │ │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ │ │ └── xcschemes │ │ │ │ │ │ │ │ ├── Result-Mac.xcscheme │ │ │ │ │ │ │ │ ├── Result-iOS.xcscheme │ │ │ │ │ │ │ │ ├── Result-tvOS.xcscheme │ │ │ │ │ │ │ │ └── Result-watchOS.xcscheme │ │ │ │ │ │ ├── Result │ │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ │ ├── Result.h │ │ │ │ │ │ │ ├── Result.swift │ │ │ │ │ │ │ └── ResultProtocol.swift │ │ │ │ │ │ └── Tests │ │ │ │ │ │ │ ├── LinuxMain.swift │ │ │ │ │ │ │ └── ResultTests │ │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ │ └── ResultTests.swift │ │ │ │ │ │ └── xcconfigs │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── Base │ │ │ │ │ │ ├── Common.xcconfig │ │ │ │ │ │ ├── Configurations │ │ │ │ │ │ │ ├── Debug.xcconfig │ │ │ │ │ │ │ ├── Profile.xcconfig │ │ │ │ │ │ │ ├── Release.xcconfig │ │ │ │ │ │ │ └── Test.xcconfig │ │ │ │ │ │ └── Targets │ │ │ │ │ │ │ ├── Application.xcconfig │ │ │ │ │ │ │ ├── Framework.xcconfig │ │ │ │ │ │ │ └── StaticLibrary.xcconfig │ │ │ │ │ │ ├── Mac OS X │ │ │ │ │ │ ├── Mac-Application.xcconfig │ │ │ │ │ │ ├── Mac-Base.xcconfig │ │ │ │ │ │ ├── Mac-DynamicLibrary.xcconfig │ │ │ │ │ │ ├── Mac-Framework.xcconfig │ │ │ │ │ │ └── Mac-StaticLibrary.xcconfig │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── iOS │ │ │ │ │ │ ├── iOS-Application.xcconfig │ │ │ │ │ │ ├── iOS-Base.xcconfig │ │ │ │ │ │ ├── iOS-Framework.xcconfig │ │ │ │ │ │ └── iOS-StaticLibrary.xcconfig │ │ │ │ │ │ ├── tvOS │ │ │ │ │ │ ├── tvOS-Application.xcconfig │ │ │ │ │ │ ├── tvOS-Base.xcconfig │ │ │ │ │ │ ├── tvOS-Framework.xcconfig │ │ │ │ │ │ └── tvOS-StaticLibrary.xcconfig │ │ │ │ │ │ └── watchOS │ │ │ │ │ │ ├── watchOS-Application.xcconfig │ │ │ │ │ │ ├── watchOS-Base.xcconfig │ │ │ │ │ │ ├── watchOS-Framework.xcconfig │ │ │ │ │ │ └── watchOS-StaticLibrary.xcconfig │ │ │ │ ├── Commandant.xcodeproj │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ ├── project.xcworkspace │ │ │ │ │ │ └── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ └── xcschemes │ │ │ │ │ │ └── Commandant.xcscheme │ │ │ │ ├── Commandant.xcworkspace │ │ │ │ │ └── contents.xcworkspacedata │ │ │ │ ├── LICENSE.md │ │ │ │ ├── Package.swift │ │ │ │ ├── README.md │ │ │ │ ├── Sources │ │ │ │ │ └── Commandant │ │ │ │ │ │ ├── Argument.swift │ │ │ │ │ │ ├── ArgumentParser.swift │ │ │ │ │ │ ├── ArgumentProtocol.swift │ │ │ │ │ │ ├── Command.swift │ │ │ │ │ │ ├── Commandant.h │ │ │ │ │ │ ├── Errors.swift │ │ │ │ │ │ ├── HelpCommand.swift │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ ├── LinuxSupport.swift │ │ │ │ │ │ ├── Option.swift │ │ │ │ │ │ └── Switch.swift │ │ │ │ └── Tests │ │ │ │ │ ├── CommandantTests │ │ │ │ │ ├── CommandSpec.swift │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── OptionSpec.swift │ │ │ │ │ └── LinuxMain.swift │ │ │ │ ├── Result │ │ │ │ ├── .gitignore │ │ │ │ ├── .swift-version │ │ │ │ ├── .travis.yml │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ ├── LICENSE │ │ │ │ ├── Package.swift │ │ │ │ ├── README.md │ │ │ │ ├── Result.podspec │ │ │ │ ├── Result.xcodeproj │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ ├── project.xcworkspace │ │ │ │ │ │ └── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ └── xcschemes │ │ │ │ │ │ ├── Result-Mac.xcscheme │ │ │ │ │ │ ├── Result-iOS.xcscheme │ │ │ │ │ │ ├── Result-tvOS.xcscheme │ │ │ │ │ │ └── Result-watchOS.xcscheme │ │ │ │ ├── Result │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── Result.h │ │ │ │ │ ├── Result.swift │ │ │ │ │ └── ResultProtocol.swift │ │ │ │ └── Tests │ │ │ │ │ ├── LinuxMain.swift │ │ │ │ │ └── ResultTests │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── ResultTests.swift │ │ │ │ ├── SWXMLHash │ │ │ │ ├── .gitignore │ │ │ │ ├── .swift-version │ │ │ │ ├── .swiftlint.yml │ │ │ │ ├── .travis.yml │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ ├── LICENSE │ │ │ │ ├── Package.swift │ │ │ │ ├── README.md │ │ │ │ ├── Rakefile │ │ │ │ ├── SWXMLHash.podspec │ │ │ │ ├── SWXMLHash.xcodeproj │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ ├── project.xcworkspace │ │ │ │ │ │ └── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ └── xcschemes │ │ │ │ │ │ ├── SWXMLHash OSX.xcscheme │ │ │ │ │ │ ├── SWXMLHash iOS.xcscheme │ │ │ │ │ │ ├── SWXMLHash tvOS.xcscheme │ │ │ │ │ │ └── SWXMLHash watchOS.xcscheme │ │ │ │ ├── SWXMLHash.xcworkspace │ │ │ │ │ └── contents.xcworkspacedata │ │ │ │ ├── SWXMLHashPlayground.playground │ │ │ │ │ ├── contents.xcplayground │ │ │ │ │ └── section-1.swift │ │ │ │ ├── Scripts │ │ │ │ │ └── build.sh │ │ │ │ ├── Source │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── SWXMLHash+TypeConversion.swift │ │ │ │ │ ├── SWXMLHash.h │ │ │ │ │ └── SWXMLHash.swift │ │ │ │ └── Tests │ │ │ │ │ ├── LinuxMain.swift │ │ │ │ │ └── SWXMLHashTests │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── LazyTypesConversionTests.swift │ │ │ │ │ ├── LazyWhiteSpaceParsingTests.swift │ │ │ │ │ ├── LazyXMLParsingTests.swift │ │ │ │ │ ├── LinuxShims.swift │ │ │ │ │ ├── MixedTextWithXMLElementsTests.swift │ │ │ │ │ ├── SWXMLHashConfigTests.swift │ │ │ │ │ ├── TypeConversionArrayOfNonPrimitiveTypesTests.swift │ │ │ │ │ ├── TypeConversionBasicTypesTests.swift │ │ │ │ │ ├── TypeConversionComplexTypesTests.swift │ │ │ │ │ ├── TypeConversionPrimitypeTypesTests.swift │ │ │ │ │ ├── WhiteSpaceParsingTests.swift │ │ │ │ │ ├── XMLParsingTests.swift │ │ │ │ │ └── test.xml │ │ │ │ ├── Yams │ │ │ │ ├── .gitignore │ │ │ │ ├── .swift-version │ │ │ │ ├── .swiftlint.yml │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── Package.swift │ │ │ │ ├── README.md │ │ │ │ ├── Sources │ │ │ │ │ ├── CYaml │ │ │ │ │ │ ├── include │ │ │ │ │ │ │ └── yaml.h │ │ │ │ │ │ └── src │ │ │ │ │ │ │ ├── api.c │ │ │ │ │ │ │ ├── dumper.c │ │ │ │ │ │ │ ├── emitter.c │ │ │ │ │ │ │ ├── loader.c │ │ │ │ │ │ │ ├── parser.c │ │ │ │ │ │ │ ├── reader.c │ │ │ │ │ │ │ ├── scanner.c │ │ │ │ │ │ │ ├── writer.c │ │ │ │ │ │ │ └── yaml_private.h │ │ │ │ │ └── Yams │ │ │ │ │ │ └── Yams.swift │ │ │ │ ├── Tests │ │ │ │ │ ├── LinuxMain.swift │ │ │ │ │ └── YamsTests │ │ │ │ │ │ └── YamsTests.swift │ │ │ │ ├── Yams.podspec │ │ │ │ └── Yams.xcodeproj │ │ │ │ │ ├── CYaml_Info.plist │ │ │ │ │ ├── YamsTests_Info.plist │ │ │ │ │ ├── Yams_Info.plist │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ ├── project.xcworkspace │ │ │ │ │ └── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata │ │ │ │ │ └── xcschemes │ │ │ │ │ ├── Yams.xcscheme │ │ │ │ │ └── xcschememanagement.plist │ │ │ │ └── xcconfigs │ │ │ │ ├── .gitignore │ │ │ │ ├── Base │ │ │ │ ├── Common.xcconfig │ │ │ │ ├── Configurations │ │ │ │ │ ├── Debug.xcconfig │ │ │ │ │ ├── Profile.xcconfig │ │ │ │ │ ├── Release.xcconfig │ │ │ │ │ └── Test.xcconfig │ │ │ │ └── Targets │ │ │ │ │ ├── Application.xcconfig │ │ │ │ │ ├── Framework.xcconfig │ │ │ │ │ └── StaticLibrary.xcconfig │ │ │ │ ├── Mac OS X │ │ │ │ ├── Mac-Application.xcconfig │ │ │ │ ├── Mac-Base.xcconfig │ │ │ │ ├── Mac-DynamicLibrary.xcconfig │ │ │ │ ├── Mac-Framework.xcconfig │ │ │ │ └── Mac-StaticLibrary.xcconfig │ │ │ │ ├── README.md │ │ │ │ ├── iOS │ │ │ │ ├── iOS-Application.xcconfig │ │ │ │ ├── iOS-Base.xcconfig │ │ │ │ ├── iOS-Framework.xcconfig │ │ │ │ └── iOS-StaticLibrary.xcconfig │ │ │ │ ├── tvOS │ │ │ │ ├── tvOS-Application.xcconfig │ │ │ │ ├── tvOS-Base.xcconfig │ │ │ │ ├── tvOS-Framework.xcconfig │ │ │ │ └── tvOS-StaticLibrary.xcconfig │ │ │ │ └── watchOS │ │ │ │ ├── watchOS-Application.xcconfig │ │ │ │ ├── watchOS-Base.xcconfig │ │ │ │ ├── watchOS-Framework.xcconfig │ │ │ │ └── watchOS-StaticLibrary.xcconfig │ │ ├── Dangerfile │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── Package.swift │ │ ├── README.md │ │ ├── Releasing.md │ │ ├── Source │ │ │ ├── SourceKittenFramework │ │ │ │ ├── Clang+SourceKitten.swift │ │ │ │ ├── ClangTranslationUnit.swift │ │ │ │ ├── CodeCompletionItem.swift │ │ │ │ ├── Dictionary+Merge.swift │ │ │ │ ├── Documentation.swift │ │ │ │ ├── File.swift │ │ │ │ ├── Info.plist │ │ │ │ ├── JSONOutput.swift │ │ │ │ ├── Language.swift │ │ │ │ ├── LinuxCompatibility.swift │ │ │ │ ├── Module.swift │ │ │ │ ├── ObjCDeclarationKind.swift │ │ │ │ ├── OffsetMap.swift │ │ │ │ ├── Parameter.swift │ │ │ │ ├── Request.swift │ │ │ │ ├── SourceDeclaration.swift │ │ │ │ ├── SourceKittenFramework.h │ │ │ │ ├── SourceLocation.swift │ │ │ │ ├── StatementKind.swift │ │ │ │ ├── String+SourceKitten.swift │ │ │ │ ├── Structure.swift │ │ │ │ ├── SwiftDeclarationKind.swift │ │ │ │ ├── SwiftDocKey.swift │ │ │ │ ├── SwiftDocs.swift │ │ │ │ ├── SwiftLangSyntax.swift │ │ │ │ ├── SyntaxKind.swift │ │ │ │ ├── SyntaxMap.swift │ │ │ │ ├── SyntaxToken.swift │ │ │ │ ├── Text.swift │ │ │ │ ├── Xcode.swift │ │ │ │ ├── clang-c │ │ │ │ │ ├── BuildSystem.h │ │ │ │ │ ├── CXCompilationDatabase.h │ │ │ │ │ ├── CXErrorCode.h │ │ │ │ │ ├── CXString.h │ │ │ │ │ ├── Documentation.h │ │ │ │ │ ├── Index.h │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Platform.h │ │ │ │ │ └── module.modulemap │ │ │ │ ├── library_wrapper.swift │ │ │ │ ├── library_wrapper_CXString.swift │ │ │ │ ├── library_wrapper_Documentation.swift │ │ │ │ ├── library_wrapper_Index.swift │ │ │ │ ├── library_wrapper_sourcekitd.swift │ │ │ │ └── sourcekitd.h │ │ │ └── sourcekitten │ │ │ │ ├── CompleteCommand.swift │ │ │ │ ├── Components.plist │ │ │ │ ├── DocCommand.swift │ │ │ │ ├── Errors.swift │ │ │ │ ├── FormatCommand.swift │ │ │ │ ├── IndexCommand.swift │ │ │ │ ├── Info.plist │ │ │ │ ├── StructureCommand.swift │ │ │ │ ├── SyntaxCommand.swift │ │ │ │ ├── VersionCommand.swift │ │ │ │ └── main.swift │ │ ├── SourceKitten.podspec │ │ ├── SourceKitten.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ ├── Tests │ │ │ ├── LinuxMain.swift │ │ │ └── SourceKittenFrameworkTests │ │ │ │ ├── ClangTranslationUnitTests.swift │ │ │ │ ├── CodeCompletionTests.swift │ │ │ │ ├── DocInfoTests.swift │ │ │ │ ├── FileTests.swift │ │ │ │ ├── Fixtures │ │ │ │ ├── Bicycle.json │ │ │ │ ├── Bicycle.swift │ │ │ │ ├── BicycleIndex.json │ │ │ │ ├── BicycleUnformatted.swift │ │ │ │ ├── Commandant.json │ │ │ │ ├── CommandantSPM.json │ │ │ │ ├── DocInfo.json │ │ │ │ ├── DocInfo.swift │ │ │ │ ├── LinuxBicycle.json │ │ │ │ ├── LinuxSubscript.json │ │ │ │ ├── ModuleInfo.json │ │ │ │ ├── Musician.h │ │ │ │ ├── Musician.json │ │ │ │ ├── Realm.json │ │ │ │ ├── Realm │ │ │ │ │ ├── RLMAccessor.h │ │ │ │ │ ├── RLMArray.h │ │ │ │ │ ├── RLMArray_Private.h │ │ │ │ │ ├── RLMCollection.h │ │ │ │ │ ├── RLMConstants.h │ │ │ │ │ ├── RLMDefines.h │ │ │ │ │ ├── RLMListBase.h │ │ │ │ │ ├── RLMMigration.h │ │ │ │ │ ├── RLMMigration_Private.h │ │ │ │ │ ├── RLMObject.h │ │ │ │ │ ├── RLMObjectBase.h │ │ │ │ │ ├── RLMObjectBase_Dynamic.h │ │ │ │ │ ├── RLMObjectSchema.h │ │ │ │ │ ├── RLMObjectSchema_Private.h │ │ │ │ │ ├── RLMObjectStore.h │ │ │ │ │ ├── RLMObject_Private.h │ │ │ │ │ ├── RLMOptionalBase.h │ │ │ │ │ ├── RLMPlatform.h │ │ │ │ │ ├── RLMPrefix.h │ │ │ │ │ ├── RLMProperty.h │ │ │ │ │ ├── RLMProperty_Private.h │ │ │ │ │ ├── RLMRealm.h │ │ │ │ │ ├── RLMRealmConfiguration.h │ │ │ │ │ ├── RLMRealmConfiguration_Private.h │ │ │ │ │ ├── RLMRealm_Dynamic.h │ │ │ │ │ ├── RLMRealm_Private.h │ │ │ │ │ ├── RLMResults.h │ │ │ │ │ ├── RLMResults_Private.h │ │ │ │ │ ├── RLMSchema.h │ │ │ │ │ ├── RLMSchema_Private.h │ │ │ │ │ ├── RLMSwiftBridgingHeader.h │ │ │ │ │ ├── RLMSwiftSupport.h │ │ │ │ │ └── Realm.h │ │ │ │ ├── SimpleCodeCompletion.json │ │ │ │ ├── Subscript.json │ │ │ │ ├── Subscript.swift │ │ │ │ ├── SuperScript.h │ │ │ │ └── SuperScript.json │ │ │ │ ├── Info.plist │ │ │ │ ├── ModuleTests.swift │ │ │ │ ├── OffsetMapTests.swift │ │ │ │ ├── SourceKitTests.swift │ │ │ │ ├── StringTests.swift │ │ │ │ ├── StructureTests.swift │ │ │ │ ├── SwiftDocsTests.swift │ │ │ │ └── SyntaxTests.swift │ │ ├── jazzy.sh │ │ ├── script │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── bootstrap │ │ │ ├── check-xcode-version │ │ │ ├── cibuild │ │ │ ├── extract-tool │ │ │ ├── module.modulemap │ │ │ ├── spm_bootstrap │ │ │ └── spm_teardown │ │ └── sourcekitten.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── SourceKittenFramework.xcscheme │ │ │ └── sourcekitten.xcscheme │ ├── Spectre-0.7.2 │ │ ├── .gitignore │ │ ├── .swift-version │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── IntegrationTests │ │ │ ├── Disabled-expected-dot-output.txt │ │ │ ├── Disabled-expected-output.txt │ │ │ ├── Disabled-expected-tap-output.txt │ │ │ ├── Failing-expected-dot-output.txt │ │ │ ├── Failing-expected-output.txt │ │ │ ├── Failing-expected-tap-output.txt │ │ │ ├── Package.swift │ │ │ ├── Passing-expected-dot-output.txt │ │ │ ├── Passing-expected-output.txt │ │ │ ├── Passing-expected-tap-output.txt │ │ │ ├── Sources │ │ │ │ ├── Disabled │ │ │ │ │ └── main.swift │ │ │ │ ├── Failing │ │ │ │ │ └── main.swift │ │ │ │ ├── Passing │ │ │ │ │ └── main.swift │ │ │ │ └── Spectre │ │ │ └── run.sh │ │ ├── LICENSE │ │ ├── Package.swift │ │ ├── README.md │ │ ├── Screenshots │ │ │ ├── Playground.png │ │ │ ├── failure-dot.png │ │ │ ├── failure.png │ │ │ ├── success-dot.png │ │ │ └── success.png │ │ ├── Sources │ │ │ ├── Case.swift │ │ │ ├── Context.swift │ │ │ ├── Expectation.swift │ │ │ ├── Failure.swift │ │ │ ├── Global.swift │ │ │ ├── GlobalContext.swift │ │ │ ├── Reporter.swift │ │ │ └── Reporters.swift │ │ ├── Spectre.playground │ │ │ ├── Contents.swift │ │ │ ├── Sources │ │ │ │ ├── Case.swift │ │ │ │ ├── Compatibility.swift │ │ │ │ ├── Context.swift │ │ │ │ ├── Expectation.swift │ │ │ │ ├── Failure.swift │ │ │ │ ├── GlobalContext.swift │ │ │ │ ├── Playground.swift │ │ │ │ ├── Reporter.swift │ │ │ │ └── Reporters.swift │ │ │ └── contents.xcplayground │ │ ├── Spectre.podspec.json │ │ └── Tests │ │ │ ├── LinuxMain.swift │ │ │ └── SpectreTests │ │ │ ├── ExpectationSpec.swift │ │ │ ├── FailureSpec.swift │ │ │ └── XCTest.swift │ ├── Stencil-0.6.0 │ │ ├── .gitignore │ │ ├── .swift-version │ │ ├── .travis.yml │ │ ├── ARCHITECTURE.md │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── Package.swift │ │ ├── README.md │ │ ├── Sources │ │ │ ├── Context.swift │ │ │ ├── Filters.swift │ │ │ ├── ForTag.swift │ │ │ ├── IfTag.swift │ │ │ ├── Include.swift │ │ │ ├── Inheritence.swift │ │ │ ├── Lexer.swift │ │ │ ├── Namespace.swift │ │ │ ├── Node.swift │ │ │ ├── NowTag.swift │ │ │ ├── Parser.swift │ │ │ ├── Template.swift │ │ │ ├── TemplateLoader.swift │ │ │ ├── Tokenizer.swift │ │ │ └── Variable.swift │ │ ├── Stencil.podspec.json │ │ └── Tests │ │ │ ├── LinuxMain.swift │ │ │ └── StencilTests │ │ │ ├── ContextSpec.swift │ │ │ ├── FilterSpec.swift │ │ │ ├── ForNodeSpec.swift │ │ │ ├── IfNodeSpec.swift │ │ │ ├── IncludeSpec.swift │ │ │ ├── InheritenceSpec.swift │ │ │ ├── LexerSpec.swift │ │ │ ├── NodeSpec.swift │ │ │ ├── NowNodeSpec.swift │ │ │ ├── ParserSpec.swift │ │ │ ├── StencilSpec.swift │ │ │ ├── TemplateLoaderSpec.swift │ │ │ ├── TemplateSpec.swift │ │ │ ├── TokenSpec.swift │ │ │ ├── VariableSpec.swift │ │ │ ├── XCTest.swift │ │ │ └── fixtures │ │ │ ├── base.html │ │ │ ├── child.html │ │ │ └── test.html │ ├── Witness-0.4.0 │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── Package.swift │ │ ├── README.md │ │ ├── Sources │ │ │ ├── EventStream.swift │ │ │ ├── FileEvent.swift │ │ │ └── Witness.swift │ │ └── Tests │ │ │ ├── LinuxMain.swift │ │ │ └── WitnessPackageTests │ │ │ └── WitnessPackageTests.swift │ └── Yaml-3.1.0 │ │ ├── .gitignore │ │ ├── .swift-version │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── Package.swift │ │ ├── Readme.md │ │ ├── Tests │ │ ├── Info.plist │ │ ├── LinuxMain.swift │ │ └── YamlTests │ │ │ ├── ExampleTests.swift │ │ │ └── YamlTests.swift │ │ ├── Yaml.podspec │ │ ├── Yaml.xcodeproj │ │ ├── .gitignore │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── Yaml OSX.xcscheme │ │ │ ├── Yaml iOS.xcscheme │ │ │ └── Yaml tvOS.xcscheme │ │ └── Yaml │ │ ├── Info.plist │ │ ├── YAMLOperators.swift │ │ ├── YAMLParser.swift │ │ ├── YAMLRegex.swift │ │ ├── YAMLResult.swift │ │ ├── YAMLTokenizer.swift │ │ ├── Yaml.h │ │ └── Yaml.swift ├── TyphoonSwiftDependencies.xcodeproj │ ├── Commandant_Info.plist │ ├── PathKit_Info.plist │ ├── Result_Info.plist │ ├── SWXMLHash_Info.plist │ ├── SourceKittenFramework_Info.plist │ ├── Spectre_Info.plist │ ├── Stencil_Info.plist │ ├── Witness_Info.plist │ ├── Yaml_Info.plist │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── TyphoonSwiftDependencies.xcscheme │ │ └── xcschememanagement.plist └── update.sh ├── Example └── TyphoonSwiftExample │ ├── Typhoon.plist │ ├── TyphoonSwiftExample.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── TyphoonSwiftExample │ ├── AppDelegate.swift │ ├── Assemblies │ └── input.swift │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── Typhoon │ ├── Runtime │ │ ├── ActivatedAssembly.swift │ │ ├── ActivatedDefinition.swift │ │ ├── Model.swift │ │ ├── Pools.swift │ │ └── Stack.swift │ └── assemblies.swift │ └── ViewController.swift ├── README.md ├── Resources ├── Runtime │ ├── ActivatedAssembly.swift │ ├── ActivatedDefinition.swift │ ├── Model.swift │ ├── Pools.swift │ └── Stack.swift └── Templates │ ├── Assemblies.stencil │ └── Definition.stencil ├── Sources ├── AssemblyDefinitionBuilder.swift ├── AssemblyGenerator.swift ├── BuilderModels.swift ├── Config.swift ├── Definitions.swift ├── FileDefinitionBuilder.swift ├── FileStructure.swift ├── JSON.swift ├── Launcher.swift ├── MethodDefinition.swift ├── MethodDefinitionBuilder+Inspections.swift ├── MethodDefinitionBuilder.swift ├── RegularExpressionExtensions.swift ├── SourceLangSwift.swift ├── StringUtils.swift ├── SwiftDocumentKey.swift └── main.swift ├── Typhoon.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ └── Typhoon.xcscmblueprint └── TyphoonSwift.xcodeproj ├── Configs └── Project.xcconfig ├── PathKit_Info.plist ├── Spectre_Info.plist ├── Stencil_Info.plist ├── TyphoonPackageTests_Info.plist ├── Witness_Info.plist ├── project.pbxproj ├── project.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ └── TyphoonSwift.xcscmblueprint └── xcshareddata └── xcschemes ├── TyphoonPackageTests.xcscheme ├── TyphoonSwift.xcscheme └── xcschememanagement.plist /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | TyphoonSwift -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/runConfigurations/TyphoonSwift_iOS.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/.idea/runConfigurations/TyphoonSwift_iOS.xml -------------------------------------------------------------------------------- /.idea/runConfigurations/TyphoonSwift_macOS.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/.idea/runConfigurations/TyphoonSwift_macOS.xml -------------------------------------------------------------------------------- /.idea/typhoon-swift.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/.idea/typhoon-swift.iml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /.idea/xcode.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/.idea/xcode.xml -------------------------------------------------------------------------------- /Dependencies/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Package.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Clang_C-1.0.2/BuildSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Clang_C-1.0.2/BuildSystem.h -------------------------------------------------------------------------------- /Dependencies/Packages/Clang_C-1.0.2/CXCompilationDatabase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Clang_C-1.0.2/CXCompilationDatabase.h -------------------------------------------------------------------------------- /Dependencies/Packages/Clang_C-1.0.2/CXErrorCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Clang_C-1.0.2/CXErrorCode.h -------------------------------------------------------------------------------- /Dependencies/Packages/Clang_C-1.0.2/CXString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Clang_C-1.0.2/CXString.h -------------------------------------------------------------------------------- /Dependencies/Packages/Clang_C-1.0.2/Documentation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Clang_C-1.0.2/Documentation.h -------------------------------------------------------------------------------- /Dependencies/Packages/Clang_C-1.0.2/Index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Clang_C-1.0.2/Index.h -------------------------------------------------------------------------------- /Dependencies/Packages/Clang_C-1.0.2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Clang_C-1.0.2/Makefile -------------------------------------------------------------------------------- /Dependencies/Packages/Clang_C-1.0.2/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Clang_C-1.0.2/Package.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Clang_C-1.0.2/Platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Clang_C-1.0.2/Platform.h -------------------------------------------------------------------------------- /Dependencies/Packages/Clang_C-1.0.2/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Clang_C-1.0.2/module.modulemap -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/.gitignore -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/.gitmodules -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/.swift-version: -------------------------------------------------------------------------------- 1 | 3.0 2 | -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/.travis.yml -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Cartfile: -------------------------------------------------------------------------------- 1 | github "antitypical/Result" ~> 3.0 2 | -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Cartfile.private: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Cartfile.private -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Cartfile.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Cartfile.resolved -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Nimble/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Nimble/.gitignore -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Nimble/.swift-version: -------------------------------------------------------------------------------- 1 | 3.0 2 | -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Nimble/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Nimble/.travis.yml -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Nimble/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Nimble/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Nimble/Gemfile: -------------------------------------------------------------------------------- 1 | # A sample Gemfile 2 | source "https://rubygems.org" 3 | 4 | gem 'cocoapods' 5 | -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Nimble/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Nimble/Gemfile.lock -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Nimble/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Nimble/LICENSE.md -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Nimble/Nimble.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Nimble/Nimble.podspec -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Nimble/Nimble.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Nimble/Nimble.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Nimble/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Nimble/Package.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Nimble/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Nimble/README.md -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Nimble/Sources/Nimble/DSL+Wait.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Nimble/Sources/Nimble/DSL+Wait.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Nimble/Sources/Nimble/DSL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Nimble/Sources/Nimble/DSL.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Nimble/Sources/Nimble/Expectation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Nimble/Sources/Nimble/Expectation.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Nimble/Sources/Nimble/Expression.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Nimble/Sources/Nimble/Expression.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Nimble/Sources/Nimble/FailureMessage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Nimble/Sources/Nimble/FailureMessage.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Nimble/Sources/Nimble/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Nimble/Sources/Nimble/Info.plist -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/AllPass.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/AllPass.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/BeEmpty.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/BeEmpty.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/BeNil.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/BeNil.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/BeVoid.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/BeVoid.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/Contain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/Contain.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/EndWith.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/EndWith.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/Equal.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/Equal.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/Match.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/Match.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Nimble/Sources/Nimble/Nimble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Nimble/Sources/Nimble/Nimble.h -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Nimble/Sources/Nimble/Utils/Async.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Nimble/Sources/Nimble/Utils/Async.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Nimble/Sources/Nimble/Utils/Errors.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Nimble/Sources/Nimble/Utils/Errors.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Nimble/Sources/Nimble/Utils/Functional.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Nimble/Sources/Nimble/Utils/Functional.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Nimble/Sources/Nimble/Utils/Stringers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Nimble/Sources/Nimble/Utils/Stringers.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Nimble/Sources/NimbleObjectiveC/DSL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Nimble/Sources/NimbleObjectiveC/DSL.h -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Nimble/Sources/NimbleObjectiveC/DSL.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Nimble/Sources/NimbleObjectiveC/DSL.m -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Nimble/Tests/LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Nimble/Tests/LinuxMain.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Nimble/Tests/NimbleTests/Helpers/utils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Nimble/Tests/NimbleTests/Helpers/utils.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Nimble/Tests/NimbleTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Nimble/Tests/NimbleTests/Info.plist -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Nimble/script/release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Nimble/script/release -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Nimble/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Nimble/test -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/.gitignore -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/.gitmodules -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/.swift-version: -------------------------------------------------------------------------------- 1 | 3.0 2 | -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/.travis.yml -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/Documentation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/Documentation/README.md -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/Documentation/en-us/MoreResources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/Documentation/en-us/MoreResources.md -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/Documentation/en-us/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/Documentation/en-us/README.md -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/Documentation/en-us/TestingApps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/Documentation/en-us/TestingApps.md -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/Documentation/ja/ArrangeActAssert.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/Documentation/ja/ArrangeActAssert.md -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/Documentation/ja/ConfiguringQuick.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/Documentation/ja/ConfiguringQuick.md -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/Documentation/ja/InstallingQuick.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/Documentation/ja/InstallingQuick.md -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/Documentation/ja/MoreResources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/Documentation/ja/MoreResources.md -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/Documentation/ja/NimbleAssertions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/Documentation/ja/NimbleAssertions.md -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/Documentation/ja/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/Documentation/ja/README.md -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/Documentation/ja/SharedExamples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/Documentation/ja/SharedExamples.md -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/Documentation/ja/TestingApps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/Documentation/ja/TestingApps.md -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/Documentation/ja/Troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/Documentation/ja/Troubleshooting.md -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/Documentation/zh-cn/MoreResources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/Documentation/zh-cn/MoreResources.md -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/Documentation/zh-cn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/Documentation/zh-cn/README.md -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/Documentation/zh-cn/TestingApps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/Documentation/zh-cn/TestingApps.md -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/Externals/Nimble/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/Externals/Nimble/.gitignore -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/Externals/Nimble/.swift-version: -------------------------------------------------------------------------------- 1 | 3.0 2 | -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/Externals/Nimble/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/Externals/Nimble/.travis.yml -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/Externals/Nimble/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/Externals/Nimble/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/Externals/Nimble/Gemfile: -------------------------------------------------------------------------------- 1 | # A sample Gemfile 2 | source "https://rubygems.org" 3 | 4 | gem 'cocoapods' 5 | -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/Externals/Nimble/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/Externals/Nimble/Gemfile.lock -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/Externals/Nimble/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/Externals/Nimble/LICENSE.md -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/Externals/Nimble/Nimble.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/Externals/Nimble/Nimble.podspec -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/Externals/Nimble/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/Externals/Nimble/Package.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/Externals/Nimble/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/Externals/Nimble/README.md -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/Externals/Nimble/script/release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/Externals/Nimble/script/release -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/Externals/Nimble/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/Externals/Nimble/test -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gem 'cocoapods', '~> 1.1.0.rc.2' 4 | -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/Gemfile.lock -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/LICENSE -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/Package.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/Quick.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/Quick.podspec -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/Quick.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/Quick.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/README.md -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/Rakefile -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/Sources/Quick/Callsite.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/Sources/Quick/Callsite.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/Sources/Quick/DSL/DSL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/Sources/Quick/DSL/DSL.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/Sources/Quick/DSL/World+DSL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/Sources/Quick/DSL/World+DSL.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/Sources/Quick/ErrorUtility.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/Sources/Quick/ErrorUtility.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/Sources/Quick/Example.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/Sources/Quick/Example.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/Sources/Quick/ExampleGroup.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/Sources/Quick/ExampleGroup.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/Sources/Quick/ExampleMetadata.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/Sources/Quick/ExampleMetadata.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/Sources/Quick/Filter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/Sources/Quick/Filter.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/Sources/Quick/Hooks/Closures.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/Sources/Quick/Hooks/Closures.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/Sources/Quick/Hooks/HooksPhase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/Sources/Quick/Hooks/HooksPhase.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/Sources/Quick/Hooks/SuiteHooks.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/Sources/Quick/Hooks/SuiteHooks.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/Sources/Quick/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/Sources/Quick/Info.plist -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/Sources/Quick/QuickMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/Sources/Quick/QuickMain.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/Sources/Quick/QuickSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/Sources/Quick/QuickSpec.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/Sources/Quick/QuickTestSuite.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/Sources/Quick/QuickTestSuite.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/Sources/Quick/String+FileName.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/Sources/Quick/String+FileName.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/Sources/Quick/World.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/Sources/Quick/World.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/Sources/QuickObjectiveC/DSL/QCKDSL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/Sources/QuickObjectiveC/DSL/QCKDSL.h -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/Sources/QuickObjectiveC/DSL/QCKDSL.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/Sources/QuickObjectiveC/DSL/QCKDSL.m -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/Sources/QuickObjectiveC/Quick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/Sources/QuickObjectiveC/Quick.h -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/Sources/QuickObjectiveC/QuickSpec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/Sources/QuickObjectiveC/QuickSpec.h -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/Sources/QuickObjectiveC/QuickSpec.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/Sources/QuickObjectiveC/QuickSpec.m -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/Sources/QuickObjectiveC/World.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/Sources/QuickObjectiveC/World.h -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/Tests/LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/Tests/LinuxMain.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/script/release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/script/release -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/script/travis-install-linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/script/travis-install-linux -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/script/travis-install-macos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/script/travis-install-macos -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/script/travis-script-linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/script/travis-script-linux -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/script/travis-script-macos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Quick/script/travis-script-macos -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Result/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Result/.gitignore -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Result/.swift-version: -------------------------------------------------------------------------------- 1 | 3.0-GM-CANDIDATE 2 | -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Result/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Result/.travis.yml -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Result/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Result/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Result/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Result/LICENSE -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Result/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Result/Package.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Result/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Result/README.md -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Result/Result.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Result/Result.podspec -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Result/Result.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Result/Result.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Result/Result/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Result/Result/Info.plist -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Result/Result/Result.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Result/Result/Result.h -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Result/Result/Result.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Result/Result/Result.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Result/Result/ResultProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Result/Result/ResultProtocol.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Result/Tests/LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Result/Tests/LinuxMain.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Result/Tests/ResultTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Result/Tests/ResultTests/Info.plist -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Result/Tests/ResultTests/ResultTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/Result/Tests/ResultTests/ResultTests.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/xcconfigs/.gitignore: -------------------------------------------------------------------------------- 1 | Carthage/Build 2 | -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/xcconfigs/Base/Common.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/xcconfigs/Base/Common.xcconfig -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/xcconfigs/Base/Targets/Framework.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/xcconfigs/Base/Targets/Framework.xcconfig -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/xcconfigs/Mac OS X/Mac-Base.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/xcconfigs/Mac OS X/Mac-Base.xcconfig -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/xcconfigs/Mac OS X/Mac-Framework.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/xcconfigs/Mac OS X/Mac-Framework.xcconfig -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/xcconfigs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/xcconfigs/README.md -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/xcconfigs/iOS/iOS-Application.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/xcconfigs/iOS/iOS-Application.xcconfig -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/xcconfigs/iOS/iOS-Base.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/xcconfigs/iOS/iOS-Base.xcconfig -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/xcconfigs/iOS/iOS-Framework.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/xcconfigs/iOS/iOS-Framework.xcconfig -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/xcconfigs/iOS/iOS-StaticLibrary.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/xcconfigs/iOS/iOS-StaticLibrary.xcconfig -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/xcconfigs/tvOS/tvOS-Application.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/xcconfigs/tvOS/tvOS-Application.xcconfig -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/xcconfigs/tvOS/tvOS-Base.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/xcconfigs/tvOS/tvOS-Base.xcconfig -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/xcconfigs/tvOS/tvOS-Framework.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/xcconfigs/tvOS/tvOS-Framework.xcconfig -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/xcconfigs/tvOS/tvOS-StaticLibrary.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/xcconfigs/tvOS/tvOS-StaticLibrary.xcconfig -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/xcconfigs/watchOS/watchOS-Base.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Carthage/Checkouts/xcconfigs/watchOS/watchOS-Base.xcconfig -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Commandant.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Commandant.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Commandant.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Commandant.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/LICENSE.md -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Package.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/README.md -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Sources/Commandant/Argument.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Sources/Commandant/Argument.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Sources/Commandant/ArgumentParser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Sources/Commandant/ArgumentParser.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Sources/Commandant/ArgumentProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Sources/Commandant/ArgumentProtocol.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Sources/Commandant/Command.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Sources/Commandant/Command.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Sources/Commandant/Commandant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Sources/Commandant/Commandant.h -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Sources/Commandant/Errors.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Sources/Commandant/Errors.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Sources/Commandant/HelpCommand.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Sources/Commandant/HelpCommand.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Sources/Commandant/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Sources/Commandant/Info.plist -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Sources/Commandant/LinuxSupport.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Sources/Commandant/LinuxSupport.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Sources/Commandant/Option.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Sources/Commandant/Option.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Sources/Commandant/Switch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Sources/Commandant/Switch.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Tests/CommandantTests/CommandSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Tests/CommandantTests/CommandSpec.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Tests/CommandantTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Tests/CommandantTests/Info.plist -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Tests/CommandantTests/OptionSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Tests/CommandantTests/OptionSpec.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Commandant-0.11.2/Tests/LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Commandant-0.11.2/Tests/LinuxMain.swift -------------------------------------------------------------------------------- /Dependencies/Packages/PathKit-0.7.1/.gitignore: -------------------------------------------------------------------------------- 1 | .build/ 2 | Packages/ 3 | -------------------------------------------------------------------------------- /Dependencies/Packages/PathKit-0.7.1/.swift-version: -------------------------------------------------------------------------------- 1 | 3.0.1 2 | -------------------------------------------------------------------------------- /Dependencies/Packages/PathKit-0.7.1/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/PathKit-0.7.1/.travis.yml -------------------------------------------------------------------------------- /Dependencies/Packages/PathKit-0.7.1/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Changelog 2 | ## 0.7.0 3 | 4 | Adds support for Swift 3.0 5 | -------------------------------------------------------------------------------- /Dependencies/Packages/PathKit-0.7.1/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/PathKit-0.7.1/LICENSE -------------------------------------------------------------------------------- /Dependencies/Packages/PathKit-0.7.1/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/PathKit-0.7.1/Package.swift -------------------------------------------------------------------------------- /Dependencies/Packages/PathKit-0.7.1/PathKit.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/PathKit-0.7.1/PathKit.podspec -------------------------------------------------------------------------------- /Dependencies/Packages/PathKit-0.7.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/PathKit-0.7.1/README.md -------------------------------------------------------------------------------- /Dependencies/Packages/PathKit-0.7.1/Sources/PathKit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/PathKit-0.7.1/Sources/PathKit.swift -------------------------------------------------------------------------------- /Dependencies/Packages/PathKit-0.7.1/Tests/LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/PathKit-0.7.1/Tests/LinuxMain.swift -------------------------------------------------------------------------------- /Dependencies/Packages/PathKit-0.7.1/Tests/PathKitTests/Fixtures/directory/child: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Dependencies/Packages/PathKit-0.7.1/Tests/PathKitTests/Fixtures/directory/subdirectory/child: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Dependencies/Packages/PathKit-0.7.1/Tests/PathKitTests/Fixtures/file: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Dependencies/Packages/PathKit-0.7.1/Tests/PathKitTests/Fixtures/hello: -------------------------------------------------------------------------------- 1 | Hello World 2 | -------------------------------------------------------------------------------- /Dependencies/Packages/PathKit-0.7.1/Tests/PathKitTests/Fixtures/permissions/deletable: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Dependencies/Packages/PathKit-0.7.1/Tests/PathKitTests/Fixtures/permissions/executable: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Dependencies/Packages/PathKit-0.7.1/Tests/PathKitTests/Fixtures/permissions/readable: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Dependencies/Packages/PathKit-0.7.1/Tests/PathKitTests/Fixtures/permissions/writable: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Dependencies/Packages/PathKit-0.7.1/Tests/PathKitTests/Fixtures/symlinks/directory: -------------------------------------------------------------------------------- 1 | ../directory -------------------------------------------------------------------------------- /Dependencies/Packages/PathKit-0.7.1/Tests/PathKitTests/Fixtures/symlinks/file: -------------------------------------------------------------------------------- 1 | ../file -------------------------------------------------------------------------------- /Dependencies/Packages/PathKit-0.7.1/Tests/PathKitTests/Fixtures/symlinks/same-dir: -------------------------------------------------------------------------------- 1 | file -------------------------------------------------------------------------------- /Dependencies/Packages/PathKit-0.7.1/Tests/PathKitTests/Fixtures/symlinks/swift: -------------------------------------------------------------------------------- 1 | /usr/bin/swift -------------------------------------------------------------------------------- /Dependencies/Packages/PathKit-0.7.1/Tests/PathKitTests/PathKitSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/PathKit-0.7.1/Tests/PathKitTests/PathKitSpec.swift -------------------------------------------------------------------------------- /Dependencies/Packages/PathKit-0.7.1/Tests/PathKitTests/XCTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/PathKit-0.7.1/Tests/PathKitTests/XCTest.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Result-3.0.0/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Result-3.0.0/.gitignore -------------------------------------------------------------------------------- /Dependencies/Packages/Result-3.0.0/.swift-version: -------------------------------------------------------------------------------- 1 | 3.0-GM-CANDIDATE 2 | -------------------------------------------------------------------------------- /Dependencies/Packages/Result-3.0.0/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Result-3.0.0/.travis.yml -------------------------------------------------------------------------------- /Dependencies/Packages/Result-3.0.0/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Result-3.0.0/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dependencies/Packages/Result-3.0.0/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Result-3.0.0/LICENSE -------------------------------------------------------------------------------- /Dependencies/Packages/Result-3.0.0/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Result-3.0.0/Package.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Result-3.0.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Result-3.0.0/README.md -------------------------------------------------------------------------------- /Dependencies/Packages/Result-3.0.0/Result.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Result-3.0.0/Result.podspec -------------------------------------------------------------------------------- /Dependencies/Packages/Result-3.0.0/Result.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Result-3.0.0/Result.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Dependencies/Packages/Result-3.0.0/Result.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Result-3.0.0/Result.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Dependencies/Packages/Result-3.0.0/Result.xcodeproj/xcshareddata/xcschemes/Result-Mac.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Result-3.0.0/Result.xcodeproj/xcshareddata/xcschemes/Result-Mac.xcscheme -------------------------------------------------------------------------------- /Dependencies/Packages/Result-3.0.0/Result.xcodeproj/xcshareddata/xcschemes/Result-iOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Result-3.0.0/Result.xcodeproj/xcshareddata/xcschemes/Result-iOS.xcscheme -------------------------------------------------------------------------------- /Dependencies/Packages/Result-3.0.0/Result.xcodeproj/xcshareddata/xcschemes/Result-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Result-3.0.0/Result.xcodeproj/xcshareddata/xcschemes/Result-tvOS.xcscheme -------------------------------------------------------------------------------- /Dependencies/Packages/Result-3.0.0/Result.xcodeproj/xcshareddata/xcschemes/Result-watchOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Result-3.0.0/Result.xcodeproj/xcshareddata/xcschemes/Result-watchOS.xcscheme -------------------------------------------------------------------------------- /Dependencies/Packages/Result-3.0.0/Result/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Result-3.0.0/Result/Info.plist -------------------------------------------------------------------------------- /Dependencies/Packages/Result-3.0.0/Result/Result.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Result-3.0.0/Result/Result.h -------------------------------------------------------------------------------- /Dependencies/Packages/Result-3.0.0/Result/Result.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Result-3.0.0/Result/Result.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Result-3.0.0/Result/ResultProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Result-3.0.0/Result/ResultProtocol.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Result-3.0.0/Tests/LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Result-3.0.0/Tests/LinuxMain.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Result-3.0.0/Tests/ResultTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Result-3.0.0/Tests/ResultTests/Info.plist -------------------------------------------------------------------------------- /Dependencies/Packages/Result-3.0.0/Tests/ResultTests/ResultTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Result-3.0.0/Tests/ResultTests/ResultTests.swift -------------------------------------------------------------------------------- /Dependencies/Packages/SWXMLHash-3.0.2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SWXMLHash-3.0.2/.gitignore -------------------------------------------------------------------------------- /Dependencies/Packages/SWXMLHash-3.0.2/.swift-version: -------------------------------------------------------------------------------- 1 | 3.0-PREVIEW-6 2 | -------------------------------------------------------------------------------- /Dependencies/Packages/SWXMLHash-3.0.2/.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SWXMLHash-3.0.2/.swiftlint.yml -------------------------------------------------------------------------------- /Dependencies/Packages/SWXMLHash-3.0.2/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SWXMLHash-3.0.2/.travis.yml -------------------------------------------------------------------------------- /Dependencies/Packages/SWXMLHash-3.0.2/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SWXMLHash-3.0.2/CHANGELOG.md -------------------------------------------------------------------------------- /Dependencies/Packages/SWXMLHash-3.0.2/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SWXMLHash-3.0.2/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dependencies/Packages/SWXMLHash-3.0.2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SWXMLHash-3.0.2/LICENSE -------------------------------------------------------------------------------- /Dependencies/Packages/SWXMLHash-3.0.2/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SWXMLHash-3.0.2/Package.swift -------------------------------------------------------------------------------- /Dependencies/Packages/SWXMLHash-3.0.2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SWXMLHash-3.0.2/README.md -------------------------------------------------------------------------------- /Dependencies/Packages/SWXMLHash-3.0.2/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SWXMLHash-3.0.2/Rakefile -------------------------------------------------------------------------------- /Dependencies/Packages/SWXMLHash-3.0.2/SWXMLHash.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SWXMLHash-3.0.2/SWXMLHash.podspec -------------------------------------------------------------------------------- /Dependencies/Packages/SWXMLHash-3.0.2/SWXMLHash.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SWXMLHash-3.0.2/SWXMLHash.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Dependencies/Packages/SWXMLHash-3.0.2/SWXMLHash.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SWXMLHash-3.0.2/SWXMLHash.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Dependencies/Packages/SWXMLHash-3.0.2/SWXMLHashPlayground.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SWXMLHash-3.0.2/SWXMLHashPlayground.playground/contents.xcplayground -------------------------------------------------------------------------------- /Dependencies/Packages/SWXMLHash-3.0.2/SWXMLHashPlayground.playground/section-1.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SWXMLHash-3.0.2/SWXMLHashPlayground.playground/section-1.swift -------------------------------------------------------------------------------- /Dependencies/Packages/SWXMLHash-3.0.2/Scripts/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SWXMLHash-3.0.2/Scripts/build.sh -------------------------------------------------------------------------------- /Dependencies/Packages/SWXMLHash-3.0.2/Source/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SWXMLHash-3.0.2/Source/Info.plist -------------------------------------------------------------------------------- /Dependencies/Packages/SWXMLHash-3.0.2/Source/SWXMLHash+TypeConversion.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SWXMLHash-3.0.2/Source/SWXMLHash+TypeConversion.swift -------------------------------------------------------------------------------- /Dependencies/Packages/SWXMLHash-3.0.2/Source/SWXMLHash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SWXMLHash-3.0.2/Source/SWXMLHash.h -------------------------------------------------------------------------------- /Dependencies/Packages/SWXMLHash-3.0.2/Source/SWXMLHash.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SWXMLHash-3.0.2/Source/SWXMLHash.swift -------------------------------------------------------------------------------- /Dependencies/Packages/SWXMLHash-3.0.2/Tests/LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SWXMLHash-3.0.2/Tests/LinuxMain.swift -------------------------------------------------------------------------------- /Dependencies/Packages/SWXMLHash-3.0.2/Tests/SWXMLHashTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SWXMLHash-3.0.2/Tests/SWXMLHashTests/Info.plist -------------------------------------------------------------------------------- /Dependencies/Packages/SWXMLHash-3.0.2/Tests/SWXMLHashTests/LazyTypesConversionTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SWXMLHash-3.0.2/Tests/SWXMLHashTests/LazyTypesConversionTests.swift -------------------------------------------------------------------------------- /Dependencies/Packages/SWXMLHash-3.0.2/Tests/SWXMLHashTests/LazyWhiteSpaceParsingTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SWXMLHash-3.0.2/Tests/SWXMLHashTests/LazyWhiteSpaceParsingTests.swift -------------------------------------------------------------------------------- /Dependencies/Packages/SWXMLHash-3.0.2/Tests/SWXMLHashTests/LazyXMLParsingTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SWXMLHash-3.0.2/Tests/SWXMLHashTests/LazyXMLParsingTests.swift -------------------------------------------------------------------------------- /Dependencies/Packages/SWXMLHash-3.0.2/Tests/SWXMLHashTests/LinuxShims.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SWXMLHash-3.0.2/Tests/SWXMLHashTests/LinuxShims.swift -------------------------------------------------------------------------------- /Dependencies/Packages/SWXMLHash-3.0.2/Tests/SWXMLHashTests/MixedTextWithXMLElementsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SWXMLHash-3.0.2/Tests/SWXMLHashTests/MixedTextWithXMLElementsTests.swift -------------------------------------------------------------------------------- /Dependencies/Packages/SWXMLHash-3.0.2/Tests/SWXMLHashTests/SWXMLHashConfigTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SWXMLHash-3.0.2/Tests/SWXMLHashTests/SWXMLHashConfigTests.swift -------------------------------------------------------------------------------- /Dependencies/Packages/SWXMLHash-3.0.2/Tests/SWXMLHashTests/TypeConversionBasicTypesTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SWXMLHash-3.0.2/Tests/SWXMLHashTests/TypeConversionBasicTypesTests.swift -------------------------------------------------------------------------------- /Dependencies/Packages/SWXMLHash-3.0.2/Tests/SWXMLHashTests/TypeConversionComplexTypesTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SWXMLHash-3.0.2/Tests/SWXMLHashTests/TypeConversionComplexTypesTests.swift -------------------------------------------------------------------------------- /Dependencies/Packages/SWXMLHash-3.0.2/Tests/SWXMLHashTests/TypeConversionPrimitypeTypesTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SWXMLHash-3.0.2/Tests/SWXMLHashTests/TypeConversionPrimitypeTypesTests.swift -------------------------------------------------------------------------------- /Dependencies/Packages/SWXMLHash-3.0.2/Tests/SWXMLHashTests/WhiteSpaceParsingTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SWXMLHash-3.0.2/Tests/SWXMLHashTests/WhiteSpaceParsingTests.swift -------------------------------------------------------------------------------- /Dependencies/Packages/SWXMLHash-3.0.2/Tests/SWXMLHashTests/XMLParsingTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SWXMLHash-3.0.2/Tests/SWXMLHashTests/XMLParsingTests.swift -------------------------------------------------------------------------------- /Dependencies/Packages/SWXMLHash-3.0.2/Tests/SWXMLHashTests/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SWXMLHash-3.0.2/Tests/SWXMLHashTests/test.xml -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKit-1.0.1/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKit-1.0.1/.gitignore -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKit-1.0.1/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKit-1.0.1/Package.swift -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKit-1.0.1/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKit-1.0.1/module.modulemap -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKit-1.0.1/sourcekitd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKit-1.0.1/sourcekitd.h -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/.gitattributes -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/.gitignore -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/.gitmodules -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/.swift-version: -------------------------------------------------------------------------------- 1 | 3.0 2 | -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/.travis.yml -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/CHANGELOG.md -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Cartfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Cartfile -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Cartfile.private: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Cartfile.private -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Cartfile.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Cartfile.resolved -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/Commandant/.Package.test.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/Commandant/.Package.test.swift -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/Commandant/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/Commandant/.gitignore -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/Commandant/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/Commandant/.gitmodules -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/Commandant/.swift-version: -------------------------------------------------------------------------------- 1 | 3.0 2 | -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/Commandant/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/Commandant/.travis.yml -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/Commandant/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/Commandant/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/Commandant/Cartfile: -------------------------------------------------------------------------------- 1 | github "antitypical/Result" ~> 3.0 2 | -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/Commandant/Cartfile.private: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/Commandant/Cartfile.private -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/Commandant/Cartfile.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/Commandant/Cartfile.resolved -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/Commandant/Carthage/Checkouts/Nimble/.swift-version: -------------------------------------------------------------------------------- 1 | 3.0 2 | -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/Commandant/Carthage/Checkouts/Nimble/Gemfile: -------------------------------------------------------------------------------- 1 | # A sample Gemfile 2 | source "https://rubygems.org" 3 | 4 | gem 'cocoapods' 5 | -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/Commandant/Carthage/Checkouts/Quick/.swift-version: -------------------------------------------------------------------------------- 1 | 3.0 2 | -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/Commandant/Carthage/Checkouts/Quick/Externals/Nimble/.swift-version: -------------------------------------------------------------------------------- 1 | 3.0 2 | -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/Commandant/Carthage/Checkouts/Quick/Externals/Nimble/Gemfile: -------------------------------------------------------------------------------- 1 | # A sample Gemfile 2 | source "https://rubygems.org" 3 | 4 | gem 'cocoapods' 5 | -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/Commandant/Carthage/Checkouts/Quick/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gem 'cocoapods', '~> 1.1.0.rc.2' 4 | -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/Commandant/Carthage/Checkouts/Result/.swift-version: -------------------------------------------------------------------------------- 1 | 3.0-GM-CANDIDATE 2 | -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/Commandant/Carthage/Checkouts/xcconfigs/.gitignore: -------------------------------------------------------------------------------- 1 | Carthage/Build 2 | -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/Commandant/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/Commandant/LICENSE.md -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/Commandant/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/Commandant/Package.swift -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/Commandant/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/Commandant/README.md -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/Commandant/Sources/Commandant/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/Commandant/Sources/Commandant/Info.plist -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/Commandant/Tests/LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/Commandant/Tests/LinuxMain.swift -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/Result/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/Result/.gitignore -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/Result/.swift-version: -------------------------------------------------------------------------------- 1 | 3.0-GM-CANDIDATE 2 | -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/Result/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/Result/.travis.yml -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/Result/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/Result/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/Result/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/Result/LICENSE -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/Result/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/Result/Package.swift -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/Result/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/Result/README.md -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/Result/Result.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/Result/Result.podspec -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/Result/Result.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/Result/Result.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/Result/Result/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/Result/Result/Info.plist -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/Result/Result/Result.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/Result/Result/Result.h -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/Result/Result/Result.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/Result/Result/Result.swift -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/Result/Result/ResultProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/Result/Result/ResultProtocol.swift -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/Result/Tests/LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/Result/Tests/LinuxMain.swift -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/Result/Tests/ResultTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/Result/Tests/ResultTests/Info.plist -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/SWXMLHash/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/SWXMLHash/.gitignore -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/SWXMLHash/.swift-version: -------------------------------------------------------------------------------- 1 | 3.0 2 | -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/SWXMLHash/.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/SWXMLHash/.swiftlint.yml -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/SWXMLHash/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/SWXMLHash/.travis.yml -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/SWXMLHash/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/SWXMLHash/CHANGELOG.md -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/SWXMLHash/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/SWXMLHash/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/SWXMLHash/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/SWXMLHash/LICENSE -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/SWXMLHash/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/SWXMLHash/Package.swift -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/SWXMLHash/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/SWXMLHash/README.md -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/SWXMLHash/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/SWXMLHash/Rakefile -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/SWXMLHash/SWXMLHash.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/SWXMLHash/SWXMLHash.podspec -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/SWXMLHash/Scripts/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/SWXMLHash/Scripts/build.sh -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/SWXMLHash/Source/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/SWXMLHash/Source/Info.plist -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/SWXMLHash/Source/SWXMLHash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/SWXMLHash/Source/SWXMLHash.h -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/SWXMLHash/Source/SWXMLHash.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/SWXMLHash/Source/SWXMLHash.swift -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/SWXMLHash/Tests/LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/SWXMLHash/Tests/LinuxMain.swift -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/SWXMLHash/Tests/SWXMLHashTests/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/SWXMLHash/Tests/SWXMLHashTests/test.xml -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/Yams/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/Yams/.gitignore -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/Yams/.swift-version: -------------------------------------------------------------------------------- 1 | 3.0 2 | -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/Yams/.swiftlint.yml: -------------------------------------------------------------------------------- 1 | line_length: 120 2 | -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/Yams/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/Yams/.travis.yml -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/Yams/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/Yams/LICENSE -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/Yams/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/Yams/Package.swift -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/Yams/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/Yams/README.md -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/Yams/Sources/CYaml/include/yaml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/Yams/Sources/CYaml/include/yaml.h -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/Yams/Sources/CYaml/src/api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/Yams/Sources/CYaml/src/api.c -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/Yams/Sources/CYaml/src/dumper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/Yams/Sources/CYaml/src/dumper.c -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/Yams/Sources/CYaml/src/emitter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/Yams/Sources/CYaml/src/emitter.c -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/Yams/Sources/CYaml/src/loader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/Yams/Sources/CYaml/src/loader.c -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/Yams/Sources/CYaml/src/parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/Yams/Sources/CYaml/src/parser.c -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/Yams/Sources/CYaml/src/reader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/Yams/Sources/CYaml/src/reader.c -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/Yams/Sources/CYaml/src/scanner.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/Yams/Sources/CYaml/src/scanner.c -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/Yams/Sources/CYaml/src/writer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/Yams/Sources/CYaml/src/writer.c -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/Yams/Sources/CYaml/src/yaml_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/Yams/Sources/CYaml/src/yaml_private.h -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/Yams/Sources/Yams/Yams.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/Yams/Sources/Yams/Yams.swift -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/Yams/Tests/LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/Yams/Tests/LinuxMain.swift -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/Yams/Tests/YamsTests/YamsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/Yams/Tests/YamsTests/YamsTests.swift -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/Yams/Yams.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/Yams/Yams.podspec -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/Yams/Yams.xcodeproj/CYaml_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/Yams/Yams.xcodeproj/CYaml_Info.plist -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/Yams/Yams.xcodeproj/YamsTests_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/Yams/Yams.xcodeproj/YamsTests_Info.plist -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/Yams/Yams.xcodeproj/Yams_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/Yams/Yams.xcodeproj/Yams_Info.plist -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/Yams/Yams.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/Yams/Yams.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/xcconfigs/.gitignore: -------------------------------------------------------------------------------- 1 | Carthage/Build 2 | -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/xcconfigs/Base/Common.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/xcconfigs/Base/Common.xcconfig -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/xcconfigs/Mac OS X/Mac-Base.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/xcconfigs/Mac OS X/Mac-Base.xcconfig -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/xcconfigs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/xcconfigs/README.md -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/xcconfigs/iOS/iOS-Application.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/xcconfigs/iOS/iOS-Application.xcconfig -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/xcconfigs/iOS/iOS-Base.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/xcconfigs/iOS/iOS-Base.xcconfig -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/xcconfigs/iOS/iOS-Framework.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/xcconfigs/iOS/iOS-Framework.xcconfig -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/xcconfigs/iOS/iOS-StaticLibrary.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/xcconfigs/iOS/iOS-StaticLibrary.xcconfig -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/xcconfigs/tvOS/tvOS-Application.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/xcconfigs/tvOS/tvOS-Application.xcconfig -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/xcconfigs/tvOS/tvOS-Base.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/xcconfigs/tvOS/tvOS-Base.xcconfig -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/xcconfigs/tvOS/tvOS-Framework.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/xcconfigs/tvOS/tvOS-Framework.xcconfig -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/xcconfigs/watchOS/watchOS-Base.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Carthage/Checkouts/xcconfigs/watchOS/watchOS-Base.xcconfig -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Dangerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Dangerfile -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/LICENSE -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Makefile -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Package.swift -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/README.md -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Releasing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Releasing.md -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Source/SourceKittenFramework/Clang+SourceKitten.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Source/SourceKittenFramework/Clang+SourceKitten.swift -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Source/SourceKittenFramework/ClangTranslationUnit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Source/SourceKittenFramework/ClangTranslationUnit.swift -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Source/SourceKittenFramework/CodeCompletionItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Source/SourceKittenFramework/CodeCompletionItem.swift -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Source/SourceKittenFramework/Dictionary+Merge.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Source/SourceKittenFramework/Dictionary+Merge.swift -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Source/SourceKittenFramework/Documentation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Source/SourceKittenFramework/Documentation.swift -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Source/SourceKittenFramework/File.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Source/SourceKittenFramework/File.swift -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Source/SourceKittenFramework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Source/SourceKittenFramework/Info.plist -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Source/SourceKittenFramework/JSONOutput.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Source/SourceKittenFramework/JSONOutput.swift -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Source/SourceKittenFramework/Language.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Source/SourceKittenFramework/Language.swift -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Source/SourceKittenFramework/LinuxCompatibility.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Source/SourceKittenFramework/LinuxCompatibility.swift -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Source/SourceKittenFramework/Module.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Source/SourceKittenFramework/Module.swift -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Source/SourceKittenFramework/ObjCDeclarationKind.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Source/SourceKittenFramework/ObjCDeclarationKind.swift -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Source/SourceKittenFramework/OffsetMap.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Source/SourceKittenFramework/OffsetMap.swift -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Source/SourceKittenFramework/Parameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Source/SourceKittenFramework/Parameter.swift -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Source/SourceKittenFramework/Request.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Source/SourceKittenFramework/Request.swift -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Source/SourceKittenFramework/SourceDeclaration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Source/SourceKittenFramework/SourceDeclaration.swift -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Source/SourceKittenFramework/SourceKittenFramework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Source/SourceKittenFramework/SourceKittenFramework.h -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Source/SourceKittenFramework/SourceLocation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Source/SourceKittenFramework/SourceLocation.swift -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Source/SourceKittenFramework/StatementKind.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Source/SourceKittenFramework/StatementKind.swift -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Source/SourceKittenFramework/String+SourceKitten.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Source/SourceKittenFramework/String+SourceKitten.swift -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Source/SourceKittenFramework/Structure.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Source/SourceKittenFramework/Structure.swift -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Source/SourceKittenFramework/SwiftDeclarationKind.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Source/SourceKittenFramework/SwiftDeclarationKind.swift -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Source/SourceKittenFramework/SwiftDocKey.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Source/SourceKittenFramework/SwiftDocKey.swift -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Source/SourceKittenFramework/SwiftDocs.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Source/SourceKittenFramework/SwiftDocs.swift -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Source/SourceKittenFramework/SwiftLangSyntax.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Source/SourceKittenFramework/SwiftLangSyntax.swift -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Source/SourceKittenFramework/SyntaxKind.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Source/SourceKittenFramework/SyntaxKind.swift -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Source/SourceKittenFramework/SyntaxMap.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Source/SourceKittenFramework/SyntaxMap.swift -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Source/SourceKittenFramework/SyntaxToken.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Source/SourceKittenFramework/SyntaxToken.swift -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Source/SourceKittenFramework/Text.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Source/SourceKittenFramework/Text.swift -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Source/SourceKittenFramework/Xcode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Source/SourceKittenFramework/Xcode.swift -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Source/SourceKittenFramework/clang-c/BuildSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Source/SourceKittenFramework/clang-c/BuildSystem.h -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Source/SourceKittenFramework/clang-c/CXErrorCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Source/SourceKittenFramework/clang-c/CXErrorCode.h -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Source/SourceKittenFramework/clang-c/CXString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Source/SourceKittenFramework/clang-c/CXString.h -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Source/SourceKittenFramework/clang-c/Documentation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Source/SourceKittenFramework/clang-c/Documentation.h -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Source/SourceKittenFramework/clang-c/Index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Source/SourceKittenFramework/clang-c/Index.h -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Source/SourceKittenFramework/clang-c/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Source/SourceKittenFramework/clang-c/Makefile -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Source/SourceKittenFramework/clang-c/Platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Source/SourceKittenFramework/clang-c/Platform.h -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Source/SourceKittenFramework/clang-c/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Source/SourceKittenFramework/clang-c/module.modulemap -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Source/SourceKittenFramework/library_wrapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Source/SourceKittenFramework/library_wrapper.swift -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Source/SourceKittenFramework/library_wrapper_CXString.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Source/SourceKittenFramework/library_wrapper_CXString.swift -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Source/SourceKittenFramework/library_wrapper_Index.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Source/SourceKittenFramework/library_wrapper_Index.swift -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Source/SourceKittenFramework/sourcekitd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Source/SourceKittenFramework/sourcekitd.h -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Source/sourcekitten/CompleteCommand.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Source/sourcekitten/CompleteCommand.swift -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Source/sourcekitten/Components.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Source/sourcekitten/Components.plist -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Source/sourcekitten/DocCommand.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Source/sourcekitten/DocCommand.swift -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Source/sourcekitten/Errors.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Source/sourcekitten/Errors.swift -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Source/sourcekitten/FormatCommand.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Source/sourcekitten/FormatCommand.swift -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Source/sourcekitten/IndexCommand.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Source/sourcekitten/IndexCommand.swift -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Source/sourcekitten/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Source/sourcekitten/Info.plist -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Source/sourcekitten/StructureCommand.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Source/sourcekitten/StructureCommand.swift -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Source/sourcekitten/SyntaxCommand.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Source/sourcekitten/SyntaxCommand.swift -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Source/sourcekitten/VersionCommand.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Source/sourcekitten/VersionCommand.swift -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Source/sourcekitten/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Source/sourcekitten/main.swift -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/SourceKitten.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/SourceKitten.podspec -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/SourceKitten.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/SourceKitten.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Tests/LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Tests/LinuxMain.swift -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Tests/SourceKittenFrameworkTests/CodeCompletionTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Tests/SourceKittenFrameworkTests/CodeCompletionTests.swift -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Tests/SourceKittenFrameworkTests/DocInfoTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Tests/SourceKittenFrameworkTests/DocInfoTests.swift -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Tests/SourceKittenFrameworkTests/FileTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Tests/SourceKittenFrameworkTests/FileTests.swift -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Tests/SourceKittenFrameworkTests/Fixtures/Bicycle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Tests/SourceKittenFrameworkTests/Fixtures/Bicycle.json -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Tests/SourceKittenFrameworkTests/Fixtures/Bicycle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Tests/SourceKittenFrameworkTests/Fixtures/Bicycle.swift -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Tests/SourceKittenFrameworkTests/Fixtures/BicycleIndex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Tests/SourceKittenFrameworkTests/Fixtures/BicycleIndex.json -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Tests/SourceKittenFrameworkTests/Fixtures/Commandant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Tests/SourceKittenFrameworkTests/Fixtures/Commandant.json -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Tests/SourceKittenFrameworkTests/Fixtures/DocInfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Tests/SourceKittenFrameworkTests/Fixtures/DocInfo.json -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Tests/SourceKittenFrameworkTests/Fixtures/DocInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Tests/SourceKittenFrameworkTests/Fixtures/DocInfo.swift -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Tests/SourceKittenFrameworkTests/Fixtures/LinuxBicycle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Tests/SourceKittenFrameworkTests/Fixtures/LinuxBicycle.json -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Tests/SourceKittenFrameworkTests/Fixtures/ModuleInfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Tests/SourceKittenFrameworkTests/Fixtures/ModuleInfo.json -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Tests/SourceKittenFrameworkTests/Fixtures/Musician.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Tests/SourceKittenFrameworkTests/Fixtures/Musician.h -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Tests/SourceKittenFrameworkTests/Fixtures/Musician.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Tests/SourceKittenFrameworkTests/Fixtures/Musician.json -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Tests/SourceKittenFrameworkTests/Fixtures/Realm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Tests/SourceKittenFrameworkTests/Fixtures/Realm.json -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Tests/SourceKittenFrameworkTests/Fixtures/Realm/RLMArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Tests/SourceKittenFrameworkTests/Fixtures/Realm/RLMArray.h -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Tests/SourceKittenFrameworkTests/Fixtures/Realm/RLMObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Tests/SourceKittenFrameworkTests/Fixtures/Realm/RLMObject.h -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Tests/SourceKittenFrameworkTests/Fixtures/Realm/RLMPlatform.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Tests/SourceKittenFrameworkTests/Fixtures/Realm/RLMPrefix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Tests/SourceKittenFrameworkTests/Fixtures/Realm/RLMPrefix.h -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Tests/SourceKittenFrameworkTests/Fixtures/Realm/RLMRealm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Tests/SourceKittenFrameworkTests/Fixtures/Realm/RLMRealm.h -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Tests/SourceKittenFrameworkTests/Fixtures/Realm/RLMSchema.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Tests/SourceKittenFrameworkTests/Fixtures/Realm/RLMSchema.h -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Tests/SourceKittenFrameworkTests/Fixtures/Realm/Realm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Tests/SourceKittenFrameworkTests/Fixtures/Realm/Realm.h -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Tests/SourceKittenFrameworkTests/Fixtures/Subscript.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Tests/SourceKittenFrameworkTests/Fixtures/Subscript.json -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Tests/SourceKittenFrameworkTests/Fixtures/Subscript.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Tests/SourceKittenFrameworkTests/Fixtures/Subscript.swift -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Tests/SourceKittenFrameworkTests/Fixtures/SuperScript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Tests/SourceKittenFrameworkTests/Fixtures/SuperScript.h -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Tests/SourceKittenFrameworkTests/Fixtures/SuperScript.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Tests/SourceKittenFrameworkTests/Fixtures/SuperScript.json -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Tests/SourceKittenFrameworkTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Tests/SourceKittenFrameworkTests/Info.plist -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Tests/SourceKittenFrameworkTests/ModuleTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Tests/SourceKittenFrameworkTests/ModuleTests.swift -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Tests/SourceKittenFrameworkTests/OffsetMapTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Tests/SourceKittenFrameworkTests/OffsetMapTests.swift -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Tests/SourceKittenFrameworkTests/SourceKitTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Tests/SourceKittenFrameworkTests/SourceKitTests.swift -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Tests/SourceKittenFrameworkTests/StringTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Tests/SourceKittenFrameworkTests/StringTests.swift -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Tests/SourceKittenFrameworkTests/StructureTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Tests/SourceKittenFrameworkTests/StructureTests.swift -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Tests/SourceKittenFrameworkTests/SwiftDocsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Tests/SourceKittenFrameworkTests/SwiftDocsTests.swift -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/Tests/SourceKittenFrameworkTests/SyntaxTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/Tests/SourceKittenFrameworkTests/SyntaxTests.swift -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/jazzy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/jazzy.sh -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/script/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/script/LICENSE.md -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/script/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/script/README.md -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/script/bootstrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/script/bootstrap -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/script/check-xcode-version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/script/check-xcode-version -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/script/cibuild: -------------------------------------------------------------------------------- 1 | make test package 2 | -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/script/extract-tool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/script/extract-tool -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/script/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/script/module.modulemap -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/script/spm_bootstrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/script/spm_bootstrap -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/script/spm_teardown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/script/spm_teardown -------------------------------------------------------------------------------- /Dependencies/Packages/SourceKitten-0.15.0/sourcekitten.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/SourceKitten-0.15.0/sourcekitten.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Dependencies/Packages/Spectre-0.7.2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Spectre-0.7.2/.gitignore -------------------------------------------------------------------------------- /Dependencies/Packages/Spectre-0.7.2/.swift-version: -------------------------------------------------------------------------------- 1 | 3.0.1 2 | -------------------------------------------------------------------------------- /Dependencies/Packages/Spectre-0.7.2/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Spectre-0.7.2/.travis.yml -------------------------------------------------------------------------------- /Dependencies/Packages/Spectre-0.7.2/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Spectre-0.7.2/CHANGELOG.md -------------------------------------------------------------------------------- /Dependencies/Packages/Spectre-0.7.2/IntegrationTests/Disabled-expected-dot-output.txt: -------------------------------------------------------------------------------- 1 | .S 2 | 3 | 1 passes 1 skipped, and 0 failures 4 | -------------------------------------------------------------------------------- /Dependencies/Packages/Spectre-0.7.2/IntegrationTests/Disabled-expected-output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Spectre-0.7.2/IntegrationTests/Disabled-expected-output.txt -------------------------------------------------------------------------------- /Dependencies/Packages/Spectre-0.7.2/IntegrationTests/Disabled-expected-tap-output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Spectre-0.7.2/IntegrationTests/Disabled-expected-tap-output.txt -------------------------------------------------------------------------------- /Dependencies/Packages/Spectre-0.7.2/IntegrationTests/Failing-expected-dot-output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Spectre-0.7.2/IntegrationTests/Failing-expected-dot-output.txt -------------------------------------------------------------------------------- /Dependencies/Packages/Spectre-0.7.2/IntegrationTests/Failing-expected-output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Spectre-0.7.2/IntegrationTests/Failing-expected-output.txt -------------------------------------------------------------------------------- /Dependencies/Packages/Spectre-0.7.2/IntegrationTests/Failing-expected-tap-output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Spectre-0.7.2/IntegrationTests/Failing-expected-tap-output.txt -------------------------------------------------------------------------------- /Dependencies/Packages/Spectre-0.7.2/IntegrationTests/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Spectre-0.7.2/IntegrationTests/Package.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Spectre-0.7.2/IntegrationTests/Passing-expected-dot-output.txt: -------------------------------------------------------------------------------- 1 | . 2 | 3 | 1 passes and 0 failures 4 | -------------------------------------------------------------------------------- /Dependencies/Packages/Spectre-0.7.2/IntegrationTests/Passing-expected-output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Spectre-0.7.2/IntegrationTests/Passing-expected-output.txt -------------------------------------------------------------------------------- /Dependencies/Packages/Spectre-0.7.2/IntegrationTests/Passing-expected-tap-output.txt: -------------------------------------------------------------------------------- 1 | ok 1 - a person named kyle is Kyle 2 | 1..1 3 | -------------------------------------------------------------------------------- /Dependencies/Packages/Spectre-0.7.2/IntegrationTests/Sources/Disabled/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Spectre-0.7.2/IntegrationTests/Sources/Disabled/main.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Spectre-0.7.2/IntegrationTests/Sources/Failing/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Spectre-0.7.2/IntegrationTests/Sources/Failing/main.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Spectre-0.7.2/IntegrationTests/Sources/Passing/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Spectre-0.7.2/IntegrationTests/Sources/Passing/main.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Spectre-0.7.2/IntegrationTests/Sources/Spectre: -------------------------------------------------------------------------------- 1 | ../../Sources/ -------------------------------------------------------------------------------- /Dependencies/Packages/Spectre-0.7.2/IntegrationTests/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Spectre-0.7.2/IntegrationTests/run.sh -------------------------------------------------------------------------------- /Dependencies/Packages/Spectre-0.7.2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Spectre-0.7.2/LICENSE -------------------------------------------------------------------------------- /Dependencies/Packages/Spectre-0.7.2/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Spectre-0.7.2/Package.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Spectre-0.7.2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Spectre-0.7.2/README.md -------------------------------------------------------------------------------- /Dependencies/Packages/Spectre-0.7.2/Screenshots/Playground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Spectre-0.7.2/Screenshots/Playground.png -------------------------------------------------------------------------------- /Dependencies/Packages/Spectre-0.7.2/Screenshots/failure-dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Spectre-0.7.2/Screenshots/failure-dot.png -------------------------------------------------------------------------------- /Dependencies/Packages/Spectre-0.7.2/Screenshots/failure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Spectre-0.7.2/Screenshots/failure.png -------------------------------------------------------------------------------- /Dependencies/Packages/Spectre-0.7.2/Screenshots/success-dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Spectre-0.7.2/Screenshots/success-dot.png -------------------------------------------------------------------------------- /Dependencies/Packages/Spectre-0.7.2/Screenshots/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Spectre-0.7.2/Screenshots/success.png -------------------------------------------------------------------------------- /Dependencies/Packages/Spectre-0.7.2/Sources/Case.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Spectre-0.7.2/Sources/Case.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Spectre-0.7.2/Sources/Context.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Spectre-0.7.2/Sources/Context.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Spectre-0.7.2/Sources/Expectation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Spectre-0.7.2/Sources/Expectation.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Spectre-0.7.2/Sources/Failure.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Spectre-0.7.2/Sources/Failure.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Spectre-0.7.2/Sources/Global.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Spectre-0.7.2/Sources/Global.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Spectre-0.7.2/Sources/GlobalContext.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Spectre-0.7.2/Sources/GlobalContext.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Spectre-0.7.2/Sources/Reporter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Spectre-0.7.2/Sources/Reporter.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Spectre-0.7.2/Sources/Reporters.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Spectre-0.7.2/Sources/Reporters.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Spectre-0.7.2/Spectre.playground/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Spectre-0.7.2/Spectre.playground/Contents.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Spectre-0.7.2/Spectre.playground/Sources/Case.swift: -------------------------------------------------------------------------------- 1 | ../../Sources/Case.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Spectre-0.7.2/Spectre.playground/Sources/Compatibility.swift: -------------------------------------------------------------------------------- 1 | ../../Sources/Compatibility.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Spectre-0.7.2/Spectre.playground/Sources/Context.swift: -------------------------------------------------------------------------------- 1 | ../../Sources/Context.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Spectre-0.7.2/Spectre.playground/Sources/Expectation.swift: -------------------------------------------------------------------------------- 1 | ../../Sources/Expectation.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Spectre-0.7.2/Spectre.playground/Sources/Failure.swift: -------------------------------------------------------------------------------- 1 | ../../Sources/Failure.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Spectre-0.7.2/Spectre.playground/Sources/GlobalContext.swift: -------------------------------------------------------------------------------- 1 | ../../Sources/GlobalContext.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Spectre-0.7.2/Spectre.playground/Sources/Playground.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Spectre-0.7.2/Spectre.playground/Sources/Playground.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Spectre-0.7.2/Spectre.playground/Sources/Reporter.swift: -------------------------------------------------------------------------------- 1 | ../../Sources/Reporter.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Spectre-0.7.2/Spectre.playground/Sources/Reporters.swift: -------------------------------------------------------------------------------- 1 | ../../Sources/Reporters.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Spectre-0.7.2/Spectre.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Spectre-0.7.2/Spectre.playground/contents.xcplayground -------------------------------------------------------------------------------- /Dependencies/Packages/Spectre-0.7.2/Spectre.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Spectre-0.7.2/Spectre.podspec.json -------------------------------------------------------------------------------- /Dependencies/Packages/Spectre-0.7.2/Tests/LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Spectre-0.7.2/Tests/LinuxMain.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Spectre-0.7.2/Tests/SpectreTests/ExpectationSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Spectre-0.7.2/Tests/SpectreTests/ExpectationSpec.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Spectre-0.7.2/Tests/SpectreTests/FailureSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Spectre-0.7.2/Tests/SpectreTests/FailureSpec.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Spectre-0.7.2/Tests/SpectreTests/XCTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Spectre-0.7.2/Tests/SpectreTests/XCTest.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Stencil-0.6.0/.gitignore: -------------------------------------------------------------------------------- 1 | .conche/ 2 | .build/ 3 | Packages/ 4 | -------------------------------------------------------------------------------- /Dependencies/Packages/Stencil-0.6.0/.swift-version: -------------------------------------------------------------------------------- 1 | 3.0-GM-CANDIDATE 2 | -------------------------------------------------------------------------------- /Dependencies/Packages/Stencil-0.6.0/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Stencil-0.6.0/.travis.yml -------------------------------------------------------------------------------- /Dependencies/Packages/Stencil-0.6.0/ARCHITECTURE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Stencil-0.6.0/ARCHITECTURE.md -------------------------------------------------------------------------------- /Dependencies/Packages/Stencil-0.6.0/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Stencil-0.6.0/CHANGELOG.md -------------------------------------------------------------------------------- /Dependencies/Packages/Stencil-0.6.0/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Stencil-0.6.0/LICENSE -------------------------------------------------------------------------------- /Dependencies/Packages/Stencil-0.6.0/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Stencil-0.6.0/Package.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Stencil-0.6.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Stencil-0.6.0/README.md -------------------------------------------------------------------------------- /Dependencies/Packages/Stencil-0.6.0/Sources/Context.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Stencil-0.6.0/Sources/Context.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Stencil-0.6.0/Sources/Filters.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Stencil-0.6.0/Sources/Filters.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Stencil-0.6.0/Sources/ForTag.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Stencil-0.6.0/Sources/ForTag.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Stencil-0.6.0/Sources/IfTag.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Stencil-0.6.0/Sources/IfTag.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Stencil-0.6.0/Sources/Include.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Stencil-0.6.0/Sources/Include.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Stencil-0.6.0/Sources/Inheritence.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Stencil-0.6.0/Sources/Inheritence.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Stencil-0.6.0/Sources/Lexer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Stencil-0.6.0/Sources/Lexer.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Stencil-0.6.0/Sources/Namespace.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Stencil-0.6.0/Sources/Namespace.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Stencil-0.6.0/Sources/Node.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Stencil-0.6.0/Sources/Node.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Stencil-0.6.0/Sources/NowTag.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Stencil-0.6.0/Sources/NowTag.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Stencil-0.6.0/Sources/Parser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Stencil-0.6.0/Sources/Parser.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Stencil-0.6.0/Sources/Template.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Stencil-0.6.0/Sources/Template.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Stencil-0.6.0/Sources/TemplateLoader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Stencil-0.6.0/Sources/TemplateLoader.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Stencil-0.6.0/Sources/Tokenizer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Stencil-0.6.0/Sources/Tokenizer.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Stencil-0.6.0/Sources/Variable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Stencil-0.6.0/Sources/Variable.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Stencil-0.6.0/Stencil.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Stencil-0.6.0/Stencil.podspec.json -------------------------------------------------------------------------------- /Dependencies/Packages/Stencil-0.6.0/Tests/LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Stencil-0.6.0/Tests/LinuxMain.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Stencil-0.6.0/Tests/StencilTests/ContextSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Stencil-0.6.0/Tests/StencilTests/ContextSpec.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Stencil-0.6.0/Tests/StencilTests/FilterSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Stencil-0.6.0/Tests/StencilTests/FilterSpec.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Stencil-0.6.0/Tests/StencilTests/ForNodeSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Stencil-0.6.0/Tests/StencilTests/ForNodeSpec.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Stencil-0.6.0/Tests/StencilTests/IfNodeSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Stencil-0.6.0/Tests/StencilTests/IfNodeSpec.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Stencil-0.6.0/Tests/StencilTests/IncludeSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Stencil-0.6.0/Tests/StencilTests/IncludeSpec.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Stencil-0.6.0/Tests/StencilTests/InheritenceSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Stencil-0.6.0/Tests/StencilTests/InheritenceSpec.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Stencil-0.6.0/Tests/StencilTests/LexerSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Stencil-0.6.0/Tests/StencilTests/LexerSpec.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Stencil-0.6.0/Tests/StencilTests/NodeSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Stencil-0.6.0/Tests/StencilTests/NodeSpec.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Stencil-0.6.0/Tests/StencilTests/NowNodeSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Stencil-0.6.0/Tests/StencilTests/NowNodeSpec.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Stencil-0.6.0/Tests/StencilTests/ParserSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Stencil-0.6.0/Tests/StencilTests/ParserSpec.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Stencil-0.6.0/Tests/StencilTests/StencilSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Stencil-0.6.0/Tests/StencilTests/StencilSpec.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Stencil-0.6.0/Tests/StencilTests/TemplateLoaderSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Stencil-0.6.0/Tests/StencilTests/TemplateLoaderSpec.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Stencil-0.6.0/Tests/StencilTests/TemplateSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Stencil-0.6.0/Tests/StencilTests/TemplateSpec.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Stencil-0.6.0/Tests/StencilTests/TokenSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Stencil-0.6.0/Tests/StencilTests/TokenSpec.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Stencil-0.6.0/Tests/StencilTests/VariableSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Stencil-0.6.0/Tests/StencilTests/VariableSpec.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Stencil-0.6.0/Tests/StencilTests/XCTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Stencil-0.6.0/Tests/StencilTests/XCTest.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Stencil-0.6.0/Tests/StencilTests/fixtures/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Stencil-0.6.0/Tests/StencilTests/fixtures/base.html -------------------------------------------------------------------------------- /Dependencies/Packages/Stencil-0.6.0/Tests/StencilTests/fixtures/child.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Stencil-0.6.0/Tests/StencilTests/fixtures/child.html -------------------------------------------------------------------------------- /Dependencies/Packages/Stencil-0.6.0/Tests/StencilTests/fixtures/test.html: -------------------------------------------------------------------------------- 1 | Hello {{ target }}! -------------------------------------------------------------------------------- /Dependencies/Packages/Witness-0.4.0/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Witness-0.4.0/.gitignore -------------------------------------------------------------------------------- /Dependencies/Packages/Witness-0.4.0/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Witness-0.4.0/CHANGELOG.md -------------------------------------------------------------------------------- /Dependencies/Packages/Witness-0.4.0/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Witness-0.4.0/LICENSE -------------------------------------------------------------------------------- /Dependencies/Packages/Witness-0.4.0/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Witness-0.4.0/Package.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Witness-0.4.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Witness-0.4.0/README.md -------------------------------------------------------------------------------- /Dependencies/Packages/Witness-0.4.0/Sources/EventStream.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Witness-0.4.0/Sources/EventStream.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Witness-0.4.0/Sources/FileEvent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Witness-0.4.0/Sources/FileEvent.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Witness-0.4.0/Sources/Witness.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Witness-0.4.0/Sources/Witness.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Witness-0.4.0/Tests/LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Witness-0.4.0/Tests/LinuxMain.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Witness-0.4.0/Tests/WitnessPackageTests/WitnessPackageTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Witness-0.4.0/Tests/WitnessPackageTests/WitnessPackageTests.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Yaml-3.1.0/.gitignore: -------------------------------------------------------------------------------- 1 | xcuserdata 2 | .DS_Store 3 | Carthage 4 | Packages/ 5 | .build/ 6 | -------------------------------------------------------------------------------- /Dependencies/Packages/Yaml-3.1.0/.swift-version: -------------------------------------------------------------------------------- 1 | 3.0 2 | -------------------------------------------------------------------------------- /Dependencies/Packages/Yaml-3.1.0/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Yaml-3.1.0/.travis.yml -------------------------------------------------------------------------------- /Dependencies/Packages/Yaml-3.1.0/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Yaml-3.1.0/LICENSE -------------------------------------------------------------------------------- /Dependencies/Packages/Yaml-3.1.0/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Yaml-3.1.0/Package.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Yaml-3.1.0/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Yaml-3.1.0/Readme.md -------------------------------------------------------------------------------- /Dependencies/Packages/Yaml-3.1.0/Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Yaml-3.1.0/Tests/Info.plist -------------------------------------------------------------------------------- /Dependencies/Packages/Yaml-3.1.0/Tests/LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Yaml-3.1.0/Tests/LinuxMain.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Yaml-3.1.0/Tests/YamlTests/ExampleTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Yaml-3.1.0/Tests/YamlTests/ExampleTests.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Yaml-3.1.0/Tests/YamlTests/YamlTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Yaml-3.1.0/Tests/YamlTests/YamlTests.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Yaml-3.1.0/Yaml.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Yaml-3.1.0/Yaml.podspec -------------------------------------------------------------------------------- /Dependencies/Packages/Yaml-3.1.0/Yaml.xcodeproj/.gitignore: -------------------------------------------------------------------------------- 1 | project.xcworkspace 2 | -------------------------------------------------------------------------------- /Dependencies/Packages/Yaml-3.1.0/Yaml.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Yaml-3.1.0/Yaml.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Dependencies/Packages/Yaml-3.1.0/Yaml.xcodeproj/xcshareddata/xcschemes/Yaml OSX.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Yaml-3.1.0/Yaml.xcodeproj/xcshareddata/xcschemes/Yaml OSX.xcscheme -------------------------------------------------------------------------------- /Dependencies/Packages/Yaml-3.1.0/Yaml.xcodeproj/xcshareddata/xcschemes/Yaml iOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Yaml-3.1.0/Yaml.xcodeproj/xcshareddata/xcschemes/Yaml iOS.xcscheme -------------------------------------------------------------------------------- /Dependencies/Packages/Yaml-3.1.0/Yaml.xcodeproj/xcshareddata/xcschemes/Yaml tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Yaml-3.1.0/Yaml.xcodeproj/xcshareddata/xcschemes/Yaml tvOS.xcscheme -------------------------------------------------------------------------------- /Dependencies/Packages/Yaml-3.1.0/Yaml/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Yaml-3.1.0/Yaml/Info.plist -------------------------------------------------------------------------------- /Dependencies/Packages/Yaml-3.1.0/Yaml/YAMLOperators.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Yaml-3.1.0/Yaml/YAMLOperators.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Yaml-3.1.0/Yaml/YAMLParser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Yaml-3.1.0/Yaml/YAMLParser.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Yaml-3.1.0/Yaml/YAMLRegex.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Yaml-3.1.0/Yaml/YAMLRegex.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Yaml-3.1.0/Yaml/YAMLResult.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Yaml-3.1.0/Yaml/YAMLResult.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Yaml-3.1.0/Yaml/YAMLTokenizer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Yaml-3.1.0/Yaml/YAMLTokenizer.swift -------------------------------------------------------------------------------- /Dependencies/Packages/Yaml-3.1.0/Yaml/Yaml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Yaml-3.1.0/Yaml/Yaml.h -------------------------------------------------------------------------------- /Dependencies/Packages/Yaml-3.1.0/Yaml/Yaml.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/Packages/Yaml-3.1.0/Yaml/Yaml.swift -------------------------------------------------------------------------------- /Dependencies/TyphoonSwiftDependencies.xcodeproj/Commandant_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/TyphoonSwiftDependencies.xcodeproj/Commandant_Info.plist -------------------------------------------------------------------------------- /Dependencies/TyphoonSwiftDependencies.xcodeproj/PathKit_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/TyphoonSwiftDependencies.xcodeproj/PathKit_Info.plist -------------------------------------------------------------------------------- /Dependencies/TyphoonSwiftDependencies.xcodeproj/Result_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/TyphoonSwiftDependencies.xcodeproj/Result_Info.plist -------------------------------------------------------------------------------- /Dependencies/TyphoonSwiftDependencies.xcodeproj/SWXMLHash_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/TyphoonSwiftDependencies.xcodeproj/SWXMLHash_Info.plist -------------------------------------------------------------------------------- /Dependencies/TyphoonSwiftDependencies.xcodeproj/SourceKittenFramework_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/TyphoonSwiftDependencies.xcodeproj/SourceKittenFramework_Info.plist -------------------------------------------------------------------------------- /Dependencies/TyphoonSwiftDependencies.xcodeproj/Spectre_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/TyphoonSwiftDependencies.xcodeproj/Spectre_Info.plist -------------------------------------------------------------------------------- /Dependencies/TyphoonSwiftDependencies.xcodeproj/Stencil_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/TyphoonSwiftDependencies.xcodeproj/Stencil_Info.plist -------------------------------------------------------------------------------- /Dependencies/TyphoonSwiftDependencies.xcodeproj/Witness_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/TyphoonSwiftDependencies.xcodeproj/Witness_Info.plist -------------------------------------------------------------------------------- /Dependencies/TyphoonSwiftDependencies.xcodeproj/Yaml_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/TyphoonSwiftDependencies.xcodeproj/Yaml_Info.plist -------------------------------------------------------------------------------- /Dependencies/TyphoonSwiftDependencies.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/TyphoonSwiftDependencies.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Dependencies/TyphoonSwiftDependencies.xcodeproj/xcshareddata/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/TyphoonSwiftDependencies.xcodeproj/xcshareddata/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Dependencies/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Dependencies/update.sh -------------------------------------------------------------------------------- /Example/TyphoonSwiftExample/Typhoon.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Example/TyphoonSwiftExample/Typhoon.plist -------------------------------------------------------------------------------- /Example/TyphoonSwiftExample/TyphoonSwiftExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Example/TyphoonSwiftExample/TyphoonSwiftExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/TyphoonSwiftExample/TyphoonSwiftExample/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Example/TyphoonSwiftExample/TyphoonSwiftExample/AppDelegate.swift -------------------------------------------------------------------------------- /Example/TyphoonSwiftExample/TyphoonSwiftExample/Assemblies/input.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Example/TyphoonSwiftExample/TyphoonSwiftExample/Assemblies/input.swift -------------------------------------------------------------------------------- /Example/TyphoonSwiftExample/TyphoonSwiftExample/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Example/TyphoonSwiftExample/TyphoonSwiftExample/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/TyphoonSwiftExample/TyphoonSwiftExample/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Example/TyphoonSwiftExample/TyphoonSwiftExample/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Example/TyphoonSwiftExample/TyphoonSwiftExample/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Example/TyphoonSwiftExample/TyphoonSwiftExample/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/TyphoonSwiftExample/TyphoonSwiftExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Example/TyphoonSwiftExample/TyphoonSwiftExample/Info.plist -------------------------------------------------------------------------------- /Example/TyphoonSwiftExample/TyphoonSwiftExample/Typhoon/Runtime/ActivatedAssembly.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Example/TyphoonSwiftExample/TyphoonSwiftExample/Typhoon/Runtime/ActivatedAssembly.swift -------------------------------------------------------------------------------- /Example/TyphoonSwiftExample/TyphoonSwiftExample/Typhoon/Runtime/ActivatedDefinition.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Example/TyphoonSwiftExample/TyphoonSwiftExample/Typhoon/Runtime/ActivatedDefinition.swift -------------------------------------------------------------------------------- /Example/TyphoonSwiftExample/TyphoonSwiftExample/Typhoon/Runtime/Model.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Example/TyphoonSwiftExample/TyphoonSwiftExample/Typhoon/Runtime/Model.swift -------------------------------------------------------------------------------- /Example/TyphoonSwiftExample/TyphoonSwiftExample/Typhoon/Runtime/Pools.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Example/TyphoonSwiftExample/TyphoonSwiftExample/Typhoon/Runtime/Pools.swift -------------------------------------------------------------------------------- /Example/TyphoonSwiftExample/TyphoonSwiftExample/Typhoon/Runtime/Stack.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Example/TyphoonSwiftExample/TyphoonSwiftExample/Typhoon/Runtime/Stack.swift -------------------------------------------------------------------------------- /Example/TyphoonSwiftExample/TyphoonSwiftExample/Typhoon/assemblies.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Example/TyphoonSwiftExample/TyphoonSwiftExample/Typhoon/assemblies.swift -------------------------------------------------------------------------------- /Example/TyphoonSwiftExample/TyphoonSwiftExample/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Example/TyphoonSwiftExample/TyphoonSwiftExample/ViewController.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/README.md -------------------------------------------------------------------------------- /Resources/Runtime/ActivatedAssembly.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Resources/Runtime/ActivatedAssembly.swift -------------------------------------------------------------------------------- /Resources/Runtime/ActivatedDefinition.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Resources/Runtime/ActivatedDefinition.swift -------------------------------------------------------------------------------- /Resources/Runtime/Model.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Resources/Runtime/Model.swift -------------------------------------------------------------------------------- /Resources/Runtime/Pools.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Resources/Runtime/Pools.swift -------------------------------------------------------------------------------- /Resources/Runtime/Stack.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Resources/Runtime/Stack.swift -------------------------------------------------------------------------------- /Resources/Templates/Assemblies.stencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Resources/Templates/Assemblies.stencil -------------------------------------------------------------------------------- /Resources/Templates/Definition.stencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Resources/Templates/Definition.stencil -------------------------------------------------------------------------------- /Sources/AssemblyDefinitionBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Sources/AssemblyDefinitionBuilder.swift -------------------------------------------------------------------------------- /Sources/AssemblyGenerator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Sources/AssemblyGenerator.swift -------------------------------------------------------------------------------- /Sources/BuilderModels.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Sources/BuilderModels.swift -------------------------------------------------------------------------------- /Sources/Config.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Sources/Config.swift -------------------------------------------------------------------------------- /Sources/Definitions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Sources/Definitions.swift -------------------------------------------------------------------------------- /Sources/FileDefinitionBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Sources/FileDefinitionBuilder.swift -------------------------------------------------------------------------------- /Sources/FileStructure.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Sources/FileStructure.swift -------------------------------------------------------------------------------- /Sources/JSON.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Sources/JSON.swift -------------------------------------------------------------------------------- /Sources/Launcher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Sources/Launcher.swift -------------------------------------------------------------------------------- /Sources/MethodDefinition.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Sources/MethodDefinition.swift -------------------------------------------------------------------------------- /Sources/MethodDefinitionBuilder+Inspections.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Sources/MethodDefinitionBuilder+Inspections.swift -------------------------------------------------------------------------------- /Sources/MethodDefinitionBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Sources/MethodDefinitionBuilder.swift -------------------------------------------------------------------------------- /Sources/RegularExpressionExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Sources/RegularExpressionExtensions.swift -------------------------------------------------------------------------------- /Sources/SourceLangSwift.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Sources/SourceLangSwift.swift -------------------------------------------------------------------------------- /Sources/StringUtils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Sources/StringUtils.swift -------------------------------------------------------------------------------- /Sources/SwiftDocumentKey.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Sources/SwiftDocumentKey.swift -------------------------------------------------------------------------------- /Sources/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Sources/main.swift -------------------------------------------------------------------------------- /Typhoon.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Typhoon.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Typhoon.xcworkspace/xcshareddata/Typhoon.xcscmblueprint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/Typhoon.xcworkspace/xcshareddata/Typhoon.xcscmblueprint -------------------------------------------------------------------------------- /TyphoonSwift.xcodeproj/Configs/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/TyphoonSwift.xcodeproj/Configs/Project.xcconfig -------------------------------------------------------------------------------- /TyphoonSwift.xcodeproj/PathKit_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/TyphoonSwift.xcodeproj/PathKit_Info.plist -------------------------------------------------------------------------------- /TyphoonSwift.xcodeproj/Spectre_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/TyphoonSwift.xcodeproj/Spectre_Info.plist -------------------------------------------------------------------------------- /TyphoonSwift.xcodeproj/Stencil_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/TyphoonSwift.xcodeproj/Stencil_Info.plist -------------------------------------------------------------------------------- /TyphoonSwift.xcodeproj/TyphoonPackageTests_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/TyphoonSwift.xcodeproj/TyphoonPackageTests_Info.plist -------------------------------------------------------------------------------- /TyphoonSwift.xcodeproj/Witness_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/TyphoonSwift.xcodeproj/Witness_Info.plist -------------------------------------------------------------------------------- /TyphoonSwift.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/TyphoonSwift.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /TyphoonSwift.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/TyphoonSwift.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /TyphoonSwift.xcodeproj/project.xcworkspace/xcshareddata/TyphoonSwift.xcscmblueprint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/TyphoonSwift.xcodeproj/project.xcworkspace/xcshareddata/TyphoonSwift.xcscmblueprint -------------------------------------------------------------------------------- /TyphoonSwift.xcodeproj/xcshareddata/xcschemes/TyphoonPackageTests.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/TyphoonSwift.xcodeproj/xcshareddata/xcschemes/TyphoonPackageTests.xcscheme -------------------------------------------------------------------------------- /TyphoonSwift.xcodeproj/xcshareddata/xcschemes/TyphoonSwift.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/TyphoonSwift.xcodeproj/xcshareddata/xcschemes/TyphoonSwift.xcscheme -------------------------------------------------------------------------------- /TyphoonSwift.xcodeproj/xcshareddata/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsquickly/TyphoonSwift/HEAD/TyphoonSwift.xcodeproj/xcshareddata/xcschemes/xcschememanagement.plist --------------------------------------------------------------------------------