gitextract_pa1zs8l1/ ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── CodeSnippets/ │ ├── Masonry Constraint Make.codesnippet │ ├── Masonry Constraint Remake.codesnippet │ └── Masonry Constraint Update.codesnippet ├── Examples/ │ ├── Masonry iOS Examples/ │ │ ├── Images.xcassets/ │ │ │ └── Contents.json │ │ ├── Launch Screen.storyboard │ │ ├── MASAppDelegate.h │ │ ├── MASAppDelegate.m │ │ ├── MASExampleAnimatedView.h │ │ ├── MASExampleAnimatedView.m │ │ ├── MASExampleArrayView.h │ │ ├── MASExampleArrayView.m │ │ ├── MASExampleAspectFitView.h │ │ ├── MASExampleAspectFitView.m │ │ ├── MASExampleAttributeChainingView.h │ │ ├── MASExampleAttributeChainingView.m │ │ ├── MASExampleBasicView.h │ │ ├── MASExampleBasicView.m │ │ ├── MASExampleConstantsView.h │ │ ├── MASExampleConstantsView.m │ │ ├── MASExampleDebuggingView.h │ │ ├── MASExampleDebuggingView.m │ │ ├── MASExampleDistributeView.h │ │ ├── MASExampleDistributeView.m │ │ ├── MASExampleLabelView.h │ │ ├── MASExampleLabelView.m │ │ ├── MASExampleLayoutGuideViewController.h │ │ ├── MASExampleLayoutGuideViewController.m │ │ ├── MASExampleListViewController.h │ │ ├── MASExampleListViewController.m │ │ ├── MASExampleMarginView.h │ │ ├── MASExampleMarginView.m │ │ ├── MASExampleRemakeView.h │ │ ├── MASExampleRemakeView.m │ │ ├── MASExampleSafeAreaLayoutGuideViewController.h │ │ ├── MASExampleSafeAreaLayoutGuideViewController.m │ │ ├── MASExampleScrollView.h │ │ ├── MASExampleScrollView.m │ │ ├── MASExampleSidesView.h │ │ ├── MASExampleSidesView.m │ │ ├── MASExampleUpdateView.h │ │ ├── MASExampleUpdateView.m │ │ ├── MASExampleViewController.h │ │ ├── MASExampleViewController.m │ │ ├── Masonry iOS Examples-Info.plist │ │ ├── Masonry iOS Examples-Prefix.pch │ │ ├── en.lproj/ │ │ │ └── InfoPlist.strings │ │ └── main.m │ └── Masonry iOS Examples.xcodeproj/ │ ├── project.pbxproj │ ├── project.xcworkspace/ │ │ └── contents.xcworkspacedata │ └── xcshareddata/ │ └── xcschemes/ │ └── Masonry iOS Examples.xcscheme ├── ISSUE_TEMPLATE.md ├── LICENSE ├── Masonry/ │ ├── Info.plist │ ├── MASCompositeConstraint.h │ ├── MASCompositeConstraint.m │ ├── MASConstraint+Private.h │ ├── MASConstraint.h │ ├── MASConstraint.m │ ├── MASConstraintMaker.h │ ├── MASConstraintMaker.m │ ├── MASLayoutConstraint.h │ ├── MASLayoutConstraint.m │ ├── MASUtilities.h │ ├── MASViewAttribute.h │ ├── MASViewAttribute.m │ ├── MASViewConstraint.h │ ├── MASViewConstraint.m │ ├── Masonry.h │ ├── NSArray+MASAdditions.h │ ├── NSArray+MASAdditions.m │ ├── NSArray+MASShorthandAdditions.h │ ├── NSLayoutConstraint+MASDebugAdditions.h │ ├── NSLayoutConstraint+MASDebugAdditions.m │ ├── View+MASAdditions.h │ ├── View+MASAdditions.m │ ├── View+MASShorthandAdditions.h │ ├── ViewController+MASAdditions.h │ └── ViewController+MASAdditions.m ├── Masonry.podspec ├── Masonry.xcodeproj/ │ ├── project.pbxproj │ ├── project.xcworkspace/ │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata/ │ │ └── Masonry.xccheckout │ └── xcshareddata/ │ └── xcschemes/ │ ├── Masonry OSX.xcscheme │ └── Masonry iOS.xcscheme ├── Masonry.xcworkspace/ │ └── contents.xcworkspacedata ├── Podfile ├── Pods/ │ ├── Expecta/ │ │ ├── Expecta/ │ │ │ ├── EXPBlockDefinedMatcher.h │ │ │ ├── EXPBlockDefinedMatcher.m │ │ │ ├── EXPDefines.h │ │ │ ├── EXPDoubleTuple.h │ │ │ ├── EXPDoubleTuple.m │ │ │ ├── EXPExpect.h │ │ │ ├── EXPExpect.m │ │ │ ├── EXPFloatTuple.h │ │ │ ├── EXPFloatTuple.m │ │ │ ├── EXPMatcher.h │ │ │ ├── EXPUnsupportedObject.h │ │ │ ├── EXPUnsupportedObject.m │ │ │ ├── Expecta.h │ │ │ ├── ExpectaObject.h │ │ │ ├── ExpectaObject.m │ │ │ ├── ExpectaSupport.h │ │ │ ├── ExpectaSupport.m │ │ │ ├── Matchers/ │ │ │ │ ├── EXPMatcherHelpers.h │ │ │ │ ├── EXPMatcherHelpers.m │ │ │ │ ├── EXPMatchers+beCloseTo.h │ │ │ │ ├── EXPMatchers+beCloseTo.m │ │ │ │ ├── EXPMatchers+beFalsy.h │ │ │ │ ├── EXPMatchers+beFalsy.m │ │ │ │ ├── EXPMatchers+beGreaterThan.h │ │ │ │ ├── EXPMatchers+beGreaterThan.m │ │ │ │ ├── EXPMatchers+beGreaterThanOrEqualTo.h │ │ │ │ ├── EXPMatchers+beGreaterThanOrEqualTo.m │ │ │ │ ├── EXPMatchers+beIdenticalTo.h │ │ │ │ ├── EXPMatchers+beIdenticalTo.m │ │ │ │ ├── EXPMatchers+beInTheRangeOf.h │ │ │ │ ├── EXPMatchers+beInTheRangeOf.m │ │ │ │ ├── EXPMatchers+beInstanceOf.h │ │ │ │ ├── EXPMatchers+beInstanceOf.m │ │ │ │ ├── EXPMatchers+beKindOf.h │ │ │ │ ├── EXPMatchers+beKindOf.m │ │ │ │ ├── EXPMatchers+beLessThan.h │ │ │ │ ├── EXPMatchers+beLessThan.m │ │ │ │ ├── EXPMatchers+beLessThanOrEqualTo.h │ │ │ │ ├── EXPMatchers+beLessThanOrEqualTo.m │ │ │ │ ├── EXPMatchers+beNil.h │ │ │ │ ├── EXPMatchers+beNil.m │ │ │ │ ├── EXPMatchers+beSubclassOf.h │ │ │ │ ├── EXPMatchers+beSubclassOf.m │ │ │ │ ├── EXPMatchers+beSupersetOf.h │ │ │ │ ├── EXPMatchers+beSupersetOf.m │ │ │ │ ├── EXPMatchers+beTruthy.h │ │ │ │ ├── EXPMatchers+beTruthy.m │ │ │ │ ├── EXPMatchers+beginWith.h │ │ │ │ ├── EXPMatchers+beginWith.m │ │ │ │ ├── EXPMatchers+conformTo.h │ │ │ │ ├── EXPMatchers+conformTo.m │ │ │ │ ├── EXPMatchers+contain.h │ │ │ │ ├── EXPMatchers+contain.m │ │ │ │ ├── EXPMatchers+endWith.h │ │ │ │ ├── EXPMatchers+endWith.m │ │ │ │ ├── EXPMatchers+equal.h │ │ │ │ ├── EXPMatchers+equal.m │ │ │ │ ├── EXPMatchers+haveCountOf.h │ │ │ │ ├── EXPMatchers+haveCountOf.m │ │ │ │ ├── EXPMatchers+match.h │ │ │ │ ├── EXPMatchers+match.m │ │ │ │ ├── EXPMatchers+postNotification.h │ │ │ │ ├── EXPMatchers+postNotification.m │ │ │ │ ├── EXPMatchers+raise.h │ │ │ │ ├── EXPMatchers+raise.m │ │ │ │ ├── EXPMatchers+raiseWithReason.h │ │ │ │ ├── EXPMatchers+raiseWithReason.m │ │ │ │ ├── EXPMatchers+respondTo.h │ │ │ │ ├── EXPMatchers+respondTo.m │ │ │ │ └── EXPMatchers.h │ │ │ ├── NSObject+Expecta.h │ │ │ ├── NSValue+Expecta.h │ │ │ └── NSValue+Expecta.m │ │ ├── LICENSE │ │ └── README.md │ ├── Local Podspecs/ │ │ └── Masonry.podspec.json │ ├── Pods.xcodeproj/ │ │ └── project.pbxproj │ └── Target Support Files/ │ ├── Expecta/ │ │ ├── Expecta-dummy.m │ │ ├── Expecta-prefix.pch │ │ └── Expecta.xcconfig │ ├── Masonry/ │ │ ├── Masonry-dummy.m │ │ ├── Masonry-prefix.pch │ │ └── Masonry.xcconfig │ ├── Pods-Masonry iOS Examples/ │ │ ├── Pods-Masonry iOS Examples-acknowledgements.markdown │ │ ├── Pods-Masonry iOS Examples-acknowledgements.plist │ │ ├── Pods-Masonry iOS Examples-dummy.m │ │ ├── Pods-Masonry iOS Examples-frameworks.sh │ │ ├── Pods-Masonry iOS Examples-resources.sh │ │ ├── Pods-Masonry iOS Examples.debug.xcconfig │ │ └── Pods-Masonry iOS Examples.release.xcconfig │ ├── Pods-Masonry iOS Tests/ │ │ ├── Pods-Masonry iOS Tests-acknowledgements.markdown │ │ ├── Pods-Masonry iOS Tests-acknowledgements.plist │ │ ├── Pods-Masonry iOS Tests-dummy.m │ │ ├── Pods-Masonry iOS Tests-frameworks.sh │ │ ├── Pods-Masonry iOS Tests-resources.sh │ │ ├── Pods-Masonry iOS Tests.debug.xcconfig │ │ └── Pods-Masonry iOS Tests.release.xcconfig │ └── Pods-MasonryTestsLoader/ │ ├── Pods-MasonryTestsLoader-acknowledgements.markdown │ ├── Pods-MasonryTestsLoader-acknowledgements.plist │ ├── Pods-MasonryTestsLoader-dummy.m │ ├── Pods-MasonryTestsLoader-frameworks.sh │ ├── Pods-MasonryTestsLoader-resources.sh │ ├── Pods-MasonryTestsLoader.debug.xcconfig │ └── Pods-MasonryTestsLoader.release.xcconfig ├── README.md ├── Tests/ │ ├── GcovTestObserver.m │ ├── Masonry Tests.xcodeproj/ │ │ ├── project.pbxproj │ │ └── xcshareddata/ │ │ └── xcschemes/ │ │ └── Masonry iOS Tests.xcscheme │ ├── MasonryTests-Info.plist │ ├── MasonryTests-Prefix.pch │ ├── MasonryTestsLoader/ │ │ ├── CASAppDelegate.h │ │ ├── CASAppDelegate.m │ │ ├── Images.xcassets/ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ └── Contents.json │ │ │ └── LaunchImage.launchimage/ │ │ │ └── Contents.json │ │ ├── MasonryTestsLoader-Info.plist │ │ ├── MasonryTestsLoader-Prefix.pch │ │ ├── en.lproj/ │ │ │ └── InfoPlist.strings │ │ └── main.m │ ├── NSObject+MASSubscriptSupport.h │ ├── Specs/ │ │ ├── MASCompositeConstraintSpec.m │ │ ├── MASConstraintDelegateMock.h │ │ ├── MASConstraintDelegateMock.m │ │ ├── MASConstraintMakerSpec.m │ │ ├── MASViewAttributeSpec.m │ │ ├── MASViewConstraintSpec.m │ │ ├── NSArray+MASAdditionsSpec.m │ │ ├── NSLayoutConstraint+MASDebugAdditionsSpec.m │ │ ├── View+MASAdditionsSpec.m │ │ └── ViewController+MASAdditionsSpec.m │ └── XCTest+Spec.h └── script/ ├── coveralls.sh └── exportenv.sh