gitextract_fy6u_tc2/ ├── .gitignore ├── .travis.yml ├── Assets/ │ ├── ImageError.psd │ ├── ImageError@2x.psd │ ├── ImageError@3x.psd │ ├── ImageSelected.psd │ ├── ImageSelected@2x.psd │ ├── ImageSelected@3x.psd │ ├── ImageSelectedSmallOff.psd │ ├── ImageSelectedSmallOff@2x.psd │ ├── ImageSelectedSmallOff@3x.psd │ ├── ImageSelectedSmallOn.psd │ ├── ImageSelectedSmallOn@2x.psd │ ├── ImageSelectedSmallOn@3x.psd │ ├── PlayButtonOverlayLarge.psd │ ├── PlayButtonOverlayLarge@2x.psd │ ├── PlayButtonOverlayLarge@3x.psd │ ├── PlayButtonOverlayLargeTap.psd │ ├── PlayButtonOverlayLargeTap@2x.psd │ ├── PlayButtonOverlayLargeTap@3x.psd │ ├── UIBarButtonItemArrow.psd │ ├── UIBarButtonItemArrow@2x.psd │ ├── UIBarButtonItemArrow@3x.psd │ ├── UIBarButtonItemGrid.psd │ ├── UIBarButtonItemGrid@2x.psd │ ├── UIBarButtonItemGrid@3x.psd │ ├── VideoOverlay.psd │ ├── VideoOverlay@2x.psd │ └── VideoOverlay@3x.psd ├── Example/ │ ├── MWPhotoBrowser/ │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Images.xcassets/ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ └── Contents.json │ │ │ ├── ImageSelected.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── ImageSelectedSmall.imageset/ │ │ │ │ └── Contents.json │ │ │ └── LaunchImage.launchimage/ │ │ │ └── Contents.json │ │ ├── MWPhotoBrowser-Info.plist │ │ ├── MWPhotoBrowser-Prefix.pch │ │ ├── Main.storyboard │ │ ├── Menu.h │ │ ├── Menu.m │ │ ├── en.lproj/ │ │ │ └── InfoPlist.strings │ │ └── main.m │ ├── MWPhotoBrowser.xcodeproj/ │ │ ├── project.pbxproj │ │ ├── project.xcworkspace/ │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata/ │ │ └── xcschemes/ │ │ └── MWPhotoBrowser-Example.xcscheme │ ├── MWPhotoBrowser.xcworkspace/ │ │ └── contents.xcworkspacedata │ ├── Podfile │ ├── Pods/ │ │ ├── DACircularProgress/ │ │ │ ├── DACircularProgress/ │ │ │ │ ├── DACircularProgressView.h │ │ │ │ ├── DACircularProgressView.m │ │ │ │ ├── DALabeledCircularProgressView.h │ │ │ │ └── DALabeledCircularProgressView.m │ │ │ ├── LICENSE.md │ │ │ └── README.md │ │ ├── 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 │ │ ├── Expecta+Snapshots/ │ │ │ ├── EXPMatchers+FBSnapshotTest.h │ │ │ ├── EXPMatchers+FBSnapshotTest.m │ │ │ ├── LICENSE.md │ │ │ └── README.md │ │ ├── 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 │ │ ├── Local Podspecs/ │ │ │ └── MWPhotoBrowser.podspec.json │ │ ├── MBProgressHUD/ │ │ │ ├── LICENSE │ │ │ ├── MBProgressHUD.h │ │ │ ├── MBProgressHUD.m │ │ │ └── README.mdown │ │ ├── Pods.xcodeproj/ │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace/ │ │ │ │ └── contents.xcworkspacedata │ │ │ └── xcshareddata/ │ │ │ └── xcschemes/ │ │ │ ├── MWPhotoBrowser.xcscheme │ │ │ ├── Pods-MWPhotoBrowser_Example-MWPhotoBrowser-MWPhotoBrowser.xcscheme │ │ │ ├── Pods-MWPhotoBrowser_Example-MWPhotoBrowser.xcscheme │ │ │ ├── Pods-MWPhotoBrowser_Tests-MWPhotoBrowser-MWPhotoBrowser.xcscheme │ │ │ └── Pods-MWPhotoBrowser_Tests-MWPhotoBrowser.xcscheme │ │ ├── SDWebImage/ │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── SDWebImage/ │ │ │ ├── NSData+ImageContentType.h │ │ │ ├── NSData+ImageContentType.m │ │ │ ├── SDImageCache.h │ │ │ ├── SDImageCache.m │ │ │ ├── SDWebImageCompat.h │ │ │ ├── SDWebImageCompat.m │ │ │ ├── SDWebImageDecoder.h │ │ │ ├── SDWebImageDecoder.m │ │ │ ├── SDWebImageDownloader.h │ │ │ ├── SDWebImageDownloader.m │ │ │ ├── SDWebImageDownloaderOperation.h │ │ │ ├── SDWebImageDownloaderOperation.m │ │ │ ├── SDWebImageManager.h │ │ │ ├── SDWebImageManager.m │ │ │ ├── SDWebImageOperation.h │ │ │ ├── SDWebImagePrefetcher.h │ │ │ ├── SDWebImagePrefetcher.m │ │ │ ├── UIButton+WebCache.h │ │ │ ├── UIButton+WebCache.m │ │ │ ├── UIImage+GIF.h │ │ │ ├── UIImage+GIF.m │ │ │ ├── UIImage+MultiFormat.h │ │ │ ├── UIImage+MultiFormat.m │ │ │ ├── UIImageView+HighlightedWebCache.h │ │ │ ├── UIImageView+HighlightedWebCache.m │ │ │ ├── UIImageView+WebCache.h │ │ │ ├── UIImageView+WebCache.m │ │ │ ├── UIView+WebCacheOperation.h │ │ │ └── UIView+WebCacheOperation.m │ │ ├── Specta/ │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── Specta/ │ │ │ └── Specta/ │ │ │ ├── SPTCallSite.h │ │ │ ├── SPTCallSite.m │ │ │ ├── SPTCompiledExample.h │ │ │ ├── SPTCompiledExample.m │ │ │ ├── SPTExample.h │ │ │ ├── SPTExample.m │ │ │ ├── SPTExampleGroup.h │ │ │ ├── SPTExampleGroup.m │ │ │ ├── SPTExcludeGlobalBeforeAfterEach.h │ │ │ ├── SPTGlobalBeforeAfterEach.h │ │ │ ├── SPTSharedExampleGroups.h │ │ │ ├── SPTSharedExampleGroups.m │ │ │ ├── SPTSpec.h │ │ │ ├── SPTSpec.m │ │ │ ├── SPTTestSuite.h │ │ │ ├── SPTTestSuite.m │ │ │ ├── Specta.h │ │ │ ├── SpectaDSL.h │ │ │ ├── SpectaDSL.m │ │ │ ├── SpectaTypes.h │ │ │ ├── SpectaUtility.h │ │ │ ├── SpectaUtility.m │ │ │ ├── XCTest+Private.h │ │ │ ├── XCTestCase+Specta.h │ │ │ └── XCTestCase+Specta.m │ │ └── Target Support Files/ │ │ ├── DACircularProgress/ │ │ │ ├── DACircularProgress-dummy.m │ │ │ ├── DACircularProgress-prefix.pch │ │ │ └── DACircularProgress.xcconfig │ │ ├── Expecta/ │ │ │ ├── Expecta-dummy.m │ │ │ ├── Expecta-prefix.pch │ │ │ └── Expecta.xcconfig │ │ ├── Expecta+Snapshots/ │ │ │ ├── Expecta+Snapshots-dummy.m │ │ │ ├── Expecta+Snapshots-prefix.pch │ │ │ └── Expecta+Snapshots.xcconfig │ │ ├── FBSnapshotTestCase/ │ │ │ ├── FBSnapshotTestCase-dummy.m │ │ │ ├── FBSnapshotTestCase-prefix.pch │ │ │ └── FBSnapshotTestCase.xcconfig │ │ ├── MBProgressHUD/ │ │ │ ├── MBProgressHUD-dummy.m │ │ │ ├── MBProgressHUD-prefix.pch │ │ │ └── MBProgressHUD.xcconfig │ │ ├── MWPhotoBrowser/ │ │ │ ├── MWPhotoBrowser-dummy.m │ │ │ ├── MWPhotoBrowser-prefix.pch │ │ │ └── MWPhotoBrowser.xcconfig │ │ ├── Pods-MWPhotoBrowser_Example/ │ │ │ ├── Pods-MWPhotoBrowser_Example-acknowledgements.markdown │ │ │ ├── Pods-MWPhotoBrowser_Example-acknowledgements.plist │ │ │ ├── Pods-MWPhotoBrowser_Example-dummy.m │ │ │ ├── Pods-MWPhotoBrowser_Example-frameworks.sh │ │ │ ├── Pods-MWPhotoBrowser_Example-resources.sh │ │ │ ├── Pods-MWPhotoBrowser_Example.debug.xcconfig │ │ │ └── Pods-MWPhotoBrowser_Example.release.xcconfig │ │ ├── Pods-MWPhotoBrowser_Tests/ │ │ │ ├── Pods-MWPhotoBrowser_Tests-acknowledgements.markdown │ │ │ ├── Pods-MWPhotoBrowser_Tests-acknowledgements.plist │ │ │ ├── Pods-MWPhotoBrowser_Tests-dummy.m │ │ │ ├── Pods-MWPhotoBrowser_Tests-frameworks.sh │ │ │ ├── Pods-MWPhotoBrowser_Tests-resources.sh │ │ │ ├── Pods-MWPhotoBrowser_Tests.debug.xcconfig │ │ │ └── Pods-MWPhotoBrowser_Tests.release.xcconfig │ │ ├── SDWebImage/ │ │ │ ├── SDWebImage-dummy.m │ │ │ ├── SDWebImage-prefix.pch │ │ │ └── SDWebImage.xcconfig │ │ └── Specta/ │ │ ├── Specta-dummy.m │ │ ├── Specta-prefix.pch │ │ └── Specta.xcconfig │ └── Tests/ │ ├── Tests-Info.plist │ ├── Tests-Prefix.pch │ ├── Tests.m │ └── en.lproj/ │ └── InfoPlist.strings ├── LICENSE ├── MWPhotoBrowser.podspec ├── Pod/ │ ├── Assets/ │ │ └── .gitkeep │ └── Classes/ │ ├── .gitkeep │ ├── MWCaptionView.h │ ├── MWCaptionView.m │ ├── MWCommon.h │ ├── MWGridCell.h │ ├── MWGridCell.m │ ├── MWGridViewController.h │ ├── MWGridViewController.m │ ├── MWPhoto.h │ ├── MWPhoto.m │ ├── MWPhotoBrowser.h │ ├── MWPhotoBrowser.m │ ├── MWPhotoBrowserPrivate.h │ ├── MWPhotoProtocol.h │ ├── MWTapDetectingImageView.h │ ├── MWTapDetectingImageView.m │ ├── MWTapDetectingView.h │ ├── MWTapDetectingView.m │ ├── MWZoomingScrollView.h │ ├── MWZoomingScrollView.m │ ├── UIImage+MWPhotoBrowser.h │ └── UIImage+MWPhotoBrowser.m └── README.md