├── .gitignore ├── .travis.yml ├── Example ├── Masu.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── Masu-Example.xcscheme ├── Masu.xcworkspace │ └── contents.xcworkspacedata ├── Masu │ ├── AppDelegate.swift │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ └── ViewController.swift ├── Podfile ├── Podfile.lock ├── Pods │ ├── FBSnapshotTestCase │ │ ├── FBSnapshotTestCase │ │ │ ├── FBSnapshotTestCase.h │ │ │ ├── FBSnapshotTestCase.m │ │ │ ├── FBSnapshotTestCasePlatform.h │ │ │ ├── FBSnapshotTestCasePlatform.m │ │ │ ├── FBSnapshotTestController.h │ │ │ ├── FBSnapshotTestController.m │ │ │ ├── UIImage+Compare.h │ │ │ ├── UIImage+Compare.m │ │ │ ├── UIImage+Diff.h │ │ │ └── UIImage+Diff.m │ │ ├── LICENSE │ │ └── README.md │ ├── Headers │ │ └── Private │ │ │ ├── FBSnapshotTestCase │ │ │ ├── FBSnapshotTestCase.h │ │ │ ├── FBSnapshotTestCasePlatform.h │ │ │ ├── FBSnapshotTestController.h │ │ │ ├── UIImage+Compare.h │ │ │ └── UIImage+Diff.h │ │ │ ├── Nimble │ │ │ ├── DSL.h │ │ │ ├── NMBExceptionCapture.h │ │ │ └── Nimble.h │ │ │ └── Quick │ │ │ ├── NSString+QCKSelectorName.h │ │ │ ├── QCKDSL.h │ │ │ ├── Quick.h │ │ │ ├── QuickConfiguration.h │ │ │ └── QuickSpec.h │ ├── Local Podspecs │ │ └── Masu.podspec.json │ ├── Manifest.lock │ ├── Nimble-Snapshots │ │ ├── HaveValidSnapshot.swift │ │ ├── LICENSE │ │ ├── PrettySyntax.swift │ │ └── README.md │ ├── Nimble │ │ ├── LICENSE.md │ │ ├── Nimble │ │ │ ├── Adapters │ │ │ │ ├── AdapterProtocols.swift │ │ │ │ ├── AssertionRecorder.swift │ │ │ │ └── NimbleXCTestHandler.swift │ │ │ ├── DSL+Wait.swift │ │ │ ├── DSL.swift │ │ │ ├── Expectation.swift │ │ │ ├── Expression.swift │ │ │ ├── FailureMessage.swift │ │ │ ├── Matchers │ │ │ │ ├── AllPass.swift │ │ │ │ ├── BeAKindOf.swift │ │ │ │ ├── BeAnInstanceOf.swift │ │ │ │ ├── BeCloseTo.swift │ │ │ │ ├── BeEmpty.swift │ │ │ │ ├── BeGreaterThan.swift │ │ │ │ ├── BeGreaterThanOrEqualTo.swift │ │ │ │ ├── BeIdenticalTo.swift │ │ │ │ ├── BeLessThan.swift │ │ │ │ ├── BeLessThanOrEqual.swift │ │ │ │ ├── BeLogical.swift │ │ │ │ ├── BeNil.swift │ │ │ │ ├── BeginWith.swift │ │ │ │ ├── Contain.swift │ │ │ │ ├── EndWith.swift │ │ │ │ ├── Equal.swift │ │ │ │ ├── Match.swift │ │ │ │ ├── MatcherProtocols.swift │ │ │ │ └── RaisesException.swift │ │ │ ├── Nimble.h │ │ │ ├── Utils │ │ │ │ ├── Functional.swift │ │ │ │ ├── Poll.swift │ │ │ │ ├── SourceLocation.swift │ │ │ │ └── Stringers.swift │ │ │ ├── Wrappers │ │ │ │ ├── AsyncMatcherWrapper.swift │ │ │ │ ├── BasicMatcherWrapper.swift │ │ │ │ ├── FullMatcherWrapper.swift │ │ │ │ ├── MatcherFunc.swift │ │ │ │ ├── NonNilMatcherWrapper.swift │ │ │ │ └── ObjCMatcher.swift │ │ │ └── objc │ │ │ │ ├── DSL.h │ │ │ │ ├── DSL.m │ │ │ │ ├── NMBExceptionCapture.h │ │ │ │ └── NMBExceptionCapture.m │ │ └── README.md │ ├── Pods.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Masu.xcscheme │ ├── Quick │ │ ├── LICENSE │ │ ├── Quick │ │ │ ├── Callsite.swift │ │ │ ├── Configuration │ │ │ │ ├── Configuration.swift │ │ │ │ ├── QuickConfiguration.h │ │ │ │ └── QuickConfiguration.m │ │ │ ├── DSL │ │ │ │ ├── DSL.swift │ │ │ │ ├── QCKDSL.h │ │ │ │ ├── QCKDSL.m │ │ │ │ └── World+DSL.swift │ │ │ ├── Example.swift │ │ │ ├── ExampleGroup.swift │ │ │ ├── ExampleMetadata.swift │ │ │ ├── Failure.swift │ │ │ ├── Filter.swift │ │ │ ├── Hooks │ │ │ │ ├── Closures.swift │ │ │ │ ├── ExampleHooks.swift │ │ │ │ └── SuiteHooks.swift │ │ │ ├── NSString+QCKSelectorName.h │ │ │ ├── NSString+QCKSelectorName.m │ │ │ ├── Quick.h │ │ │ ├── QuickSpec.h │ │ │ ├── QuickSpec.m │ │ │ └── World.swift │ │ └── README.md │ └── Target Support Files │ │ ├── FBSnapshotTestCase │ │ ├── FBSnapshotTestCase-Private.xcconfig │ │ ├── FBSnapshotTestCase-dummy.m │ │ ├── FBSnapshotTestCase-prefix.pch │ │ ├── FBSnapshotTestCase-umbrella.h │ │ ├── FBSnapshotTestCase.modulemap │ │ ├── FBSnapshotTestCase.xcconfig │ │ └── Info.plist │ │ ├── Masu │ │ ├── Info.plist │ │ ├── Masu-Private.xcconfig │ │ ├── Masu-dummy.m │ │ ├── Masu-prefix.pch │ │ ├── Masu-umbrella.h │ │ ├── Masu.modulemap │ │ └── Masu.xcconfig │ │ ├── Nimble-Snapshots │ │ ├── Info.plist │ │ ├── Nimble-Snapshots-Private.xcconfig │ │ ├── Nimble-Snapshots-dummy.m │ │ ├── Nimble-Snapshots-prefix.pch │ │ ├── Nimble-Snapshots-umbrella.h │ │ ├── Nimble-Snapshots.modulemap │ │ └── Nimble-Snapshots.xcconfig │ │ ├── Nimble │ │ ├── Info.plist │ │ ├── Nimble-Private.xcconfig │ │ ├── Nimble-dummy.m │ │ ├── Nimble-prefix.pch │ │ ├── Nimble-umbrella.h │ │ ├── Nimble.modulemap │ │ └── Nimble.xcconfig │ │ ├── Pods-Masu_Example │ │ ├── Info.plist │ │ ├── Pods-Masu_Example-acknowledgements.markdown │ │ ├── Pods-Masu_Example-acknowledgements.plist │ │ ├── Pods-Masu_Example-dummy.m │ │ ├── Pods-Masu_Example-frameworks.sh │ │ ├── Pods-Masu_Example-resources.sh │ │ ├── Pods-Masu_Example-umbrella.h │ │ ├── Pods-Masu_Example.debug.xcconfig │ │ ├── Pods-Masu_Example.modulemap │ │ └── Pods-Masu_Example.release.xcconfig │ │ ├── Pods-Masu_Tests │ │ ├── Info.plist │ │ ├── Pods-Masu_Tests-acknowledgements.markdown │ │ ├── Pods-Masu_Tests-acknowledgements.plist │ │ ├── Pods-Masu_Tests-dummy.m │ │ ├── Pods-Masu_Tests-frameworks.sh │ │ ├── Pods-Masu_Tests-resources.sh │ │ ├── Pods-Masu_Tests-umbrella.h │ │ ├── Pods-Masu_Tests.debug.xcconfig │ │ ├── Pods-Masu_Tests.modulemap │ │ └── Pods-Masu_Tests.release.xcconfig │ │ └── Quick │ │ ├── Info.plist │ │ ├── Quick-Private.xcconfig │ │ ├── Quick-dummy.m │ │ ├── Quick-prefix.pch │ │ ├── Quick-umbrella.h │ │ ├── Quick.modulemap │ │ └── Quick.xcconfig └── Tests │ ├── Info.plist │ ├── ReferenceImages │ └── Tests │ │ ├── view_matching__size_100x200__matches_background@2x.png │ │ ├── view_matching__size_100x200__matches_default@2x.png │ │ ├── view_matching__size_100x200__matches_label@2x.png │ │ ├── view_matching__size_200x100__matches_background@2x.png │ │ ├── view_matching__size_200x100__matches_default@2x.png │ │ ├── view_matching__size_200x100__matches_label@2x.png │ │ ├── view_matching__size_200x200__matches_background@2x.png │ │ ├── view_matching__size_200x200__matches_default@2x.png │ │ └── view_matching__size_200x200__matches_label@2x.png │ └── Tests.swift ├── LICENSE ├── Masu-Swift.podspec ├── Pod ├── Assets │ └── .gitkeep └── Classes │ ├── .gitkeep │ ├── Masu.swift │ └── UIView+Masu.swift ├── README.md ├── _Pods.xcodeproj └── screenshot.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/.travis.yml -------------------------------------------------------------------------------- /Example/Masu.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Masu.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Masu.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Masu.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/Masu.xcodeproj/xcshareddata/xcschemes/Masu-Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Masu.xcodeproj/xcshareddata/xcschemes/Masu-Example.xcscheme -------------------------------------------------------------------------------- /Example/Masu.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Masu.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/Masu/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Masu/AppDelegate.swift -------------------------------------------------------------------------------- /Example/Masu/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Masu/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Example/Masu/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Masu/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/Masu/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Masu/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/Masu/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Masu/Info.plist -------------------------------------------------------------------------------- /Example/Masu/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Masu/ViewController.swift -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Pods/FBSnapshotTestCase/FBSnapshotTestCase/FBSnapshotTestCase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/FBSnapshotTestCase/FBSnapshotTestCase/FBSnapshotTestCase.h -------------------------------------------------------------------------------- /Example/Pods/FBSnapshotTestCase/FBSnapshotTestCase/FBSnapshotTestCase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/FBSnapshotTestCase/FBSnapshotTestCase/FBSnapshotTestCase.m -------------------------------------------------------------------------------- /Example/Pods/FBSnapshotTestCase/FBSnapshotTestCase/FBSnapshotTestCasePlatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/FBSnapshotTestCase/FBSnapshotTestCase/FBSnapshotTestCasePlatform.h -------------------------------------------------------------------------------- /Example/Pods/FBSnapshotTestCase/FBSnapshotTestCase/FBSnapshotTestCasePlatform.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/FBSnapshotTestCase/FBSnapshotTestCase/FBSnapshotTestCasePlatform.m -------------------------------------------------------------------------------- /Example/Pods/FBSnapshotTestCase/FBSnapshotTestCase/FBSnapshotTestController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/FBSnapshotTestCase/FBSnapshotTestCase/FBSnapshotTestController.h -------------------------------------------------------------------------------- /Example/Pods/FBSnapshotTestCase/FBSnapshotTestCase/FBSnapshotTestController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/FBSnapshotTestCase/FBSnapshotTestCase/FBSnapshotTestController.m -------------------------------------------------------------------------------- /Example/Pods/FBSnapshotTestCase/FBSnapshotTestCase/UIImage+Compare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/FBSnapshotTestCase/FBSnapshotTestCase/UIImage+Compare.h -------------------------------------------------------------------------------- /Example/Pods/FBSnapshotTestCase/FBSnapshotTestCase/UIImage+Compare.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/FBSnapshotTestCase/FBSnapshotTestCase/UIImage+Compare.m -------------------------------------------------------------------------------- /Example/Pods/FBSnapshotTestCase/FBSnapshotTestCase/UIImage+Diff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/FBSnapshotTestCase/FBSnapshotTestCase/UIImage+Diff.h -------------------------------------------------------------------------------- /Example/Pods/FBSnapshotTestCase/FBSnapshotTestCase/UIImage+Diff.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/FBSnapshotTestCase/FBSnapshotTestCase/UIImage+Diff.m -------------------------------------------------------------------------------- /Example/Pods/FBSnapshotTestCase/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/FBSnapshotTestCase/LICENSE -------------------------------------------------------------------------------- /Example/Pods/FBSnapshotTestCase/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/FBSnapshotTestCase/README.md -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/FBSnapshotTestCase/FBSnapshotTestCase.h: -------------------------------------------------------------------------------- 1 | ../../../FBSnapshotTestCase/FBSnapshotTestCase/FBSnapshotTestCase.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/FBSnapshotTestCase/FBSnapshotTestCasePlatform.h: -------------------------------------------------------------------------------- 1 | ../../../FBSnapshotTestCase/FBSnapshotTestCase/FBSnapshotTestCasePlatform.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/FBSnapshotTestCase/FBSnapshotTestController.h: -------------------------------------------------------------------------------- 1 | ../../../FBSnapshotTestCase/FBSnapshotTestCase/FBSnapshotTestController.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/FBSnapshotTestCase/UIImage+Compare.h: -------------------------------------------------------------------------------- 1 | ../../../FBSnapshotTestCase/FBSnapshotTestCase/UIImage+Compare.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/FBSnapshotTestCase/UIImage+Diff.h: -------------------------------------------------------------------------------- 1 | ../../../FBSnapshotTestCase/FBSnapshotTestCase/UIImage+Diff.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Nimble/DSL.h: -------------------------------------------------------------------------------- 1 | ../../../Nimble/Nimble/objc/DSL.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Nimble/NMBExceptionCapture.h: -------------------------------------------------------------------------------- 1 | ../../../Nimble/Nimble/objc/NMBExceptionCapture.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Nimble/Nimble.h: -------------------------------------------------------------------------------- 1 | ../../../Nimble/Nimble/Nimble.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Quick/NSString+QCKSelectorName.h: -------------------------------------------------------------------------------- 1 | ../../../Quick/Quick/NSString+QCKSelectorName.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Quick/QCKDSL.h: -------------------------------------------------------------------------------- 1 | ../../../Quick/Quick/DSL/QCKDSL.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Quick/Quick.h: -------------------------------------------------------------------------------- 1 | ../../../Quick/Quick/Quick.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Quick/QuickConfiguration.h: -------------------------------------------------------------------------------- 1 | ../../../Quick/Quick/Configuration/QuickConfiguration.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Quick/QuickSpec.h: -------------------------------------------------------------------------------- 1 | ../../../Quick/Quick/QuickSpec.h -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/Masu.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/Local Podspecs/Masu.podspec.json -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/Manifest.lock -------------------------------------------------------------------------------- /Example/Pods/Nimble-Snapshots/HaveValidSnapshot.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/Nimble-Snapshots/HaveValidSnapshot.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble-Snapshots/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/Nimble-Snapshots/LICENSE -------------------------------------------------------------------------------- /Example/Pods/Nimble-Snapshots/PrettySyntax.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/Nimble-Snapshots/PrettySyntax.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble-Snapshots/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/Nimble-Snapshots/README.md -------------------------------------------------------------------------------- /Example/Pods/Nimble/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/Nimble/LICENSE.md -------------------------------------------------------------------------------- /Example/Pods/Nimble/Nimble/Adapters/AdapterProtocols.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/Nimble/Nimble/Adapters/AdapterProtocols.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Nimble/Adapters/AssertionRecorder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/Nimble/Nimble/Adapters/AssertionRecorder.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Nimble/Adapters/NimbleXCTestHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/Nimble/Nimble/Adapters/NimbleXCTestHandler.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Nimble/DSL+Wait.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/Nimble/Nimble/DSL+Wait.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Nimble/DSL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/Nimble/Nimble/DSL.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Nimble/Expectation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/Nimble/Nimble/Expectation.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Nimble/Expression.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/Nimble/Nimble/Expression.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Nimble/FailureMessage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/Nimble/Nimble/FailureMessage.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Nimble/Matchers/AllPass.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/Nimble/Nimble/Matchers/AllPass.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Nimble/Matchers/BeAKindOf.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/Nimble/Nimble/Matchers/BeAKindOf.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Nimble/Matchers/BeAnInstanceOf.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/Nimble/Nimble/Matchers/BeAnInstanceOf.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Nimble/Matchers/BeCloseTo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/Nimble/Nimble/Matchers/BeCloseTo.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Nimble/Matchers/BeEmpty.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/Nimble/Nimble/Matchers/BeEmpty.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Nimble/Matchers/BeGreaterThan.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/Nimble/Nimble/Matchers/BeGreaterThan.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Nimble/Matchers/BeGreaterThanOrEqualTo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/Nimble/Nimble/Matchers/BeGreaterThanOrEqualTo.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Nimble/Matchers/BeIdenticalTo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/Nimble/Nimble/Matchers/BeIdenticalTo.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Nimble/Matchers/BeLessThan.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/Nimble/Nimble/Matchers/BeLessThan.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Nimble/Matchers/BeLessThanOrEqual.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/Nimble/Nimble/Matchers/BeLessThanOrEqual.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Nimble/Matchers/BeLogical.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/Nimble/Nimble/Matchers/BeLogical.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Nimble/Matchers/BeNil.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/Nimble/Nimble/Matchers/BeNil.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Nimble/Matchers/BeginWith.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/Nimble/Nimble/Matchers/BeginWith.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Nimble/Matchers/Contain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/Nimble/Nimble/Matchers/Contain.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Nimble/Matchers/EndWith.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/Nimble/Nimble/Matchers/EndWith.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Nimble/Matchers/Equal.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/Nimble/Nimble/Matchers/Equal.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Nimble/Matchers/Match.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/Nimble/Nimble/Matchers/Match.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Nimble/Matchers/MatcherProtocols.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/Nimble/Nimble/Matchers/MatcherProtocols.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Nimble/Matchers/RaisesException.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/Nimble/Nimble/Matchers/RaisesException.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Nimble/Nimble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/Nimble/Nimble/Nimble.h -------------------------------------------------------------------------------- /Example/Pods/Nimble/Nimble/Utils/Functional.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/Nimble/Nimble/Utils/Functional.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Nimble/Utils/Poll.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/Nimble/Nimble/Utils/Poll.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Nimble/Utils/SourceLocation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/Nimble/Nimble/Utils/SourceLocation.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Nimble/Utils/Stringers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/Nimble/Nimble/Utils/Stringers.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Nimble/Wrappers/AsyncMatcherWrapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/Nimble/Nimble/Wrappers/AsyncMatcherWrapper.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Nimble/Wrappers/BasicMatcherWrapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/Nimble/Nimble/Wrappers/BasicMatcherWrapper.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Nimble/Wrappers/FullMatcherWrapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/Nimble/Nimble/Wrappers/FullMatcherWrapper.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Nimble/Wrappers/MatcherFunc.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/Nimble/Nimble/Wrappers/MatcherFunc.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Nimble/Wrappers/NonNilMatcherWrapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/Nimble/Nimble/Wrappers/NonNilMatcherWrapper.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Nimble/Wrappers/ObjCMatcher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/Nimble/Nimble/Wrappers/ObjCMatcher.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Nimble/objc/DSL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/Nimble/Nimble/objc/DSL.h -------------------------------------------------------------------------------- /Example/Pods/Nimble/Nimble/objc/DSL.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/Nimble/Nimble/objc/DSL.m -------------------------------------------------------------------------------- /Example/Pods/Nimble/Nimble/objc/NMBExceptionCapture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/Nimble/Nimble/objc/NMBExceptionCapture.h -------------------------------------------------------------------------------- /Example/Pods/Nimble/Nimble/objc/NMBExceptionCapture.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/Nimble/Nimble/objc/NMBExceptionCapture.m -------------------------------------------------------------------------------- /Example/Pods/Nimble/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/Nimble/README.md -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/Pods.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcshareddata/xcschemes/Masu.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/Pods.xcodeproj/xcshareddata/xcschemes/Masu.xcscheme -------------------------------------------------------------------------------- /Example/Pods/Quick/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/Quick/LICENSE -------------------------------------------------------------------------------- /Example/Pods/Quick/Quick/Callsite.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/Quick/Quick/Callsite.swift -------------------------------------------------------------------------------- /Example/Pods/Quick/Quick/Configuration/Configuration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/Quick/Quick/Configuration/Configuration.swift -------------------------------------------------------------------------------- /Example/Pods/Quick/Quick/Configuration/QuickConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/Quick/Quick/Configuration/QuickConfiguration.h -------------------------------------------------------------------------------- /Example/Pods/Quick/Quick/Configuration/QuickConfiguration.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/Quick/Quick/Configuration/QuickConfiguration.m -------------------------------------------------------------------------------- /Example/Pods/Quick/Quick/DSL/DSL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/Quick/Quick/DSL/DSL.swift -------------------------------------------------------------------------------- /Example/Pods/Quick/Quick/DSL/QCKDSL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/Quick/Quick/DSL/QCKDSL.h -------------------------------------------------------------------------------- /Example/Pods/Quick/Quick/DSL/QCKDSL.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/Quick/Quick/DSL/QCKDSL.m -------------------------------------------------------------------------------- /Example/Pods/Quick/Quick/DSL/World+DSL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/Quick/Quick/DSL/World+DSL.swift -------------------------------------------------------------------------------- /Example/Pods/Quick/Quick/Example.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/Quick/Quick/Example.swift -------------------------------------------------------------------------------- /Example/Pods/Quick/Quick/ExampleGroup.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/Quick/Quick/ExampleGroup.swift -------------------------------------------------------------------------------- /Example/Pods/Quick/Quick/ExampleMetadata.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/Quick/Quick/ExampleMetadata.swift -------------------------------------------------------------------------------- /Example/Pods/Quick/Quick/Failure.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/Quick/Quick/Failure.swift -------------------------------------------------------------------------------- /Example/Pods/Quick/Quick/Filter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/Quick/Quick/Filter.swift -------------------------------------------------------------------------------- /Example/Pods/Quick/Quick/Hooks/Closures.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/Quick/Quick/Hooks/Closures.swift -------------------------------------------------------------------------------- /Example/Pods/Quick/Quick/Hooks/ExampleHooks.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/Quick/Quick/Hooks/ExampleHooks.swift -------------------------------------------------------------------------------- /Example/Pods/Quick/Quick/Hooks/SuiteHooks.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/Quick/Quick/Hooks/SuiteHooks.swift -------------------------------------------------------------------------------- /Example/Pods/Quick/Quick/NSString+QCKSelectorName.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/Quick/Quick/NSString+QCKSelectorName.h -------------------------------------------------------------------------------- /Example/Pods/Quick/Quick/NSString+QCKSelectorName.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/Quick/Quick/NSString+QCKSelectorName.m -------------------------------------------------------------------------------- /Example/Pods/Quick/Quick/Quick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/Quick/Quick/Quick.h -------------------------------------------------------------------------------- /Example/Pods/Quick/Quick/QuickSpec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/Quick/Quick/QuickSpec.h -------------------------------------------------------------------------------- /Example/Pods/Quick/Quick/QuickSpec.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/Quick/Quick/QuickSpec.m -------------------------------------------------------------------------------- /Example/Pods/Quick/Quick/World.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/Quick/Quick/World.swift -------------------------------------------------------------------------------- /Example/Pods/Quick/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/Quick/README.md -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/FBSnapshotTestCase/FBSnapshotTestCase-Private.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/Target Support Files/FBSnapshotTestCase/FBSnapshotTestCase-Private.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/FBSnapshotTestCase/FBSnapshotTestCase-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/Target Support Files/FBSnapshotTestCase/FBSnapshotTestCase-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/FBSnapshotTestCase/FBSnapshotTestCase-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/Target Support Files/FBSnapshotTestCase/FBSnapshotTestCase-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/FBSnapshotTestCase/FBSnapshotTestCase-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/Target Support Files/FBSnapshotTestCase/FBSnapshotTestCase-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/FBSnapshotTestCase/FBSnapshotTestCase.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/Target Support Files/FBSnapshotTestCase/FBSnapshotTestCase.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/FBSnapshotTestCase/FBSnapshotTestCase.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/Target Support Files/FBSnapshotTestCase/FBSnapshotTestCase.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/FBSnapshotTestCase/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/Target Support Files/FBSnapshotTestCase/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Masu/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/Target Support Files/Masu/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Masu/Masu-Private.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/Target Support Files/Masu/Masu-Private.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Masu/Masu-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/Target Support Files/Masu/Masu-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Masu/Masu-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/Target Support Files/Masu/Masu-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Masu/Masu-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/Target Support Files/Masu/Masu-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Masu/Masu.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/Target Support Files/Masu/Masu.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Masu/Masu.xcconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Nimble-Snapshots/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/Target Support Files/Nimble-Snapshots/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Nimble-Snapshots/Nimble-Snapshots-Private.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/Target Support Files/Nimble-Snapshots/Nimble-Snapshots-Private.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Nimble-Snapshots/Nimble-Snapshots-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/Target Support Files/Nimble-Snapshots/Nimble-Snapshots-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Nimble-Snapshots/Nimble-Snapshots-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/Target Support Files/Nimble-Snapshots/Nimble-Snapshots-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Nimble-Snapshots/Nimble-Snapshots-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/Target Support Files/Nimble-Snapshots/Nimble-Snapshots-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Nimble-Snapshots/Nimble-Snapshots.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/Target Support Files/Nimble-Snapshots/Nimble-Snapshots.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Nimble-Snapshots/Nimble-Snapshots.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/Target Support Files/Nimble-Snapshots/Nimble-Snapshots.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Nimble/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/Target Support Files/Nimble/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Nimble/Nimble-Private.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/Target Support Files/Nimble/Nimble-Private.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Nimble/Nimble-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/Target Support Files/Nimble/Nimble-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Nimble/Nimble-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/Target Support Files/Nimble/Nimble-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Nimble/Nimble-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/Target Support Files/Nimble/Nimble-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Nimble/Nimble.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/Target Support Files/Nimble/Nimble.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Nimble/Nimble.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/Target Support Files/Nimble/Nimble.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Masu_Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/Target Support Files/Pods-Masu_Example/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Masu_Example/Pods-Masu_Example-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/Target Support Files/Pods-Masu_Example/Pods-Masu_Example-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Masu_Example/Pods-Masu_Example-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/Target Support Files/Pods-Masu_Example/Pods-Masu_Example-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Masu_Example/Pods-Masu_Example-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/Target Support Files/Pods-Masu_Example/Pods-Masu_Example-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Masu_Example/Pods-Masu_Example-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/Target Support Files/Pods-Masu_Example/Pods-Masu_Example-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Masu_Example/Pods-Masu_Example-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/Target Support Files/Pods-Masu_Example/Pods-Masu_Example-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Masu_Example/Pods-Masu_Example-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/Target Support Files/Pods-Masu_Example/Pods-Masu_Example-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Masu_Example/Pods-Masu_Example.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/Target Support Files/Pods-Masu_Example/Pods-Masu_Example.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Masu_Example/Pods-Masu_Example.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/Target Support Files/Pods-Masu_Example/Pods-Masu_Example.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Masu_Example/Pods-Masu_Example.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/Target Support Files/Pods-Masu_Example/Pods-Masu_Example.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Masu_Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/Target Support Files/Pods-Masu_Tests/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Masu_Tests/Pods-Masu_Tests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/Target Support Files/Pods-Masu_Tests/Pods-Masu_Tests-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Masu_Tests/Pods-Masu_Tests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/Target Support Files/Pods-Masu_Tests/Pods-Masu_Tests-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Masu_Tests/Pods-Masu_Tests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/Target Support Files/Pods-Masu_Tests/Pods-Masu_Tests-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Masu_Tests/Pods-Masu_Tests-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/Target Support Files/Pods-Masu_Tests/Pods-Masu_Tests-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Masu_Tests/Pods-Masu_Tests-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/Target Support Files/Pods-Masu_Tests/Pods-Masu_Tests-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Masu_Tests/Pods-Masu_Tests-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/Target Support Files/Pods-Masu_Tests/Pods-Masu_Tests-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Masu_Tests/Pods-Masu_Tests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/Target Support Files/Pods-Masu_Tests/Pods-Masu_Tests.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Masu_Tests/Pods-Masu_Tests.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/Target Support Files/Pods-Masu_Tests/Pods-Masu_Tests.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Masu_Tests/Pods-Masu_Tests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/Target Support Files/Pods-Masu_Tests/Pods-Masu_Tests.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Quick/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/Target Support Files/Quick/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Quick/Quick-Private.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/Target Support Files/Quick/Quick-Private.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Quick/Quick-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/Target Support Files/Quick/Quick-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Quick/Quick-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/Target Support Files/Quick/Quick-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Quick/Quick-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/Target Support Files/Quick/Quick-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Quick/Quick.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/Target Support Files/Quick/Quick.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Quick/Quick.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Pods/Target Support Files/Quick/Quick.xcconfig -------------------------------------------------------------------------------- /Example/Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Tests/Info.plist -------------------------------------------------------------------------------- /Example/Tests/ReferenceImages/Tests/view_matching__size_100x200__matches_background@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Tests/ReferenceImages/Tests/view_matching__size_100x200__matches_background@2x.png -------------------------------------------------------------------------------- /Example/Tests/ReferenceImages/Tests/view_matching__size_100x200__matches_default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Tests/ReferenceImages/Tests/view_matching__size_100x200__matches_default@2x.png -------------------------------------------------------------------------------- /Example/Tests/ReferenceImages/Tests/view_matching__size_100x200__matches_label@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Tests/ReferenceImages/Tests/view_matching__size_100x200__matches_label@2x.png -------------------------------------------------------------------------------- /Example/Tests/ReferenceImages/Tests/view_matching__size_200x100__matches_background@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Tests/ReferenceImages/Tests/view_matching__size_200x100__matches_background@2x.png -------------------------------------------------------------------------------- /Example/Tests/ReferenceImages/Tests/view_matching__size_200x100__matches_default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Tests/ReferenceImages/Tests/view_matching__size_200x100__matches_default@2x.png -------------------------------------------------------------------------------- /Example/Tests/ReferenceImages/Tests/view_matching__size_200x100__matches_label@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Tests/ReferenceImages/Tests/view_matching__size_200x100__matches_label@2x.png -------------------------------------------------------------------------------- /Example/Tests/ReferenceImages/Tests/view_matching__size_200x200__matches_background@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Tests/ReferenceImages/Tests/view_matching__size_200x200__matches_background@2x.png -------------------------------------------------------------------------------- /Example/Tests/ReferenceImages/Tests/view_matching__size_200x200__matches_default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Tests/ReferenceImages/Tests/view_matching__size_200x200__matches_default@2x.png -------------------------------------------------------------------------------- /Example/Tests/ReferenceImages/Tests/view_matching__size_200x200__matches_label@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Tests/ReferenceImages/Tests/view_matching__size_200x200__matches_label@2x.png -------------------------------------------------------------------------------- /Example/Tests/Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Example/Tests/Tests.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/LICENSE -------------------------------------------------------------------------------- /Masu-Swift.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Masu-Swift.podspec -------------------------------------------------------------------------------- /Pod/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pod/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pod/Classes/Masu.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Pod/Classes/Masu.swift -------------------------------------------------------------------------------- /Pod/Classes/UIView+Masu.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/Pod/Classes/UIView+Masu.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/README.md -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midnightSuyama/Masu-Swift/HEAD/screenshot.png --------------------------------------------------------------------------------