├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug--bug_name.md │ ├── bug_report.md │ ├── feature--feature_name.md │ └── feature_request.md └── auto_assign-issues.yml ├── .gitignore ├── .swiftpm └── xcode │ └── package.xcworkspace │ └── contents.xcworkspacedata ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Constrictor.podspec ├── Constrictor ├── Constrictor.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ └── xcshareddata │ │ └── xcschemes │ │ └── Constrictor.xcscheme ├── Constrictor.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── Constrictor │ ├── Anchors │ │ ├── Anchor.swift │ │ ├── AnchorDimension.swift │ │ ├── AnchorXAxis.swift │ │ ├── AnchorYAxis.swift │ │ ├── Anchorable.swift │ │ ├── UILayoutGuide+Anchorable.swift │ │ └── UIView+Anchorable.swift │ ├── Assembler │ │ ├── Assembler.swift │ │ └── NSLayoutConstraint+Set.swift │ ├── Core │ │ ├── Constraints.swift │ │ ├── Constrictor+Simple.swift │ │ ├── Constrictor.swift │ │ ├── UILayoutGuide+Constrictor.swift │ │ └── UIView+Constrictor.swift │ ├── Finder │ │ └── NSLayoutConstraintCollection+Finder.swift │ ├── Info.plist │ ├── Modifiers │ │ ├── LayoutPriority.swift │ │ ├── LayoutRelation.swift │ │ └── LayoutState.swift │ ├── Sugar │ │ ├── Center │ │ │ ├── CenterAnchor.swift │ │ │ ├── CenterConstant.swift │ │ │ └── Constrictor+Center.swift │ │ ├── Edge │ │ │ ├── Constrictor+Edge.swift │ │ │ ├── EdgeAnchor.swift │ │ │ └── EdgeConstant.swift │ │ └── Size │ │ │ ├── Constrictor+Size.swift │ │ │ ├── SizeAnchor.swift │ │ │ └── SizeConstant.swift │ └── Update │ │ └── Constrictor+Update.swift ├── ConstrictorTests │ ├── Info.plist │ ├── Snapshot Tests │ │ ├── Core │ │ │ ├── Constrictor+SimpleSnapshotTests.swift │ │ │ └── __Snapshots__ │ │ │ │ └── Constrictor+SimpleSnapshotTests │ │ │ │ └── testScenarioA.1.png │ │ ├── Helpers │ │ │ ├── SnapshotConstants.swift │ │ │ └── SnapshotFactory.swift │ │ └── Sugar │ │ │ ├── Center & Size │ │ │ ├── Constrictor+CenterAndSizeSnaphotTests.swift │ │ │ └── __Snapshots__ │ │ │ │ └── Constrictor+CenterAndSizeSnaphotTests │ │ │ │ ├── testScenarioA.1.png │ │ │ │ ├── testScenarioB.1.png │ │ │ │ ├── testScenarioC.1.png │ │ │ │ └── testScenarioD.1.png │ │ │ └── Edge │ │ │ ├── Constrictor+EdgeSnapshotTests.swift │ │ │ └── __Snapshots__ │ │ │ └── Constrictor+EdgeSnapshotTests │ │ │ ├── testScenarioA.1.png │ │ │ ├── testScenarioB.1.png │ │ │ ├── testScenarioC.1.png │ │ │ ├── testScenarioD.1.png │ │ │ ├── testScenarioE.1.png │ │ │ └── testScenarioF.1.png │ └── Unit Tests │ │ ├── Anchors │ │ ├── AnchorDimensionUnitTests.swift │ │ ├── AnchorUnitTests.swift │ │ ├── AnchorXAxisUnitTests.swift │ │ └── AnchorYAxisUnitTests.swift │ │ ├── Assembler │ │ └── NSLayoutConstraintSetUnitTests.swift │ │ ├── Core │ │ ├── UILayoutGuide+ConstrictorUnitTests.swift │ │ └── UIView+ConstrictorUnitTests.swift │ │ ├── Modifiers │ │ ├── LayoutPriorityUnitTests.swift │ │ └── LayoutStateUnitTests.swift │ │ ├── Sugar │ │ ├── Center │ │ │ └── CenterConstantUnitTests.swift │ │ ├── Edge │ │ │ └── EdgeConstantUnitTests.swift │ │ └── Size │ │ │ └── SizeConstantUnitTests.swift │ │ └── Update │ │ └── ConstrictorUpdateUnitTests.swift ├── Podfile ├── Podfile.lock └── Pods │ ├── Manifest.lock │ ├── Pods.xcodeproj │ └── project.pbxproj │ ├── SWIFT_EXEC-no-coverage │ ├── SnapshotTesting │ ├── LICENSE │ ├── README.md │ └── Sources │ │ └── SnapshotTesting │ │ ├── AssertSnapshot.swift │ │ ├── Async.swift │ │ ├── Common │ │ ├── Internal.swift │ │ ├── PlistEncoder.swift │ │ ├── View.swift │ │ └── XCTAttachment.swift │ │ ├── Diff.swift │ │ ├── Diffing.swift │ │ ├── SnapshotTestCase.swift │ │ ├── Snapshotting.swift │ │ └── Snapshotting │ │ ├── Any.swift │ │ ├── CALayer.swift │ │ ├── CaseIterable.swift │ │ ├── Codable.swift │ │ ├── Data.swift │ │ ├── Description.swift │ │ ├── NSImage.swift │ │ ├── NSView.swift │ │ ├── NSViewController.swift │ │ ├── SceneKit.swift │ │ ├── SpriteKit.swift │ │ ├── String.swift │ │ ├── UIImage.swift │ │ ├── UIView.swift │ │ ├── UIViewController.swift │ │ └── URLRequest.swift │ └── Target Support Files │ ├── Pods-ConstrictorTests │ ├── Pods-ConstrictorTests-Info.plist │ ├── Pods-ConstrictorTests-acknowledgements.markdown │ ├── Pods-ConstrictorTests-acknowledgements.plist │ ├── Pods-ConstrictorTests-dummy.m │ ├── Pods-ConstrictorTests-frameworks-Debug-input-files.xcfilelist │ ├── Pods-ConstrictorTests-frameworks-Debug-output-files.xcfilelist │ ├── Pods-ConstrictorTests-frameworks-Release-input-files.xcfilelist │ ├── Pods-ConstrictorTests-frameworks-Release-output-files.xcfilelist │ ├── Pods-ConstrictorTests-frameworks.sh │ ├── Pods-ConstrictorTests-umbrella.h │ ├── Pods-ConstrictorTests.debug.xcconfig │ ├── Pods-ConstrictorTests.modulemap │ └── Pods-ConstrictorTests.release.xcconfig │ └── SnapshotTesting │ ├── SnapshotTesting-Info.plist │ ├── SnapshotTesting-dummy.m │ ├── SnapshotTesting-prefix.pch │ ├── SnapshotTesting-umbrella.h │ ├── SnapshotTesting.modulemap │ └── SnapshotTesting.xcconfig ├── Example ├── Cartfile ├── Cartfile.resolved ├── Example.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── Example.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── Example │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ └── ViewController.swift ├── Podfile └── Podfile.lock ├── LICENSE ├── PULL_REQUEST_TEMPLATE.md ├── Package.swift ├── Pods └── SWIFT_EXEC-no-coverage ├── README.md ├── codecov.yml ├── cover.jpg └── presentation.gif /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug--bug_name.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/.github/ISSUE_TEMPLATE/bug--bug_name.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature--feature_name.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/.github/ISSUE_TEMPLATE/feature--feature_name.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/auto_assign-issues.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/.github/auto_assign-issues.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/.gitignore -------------------------------------------------------------------------------- /.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/.travis.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Constrictor.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Constrictor.podspec -------------------------------------------------------------------------------- /Constrictor/Constrictor.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Constrictor/Constrictor.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Constrictor/Constrictor.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Constrictor/Constrictor.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Constrictor/Constrictor.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Constrictor/Constrictor.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Constrictor/Constrictor.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Constrictor/Constrictor.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /Constrictor/Constrictor.xcodeproj/xcshareddata/xcschemes/Constrictor.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Constrictor/Constrictor.xcodeproj/xcshareddata/xcschemes/Constrictor.xcscheme -------------------------------------------------------------------------------- /Constrictor/Constrictor.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Constrictor/Constrictor.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Constrictor/Constrictor.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Constrictor/Constrictor.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Constrictor/Constrictor/Anchors/Anchor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Constrictor/Constrictor/Anchors/Anchor.swift -------------------------------------------------------------------------------- /Constrictor/Constrictor/Anchors/AnchorDimension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Constrictor/Constrictor/Anchors/AnchorDimension.swift -------------------------------------------------------------------------------- /Constrictor/Constrictor/Anchors/AnchorXAxis.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Constrictor/Constrictor/Anchors/AnchorXAxis.swift -------------------------------------------------------------------------------- /Constrictor/Constrictor/Anchors/AnchorYAxis.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Constrictor/Constrictor/Anchors/AnchorYAxis.swift -------------------------------------------------------------------------------- /Constrictor/Constrictor/Anchors/Anchorable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Constrictor/Constrictor/Anchors/Anchorable.swift -------------------------------------------------------------------------------- /Constrictor/Constrictor/Anchors/UILayoutGuide+Anchorable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Constrictor/Constrictor/Anchors/UILayoutGuide+Anchorable.swift -------------------------------------------------------------------------------- /Constrictor/Constrictor/Anchors/UIView+Anchorable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Constrictor/Constrictor/Anchors/UIView+Anchorable.swift -------------------------------------------------------------------------------- /Constrictor/Constrictor/Assembler/Assembler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Constrictor/Constrictor/Assembler/Assembler.swift -------------------------------------------------------------------------------- /Constrictor/Constrictor/Assembler/NSLayoutConstraint+Set.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Constrictor/Constrictor/Assembler/NSLayoutConstraint+Set.swift -------------------------------------------------------------------------------- /Constrictor/Constrictor/Core/Constraints.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Constrictor/Constrictor/Core/Constraints.swift -------------------------------------------------------------------------------- /Constrictor/Constrictor/Core/Constrictor+Simple.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Constrictor/Constrictor/Core/Constrictor+Simple.swift -------------------------------------------------------------------------------- /Constrictor/Constrictor/Core/Constrictor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Constrictor/Constrictor/Core/Constrictor.swift -------------------------------------------------------------------------------- /Constrictor/Constrictor/Core/UILayoutGuide+Constrictor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Constrictor/Constrictor/Core/UILayoutGuide+Constrictor.swift -------------------------------------------------------------------------------- /Constrictor/Constrictor/Core/UIView+Constrictor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Constrictor/Constrictor/Core/UIView+Constrictor.swift -------------------------------------------------------------------------------- /Constrictor/Constrictor/Finder/NSLayoutConstraintCollection+Finder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Constrictor/Constrictor/Finder/NSLayoutConstraintCollection+Finder.swift -------------------------------------------------------------------------------- /Constrictor/Constrictor/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Constrictor/Constrictor/Info.plist -------------------------------------------------------------------------------- /Constrictor/Constrictor/Modifiers/LayoutPriority.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Constrictor/Constrictor/Modifiers/LayoutPriority.swift -------------------------------------------------------------------------------- /Constrictor/Constrictor/Modifiers/LayoutRelation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Constrictor/Constrictor/Modifiers/LayoutRelation.swift -------------------------------------------------------------------------------- /Constrictor/Constrictor/Modifiers/LayoutState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Constrictor/Constrictor/Modifiers/LayoutState.swift -------------------------------------------------------------------------------- /Constrictor/Constrictor/Sugar/Center/CenterAnchor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Constrictor/Constrictor/Sugar/Center/CenterAnchor.swift -------------------------------------------------------------------------------- /Constrictor/Constrictor/Sugar/Center/CenterConstant.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Constrictor/Constrictor/Sugar/Center/CenterConstant.swift -------------------------------------------------------------------------------- /Constrictor/Constrictor/Sugar/Center/Constrictor+Center.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Constrictor/Constrictor/Sugar/Center/Constrictor+Center.swift -------------------------------------------------------------------------------- /Constrictor/Constrictor/Sugar/Edge/Constrictor+Edge.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Constrictor/Constrictor/Sugar/Edge/Constrictor+Edge.swift -------------------------------------------------------------------------------- /Constrictor/Constrictor/Sugar/Edge/EdgeAnchor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Constrictor/Constrictor/Sugar/Edge/EdgeAnchor.swift -------------------------------------------------------------------------------- /Constrictor/Constrictor/Sugar/Edge/EdgeConstant.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Constrictor/Constrictor/Sugar/Edge/EdgeConstant.swift -------------------------------------------------------------------------------- /Constrictor/Constrictor/Sugar/Size/Constrictor+Size.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Constrictor/Constrictor/Sugar/Size/Constrictor+Size.swift -------------------------------------------------------------------------------- /Constrictor/Constrictor/Sugar/Size/SizeAnchor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Constrictor/Constrictor/Sugar/Size/SizeAnchor.swift -------------------------------------------------------------------------------- /Constrictor/Constrictor/Sugar/Size/SizeConstant.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Constrictor/Constrictor/Sugar/Size/SizeConstant.swift -------------------------------------------------------------------------------- /Constrictor/Constrictor/Update/Constrictor+Update.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Constrictor/Constrictor/Update/Constrictor+Update.swift -------------------------------------------------------------------------------- /Constrictor/ConstrictorTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Constrictor/ConstrictorTests/Info.plist -------------------------------------------------------------------------------- /Constrictor/ConstrictorTests/Snapshot Tests/Core/Constrictor+SimpleSnapshotTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Constrictor/ConstrictorTests/Snapshot Tests/Core/Constrictor+SimpleSnapshotTests.swift -------------------------------------------------------------------------------- /Constrictor/ConstrictorTests/Snapshot Tests/Core/__Snapshots__/Constrictor+SimpleSnapshotTests/testScenarioA.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Constrictor/ConstrictorTests/Snapshot Tests/Core/__Snapshots__/Constrictor+SimpleSnapshotTests/testScenarioA.1.png -------------------------------------------------------------------------------- /Constrictor/ConstrictorTests/Snapshot Tests/Helpers/SnapshotConstants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Constrictor/ConstrictorTests/Snapshot Tests/Helpers/SnapshotConstants.swift -------------------------------------------------------------------------------- /Constrictor/ConstrictorTests/Snapshot Tests/Helpers/SnapshotFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Constrictor/ConstrictorTests/Snapshot Tests/Helpers/SnapshotFactory.swift -------------------------------------------------------------------------------- /Constrictor/ConstrictorTests/Snapshot Tests/Sugar/Center & Size/Constrictor+CenterAndSizeSnaphotTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Constrictor/ConstrictorTests/Snapshot Tests/Sugar/Center & Size/Constrictor+CenterAndSizeSnaphotTests.swift -------------------------------------------------------------------------------- /Constrictor/ConstrictorTests/Snapshot Tests/Sugar/Center & Size/__Snapshots__/Constrictor+CenterAndSizeSnaphotTests/testScenarioA.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Constrictor/ConstrictorTests/Snapshot Tests/Sugar/Center & Size/__Snapshots__/Constrictor+CenterAndSizeSnaphotTests/testScenarioA.1.png -------------------------------------------------------------------------------- /Constrictor/ConstrictorTests/Snapshot Tests/Sugar/Center & Size/__Snapshots__/Constrictor+CenterAndSizeSnaphotTests/testScenarioB.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Constrictor/ConstrictorTests/Snapshot Tests/Sugar/Center & Size/__Snapshots__/Constrictor+CenterAndSizeSnaphotTests/testScenarioB.1.png -------------------------------------------------------------------------------- /Constrictor/ConstrictorTests/Snapshot Tests/Sugar/Center & Size/__Snapshots__/Constrictor+CenterAndSizeSnaphotTests/testScenarioC.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Constrictor/ConstrictorTests/Snapshot Tests/Sugar/Center & Size/__Snapshots__/Constrictor+CenterAndSizeSnaphotTests/testScenarioC.1.png -------------------------------------------------------------------------------- /Constrictor/ConstrictorTests/Snapshot Tests/Sugar/Center & Size/__Snapshots__/Constrictor+CenterAndSizeSnaphotTests/testScenarioD.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Constrictor/ConstrictorTests/Snapshot Tests/Sugar/Center & Size/__Snapshots__/Constrictor+CenterAndSizeSnaphotTests/testScenarioD.1.png -------------------------------------------------------------------------------- /Constrictor/ConstrictorTests/Snapshot Tests/Sugar/Edge/Constrictor+EdgeSnapshotTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Constrictor/ConstrictorTests/Snapshot Tests/Sugar/Edge/Constrictor+EdgeSnapshotTests.swift -------------------------------------------------------------------------------- /Constrictor/ConstrictorTests/Snapshot Tests/Sugar/Edge/__Snapshots__/Constrictor+EdgeSnapshotTests/testScenarioA.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Constrictor/ConstrictorTests/Snapshot Tests/Sugar/Edge/__Snapshots__/Constrictor+EdgeSnapshotTests/testScenarioA.1.png -------------------------------------------------------------------------------- /Constrictor/ConstrictorTests/Snapshot Tests/Sugar/Edge/__Snapshots__/Constrictor+EdgeSnapshotTests/testScenarioB.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Constrictor/ConstrictorTests/Snapshot Tests/Sugar/Edge/__Snapshots__/Constrictor+EdgeSnapshotTests/testScenarioB.1.png -------------------------------------------------------------------------------- /Constrictor/ConstrictorTests/Snapshot Tests/Sugar/Edge/__Snapshots__/Constrictor+EdgeSnapshotTests/testScenarioC.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Constrictor/ConstrictorTests/Snapshot Tests/Sugar/Edge/__Snapshots__/Constrictor+EdgeSnapshotTests/testScenarioC.1.png -------------------------------------------------------------------------------- /Constrictor/ConstrictorTests/Snapshot Tests/Sugar/Edge/__Snapshots__/Constrictor+EdgeSnapshotTests/testScenarioD.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Constrictor/ConstrictorTests/Snapshot Tests/Sugar/Edge/__Snapshots__/Constrictor+EdgeSnapshotTests/testScenarioD.1.png -------------------------------------------------------------------------------- /Constrictor/ConstrictorTests/Snapshot Tests/Sugar/Edge/__Snapshots__/Constrictor+EdgeSnapshotTests/testScenarioE.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Constrictor/ConstrictorTests/Snapshot Tests/Sugar/Edge/__Snapshots__/Constrictor+EdgeSnapshotTests/testScenarioE.1.png -------------------------------------------------------------------------------- /Constrictor/ConstrictorTests/Snapshot Tests/Sugar/Edge/__Snapshots__/Constrictor+EdgeSnapshotTests/testScenarioF.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Constrictor/ConstrictorTests/Snapshot Tests/Sugar/Edge/__Snapshots__/Constrictor+EdgeSnapshotTests/testScenarioF.1.png -------------------------------------------------------------------------------- /Constrictor/ConstrictorTests/Unit Tests/Anchors/AnchorDimensionUnitTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Constrictor/ConstrictorTests/Unit Tests/Anchors/AnchorDimensionUnitTests.swift -------------------------------------------------------------------------------- /Constrictor/ConstrictorTests/Unit Tests/Anchors/AnchorUnitTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Constrictor/ConstrictorTests/Unit Tests/Anchors/AnchorUnitTests.swift -------------------------------------------------------------------------------- /Constrictor/ConstrictorTests/Unit Tests/Anchors/AnchorXAxisUnitTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Constrictor/ConstrictorTests/Unit Tests/Anchors/AnchorXAxisUnitTests.swift -------------------------------------------------------------------------------- /Constrictor/ConstrictorTests/Unit Tests/Anchors/AnchorYAxisUnitTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Constrictor/ConstrictorTests/Unit Tests/Anchors/AnchorYAxisUnitTests.swift -------------------------------------------------------------------------------- /Constrictor/ConstrictorTests/Unit Tests/Assembler/NSLayoutConstraintSetUnitTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Constrictor/ConstrictorTests/Unit Tests/Assembler/NSLayoutConstraintSetUnitTests.swift -------------------------------------------------------------------------------- /Constrictor/ConstrictorTests/Unit Tests/Core/UILayoutGuide+ConstrictorUnitTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Constrictor/ConstrictorTests/Unit Tests/Core/UILayoutGuide+ConstrictorUnitTests.swift -------------------------------------------------------------------------------- /Constrictor/ConstrictorTests/Unit Tests/Core/UIView+ConstrictorUnitTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Constrictor/ConstrictorTests/Unit Tests/Core/UIView+ConstrictorUnitTests.swift -------------------------------------------------------------------------------- /Constrictor/ConstrictorTests/Unit Tests/Modifiers/LayoutPriorityUnitTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Constrictor/ConstrictorTests/Unit Tests/Modifiers/LayoutPriorityUnitTests.swift -------------------------------------------------------------------------------- /Constrictor/ConstrictorTests/Unit Tests/Modifiers/LayoutStateUnitTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Constrictor/ConstrictorTests/Unit Tests/Modifiers/LayoutStateUnitTests.swift -------------------------------------------------------------------------------- /Constrictor/ConstrictorTests/Unit Tests/Sugar/Center/CenterConstantUnitTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Constrictor/ConstrictorTests/Unit Tests/Sugar/Center/CenterConstantUnitTests.swift -------------------------------------------------------------------------------- /Constrictor/ConstrictorTests/Unit Tests/Sugar/Edge/EdgeConstantUnitTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Constrictor/ConstrictorTests/Unit Tests/Sugar/Edge/EdgeConstantUnitTests.swift -------------------------------------------------------------------------------- /Constrictor/ConstrictorTests/Unit Tests/Sugar/Size/SizeConstantUnitTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Constrictor/ConstrictorTests/Unit Tests/Sugar/Size/SizeConstantUnitTests.swift -------------------------------------------------------------------------------- /Constrictor/ConstrictorTests/Unit Tests/Update/ConstrictorUpdateUnitTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Constrictor/ConstrictorTests/Unit Tests/Update/ConstrictorUpdateUnitTests.swift -------------------------------------------------------------------------------- /Constrictor/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Constrictor/Podfile -------------------------------------------------------------------------------- /Constrictor/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Constrictor/Podfile.lock -------------------------------------------------------------------------------- /Constrictor/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Constrictor/Pods/Manifest.lock -------------------------------------------------------------------------------- /Constrictor/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Constrictor/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Constrictor/Pods/SWIFT_EXEC-no-coverage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Constrictor/Pods/SWIFT_EXEC-no-coverage -------------------------------------------------------------------------------- /Constrictor/Pods/SnapshotTesting/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Constrictor/Pods/SnapshotTesting/LICENSE -------------------------------------------------------------------------------- /Constrictor/Pods/SnapshotTesting/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Constrictor/Pods/SnapshotTesting/README.md -------------------------------------------------------------------------------- /Constrictor/Pods/SnapshotTesting/Sources/SnapshotTesting/AssertSnapshot.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Constrictor/Pods/SnapshotTesting/Sources/SnapshotTesting/AssertSnapshot.swift -------------------------------------------------------------------------------- /Constrictor/Pods/SnapshotTesting/Sources/SnapshotTesting/Async.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Constrictor/Pods/SnapshotTesting/Sources/SnapshotTesting/Async.swift -------------------------------------------------------------------------------- /Constrictor/Pods/SnapshotTesting/Sources/SnapshotTesting/Common/Internal.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Constrictor/Pods/SnapshotTesting/Sources/SnapshotTesting/Common/Internal.swift -------------------------------------------------------------------------------- /Constrictor/Pods/SnapshotTesting/Sources/SnapshotTesting/Common/PlistEncoder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Constrictor/Pods/SnapshotTesting/Sources/SnapshotTesting/Common/PlistEncoder.swift -------------------------------------------------------------------------------- /Constrictor/Pods/SnapshotTesting/Sources/SnapshotTesting/Common/View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Constrictor/Pods/SnapshotTesting/Sources/SnapshotTesting/Common/View.swift -------------------------------------------------------------------------------- /Constrictor/Pods/SnapshotTesting/Sources/SnapshotTesting/Common/XCTAttachment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Constrictor/Pods/SnapshotTesting/Sources/SnapshotTesting/Common/XCTAttachment.swift -------------------------------------------------------------------------------- /Constrictor/Pods/SnapshotTesting/Sources/SnapshotTesting/Diff.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Constrictor/Pods/SnapshotTesting/Sources/SnapshotTesting/Diff.swift -------------------------------------------------------------------------------- /Constrictor/Pods/SnapshotTesting/Sources/SnapshotTesting/Diffing.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Constrictor/Pods/SnapshotTesting/Sources/SnapshotTesting/Diffing.swift -------------------------------------------------------------------------------- /Constrictor/Pods/SnapshotTesting/Sources/SnapshotTesting/SnapshotTestCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Constrictor/Pods/SnapshotTesting/Sources/SnapshotTesting/SnapshotTestCase.swift -------------------------------------------------------------------------------- /Constrictor/Pods/SnapshotTesting/Sources/SnapshotTesting/Snapshotting.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Constrictor/Pods/SnapshotTesting/Sources/SnapshotTesting/Snapshotting.swift -------------------------------------------------------------------------------- /Constrictor/Pods/SnapshotTesting/Sources/SnapshotTesting/Snapshotting/Any.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Constrictor/Pods/SnapshotTesting/Sources/SnapshotTesting/Snapshotting/Any.swift -------------------------------------------------------------------------------- /Constrictor/Pods/SnapshotTesting/Sources/SnapshotTesting/Snapshotting/CALayer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Constrictor/Pods/SnapshotTesting/Sources/SnapshotTesting/Snapshotting/CALayer.swift -------------------------------------------------------------------------------- /Constrictor/Pods/SnapshotTesting/Sources/SnapshotTesting/Snapshotting/CaseIterable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Constrictor/Pods/SnapshotTesting/Sources/SnapshotTesting/Snapshotting/CaseIterable.swift -------------------------------------------------------------------------------- /Constrictor/Pods/SnapshotTesting/Sources/SnapshotTesting/Snapshotting/Codable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Constrictor/Pods/SnapshotTesting/Sources/SnapshotTesting/Snapshotting/Codable.swift -------------------------------------------------------------------------------- /Constrictor/Pods/SnapshotTesting/Sources/SnapshotTesting/Snapshotting/Data.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Constrictor/Pods/SnapshotTesting/Sources/SnapshotTesting/Snapshotting/Data.swift -------------------------------------------------------------------------------- /Constrictor/Pods/SnapshotTesting/Sources/SnapshotTesting/Snapshotting/Description.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Constrictor/Pods/SnapshotTesting/Sources/SnapshotTesting/Snapshotting/Description.swift -------------------------------------------------------------------------------- /Constrictor/Pods/SnapshotTesting/Sources/SnapshotTesting/Snapshotting/NSImage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Constrictor/Pods/SnapshotTesting/Sources/SnapshotTesting/Snapshotting/NSImage.swift -------------------------------------------------------------------------------- /Constrictor/Pods/SnapshotTesting/Sources/SnapshotTesting/Snapshotting/NSView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Constrictor/Pods/SnapshotTesting/Sources/SnapshotTesting/Snapshotting/NSView.swift -------------------------------------------------------------------------------- /Constrictor/Pods/SnapshotTesting/Sources/SnapshotTesting/Snapshotting/NSViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Constrictor/Pods/SnapshotTesting/Sources/SnapshotTesting/Snapshotting/NSViewController.swift -------------------------------------------------------------------------------- /Constrictor/Pods/SnapshotTesting/Sources/SnapshotTesting/Snapshotting/SceneKit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Constrictor/Pods/SnapshotTesting/Sources/SnapshotTesting/Snapshotting/SceneKit.swift -------------------------------------------------------------------------------- /Constrictor/Pods/SnapshotTesting/Sources/SnapshotTesting/Snapshotting/SpriteKit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Constrictor/Pods/SnapshotTesting/Sources/SnapshotTesting/Snapshotting/SpriteKit.swift -------------------------------------------------------------------------------- /Constrictor/Pods/SnapshotTesting/Sources/SnapshotTesting/Snapshotting/String.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Constrictor/Pods/SnapshotTesting/Sources/SnapshotTesting/Snapshotting/String.swift -------------------------------------------------------------------------------- /Constrictor/Pods/SnapshotTesting/Sources/SnapshotTesting/Snapshotting/UIImage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Constrictor/Pods/SnapshotTesting/Sources/SnapshotTesting/Snapshotting/UIImage.swift -------------------------------------------------------------------------------- /Constrictor/Pods/SnapshotTesting/Sources/SnapshotTesting/Snapshotting/UIView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Constrictor/Pods/SnapshotTesting/Sources/SnapshotTesting/Snapshotting/UIView.swift -------------------------------------------------------------------------------- /Constrictor/Pods/SnapshotTesting/Sources/SnapshotTesting/Snapshotting/UIViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Constrictor/Pods/SnapshotTesting/Sources/SnapshotTesting/Snapshotting/UIViewController.swift -------------------------------------------------------------------------------- /Constrictor/Pods/SnapshotTesting/Sources/SnapshotTesting/Snapshotting/URLRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Constrictor/Pods/SnapshotTesting/Sources/SnapshotTesting/Snapshotting/URLRequest.swift -------------------------------------------------------------------------------- /Constrictor/Pods/Target Support Files/Pods-ConstrictorTests/Pods-ConstrictorTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Constrictor/Pods/Target Support Files/Pods-ConstrictorTests/Pods-ConstrictorTests-Info.plist -------------------------------------------------------------------------------- /Constrictor/Pods/Target Support Files/Pods-ConstrictorTests/Pods-ConstrictorTests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Constrictor/Pods/Target Support Files/Pods-ConstrictorTests/Pods-ConstrictorTests-acknowledgements.markdown -------------------------------------------------------------------------------- /Constrictor/Pods/Target Support Files/Pods-ConstrictorTests/Pods-ConstrictorTests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Constrictor/Pods/Target Support Files/Pods-ConstrictorTests/Pods-ConstrictorTests-acknowledgements.plist -------------------------------------------------------------------------------- /Constrictor/Pods/Target Support Files/Pods-ConstrictorTests/Pods-ConstrictorTests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Constrictor/Pods/Target Support Files/Pods-ConstrictorTests/Pods-ConstrictorTests-dummy.m -------------------------------------------------------------------------------- /Constrictor/Pods/Target Support Files/Pods-ConstrictorTests/Pods-ConstrictorTests-frameworks-Debug-input-files.xcfilelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Constrictor/Pods/Target Support Files/Pods-ConstrictorTests/Pods-ConstrictorTests-frameworks-Debug-input-files.xcfilelist -------------------------------------------------------------------------------- /Constrictor/Pods/Target Support Files/Pods-ConstrictorTests/Pods-ConstrictorTests-frameworks-Debug-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/SnapshotTesting.framework -------------------------------------------------------------------------------- /Constrictor/Pods/Target Support Files/Pods-ConstrictorTests/Pods-ConstrictorTests-frameworks-Release-input-files.xcfilelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Constrictor/Pods/Target Support Files/Pods-ConstrictorTests/Pods-ConstrictorTests-frameworks-Release-input-files.xcfilelist -------------------------------------------------------------------------------- /Constrictor/Pods/Target Support Files/Pods-ConstrictorTests/Pods-ConstrictorTests-frameworks-Release-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/SnapshotTesting.framework -------------------------------------------------------------------------------- /Constrictor/Pods/Target Support Files/Pods-ConstrictorTests/Pods-ConstrictorTests-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Constrictor/Pods/Target Support Files/Pods-ConstrictorTests/Pods-ConstrictorTests-frameworks.sh -------------------------------------------------------------------------------- /Constrictor/Pods/Target Support Files/Pods-ConstrictorTests/Pods-ConstrictorTests-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Constrictor/Pods/Target Support Files/Pods-ConstrictorTests/Pods-ConstrictorTests-umbrella.h -------------------------------------------------------------------------------- /Constrictor/Pods/Target Support Files/Pods-ConstrictorTests/Pods-ConstrictorTests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Constrictor/Pods/Target Support Files/Pods-ConstrictorTests/Pods-ConstrictorTests.debug.xcconfig -------------------------------------------------------------------------------- /Constrictor/Pods/Target Support Files/Pods-ConstrictorTests/Pods-ConstrictorTests.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Constrictor/Pods/Target Support Files/Pods-ConstrictorTests/Pods-ConstrictorTests.modulemap -------------------------------------------------------------------------------- /Constrictor/Pods/Target Support Files/Pods-ConstrictorTests/Pods-ConstrictorTests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Constrictor/Pods/Target Support Files/Pods-ConstrictorTests/Pods-ConstrictorTests.release.xcconfig -------------------------------------------------------------------------------- /Constrictor/Pods/Target Support Files/SnapshotTesting/SnapshotTesting-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Constrictor/Pods/Target Support Files/SnapshotTesting/SnapshotTesting-Info.plist -------------------------------------------------------------------------------- /Constrictor/Pods/Target Support Files/SnapshotTesting/SnapshotTesting-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Constrictor/Pods/Target Support Files/SnapshotTesting/SnapshotTesting-dummy.m -------------------------------------------------------------------------------- /Constrictor/Pods/Target Support Files/SnapshotTesting/SnapshotTesting-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Constrictor/Pods/Target Support Files/SnapshotTesting/SnapshotTesting-prefix.pch -------------------------------------------------------------------------------- /Constrictor/Pods/Target Support Files/SnapshotTesting/SnapshotTesting-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Constrictor/Pods/Target Support Files/SnapshotTesting/SnapshotTesting-umbrella.h -------------------------------------------------------------------------------- /Constrictor/Pods/Target Support Files/SnapshotTesting/SnapshotTesting.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Constrictor/Pods/Target Support Files/SnapshotTesting/SnapshotTesting.modulemap -------------------------------------------------------------------------------- /Constrictor/Pods/Target Support Files/SnapshotTesting/SnapshotTesting.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Constrictor/Pods/Target Support Files/SnapshotTesting/SnapshotTesting.xcconfig -------------------------------------------------------------------------------- /Example/Cartfile: -------------------------------------------------------------------------------- 1 | github "pedrommcarrasco/Constrictor" -------------------------------------------------------------------------------- /Example/Cartfile.resolved: -------------------------------------------------------------------------------- 1 | github "pedrommcarrasco/Constrictor" "0.3.1" 2 | -------------------------------------------------------------------------------- /Example/Example.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Example/Example.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Example/Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/Example.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Example/Example.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/Example.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Example/Example.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/Example.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Example/Example.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/Example/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Example/Example/AppDelegate.swift -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Example/Example/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Example/Example/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/Example/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Example/Example/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Example/Example/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Example/Example/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Example/Example/Info.plist -------------------------------------------------------------------------------- /Example/Example/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Example/Example/ViewController.swift -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/LICENSE -------------------------------------------------------------------------------- /PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Package.swift -------------------------------------------------------------------------------- /Pods/SWIFT_EXEC-no-coverage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/Pods/SWIFT_EXEC-no-coverage -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/README.md -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/codecov.yml -------------------------------------------------------------------------------- /cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/cover.jpg -------------------------------------------------------------------------------- /presentation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrommcarrasco/Constrictor/HEAD/presentation.gif --------------------------------------------------------------------------------