├── .gitignore ├── .swift-version ├── .travis.yml ├── CHANGELOG.md ├── CollieGallery.podspec ├── Docs └── Images │ ├── CustomAction.png │ ├── InteractiveTransition.gif │ ├── Paging.gif │ ├── Transition.gif │ ├── Zoom.gif │ └── ZoomTransition.gif ├── Example ├── CollieGallery.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── CollieGallery-Example.xcscheme ├── CollieGallery.xcworkspace │ └── contents.xcworkspacedata ├── CollieGallery │ ├── AppDelegate.swift │ ├── AppearanceTableViewController.swift │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── Images.xcassets │ │ ├── 1.imageset │ │ │ ├── 1.jpg │ │ │ └── Contents.json │ │ ├── 2.imageset │ │ │ ├── 2.jpg │ │ │ └── Contents.json │ │ ├── 3.imageset │ │ │ ├── 3.jpg │ │ │ └── Contents.json │ │ ├── 4.imageset │ │ │ ├── 4.jpg │ │ │ └── Contents.json │ │ ├── 5.imageset │ │ │ ├── 5.jpg │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── broom.imageset │ │ │ ├── Contents.json │ │ │ ├── broom-1.png │ │ │ ├── broom-2.png │ │ │ └── broom.png │ │ ├── home.imageset │ │ │ ├── Contents.json │ │ │ ├── home-1.png │ │ │ ├── home-2.png │ │ │ └── home.png │ │ ├── resize.imageset │ │ │ ├── Contents.json │ │ │ ├── resize.png │ │ │ ├── resize@2x.png │ │ │ └── resize@3x.png │ │ └── settings.imageset │ │ │ ├── Contents.json │ │ │ ├── settings-1.png │ │ │ ├── settings-2.png │ │ │ └── settings.png │ ├── Info.plist │ ├── OptionsTableViewController.swift │ └── ViewController.swift ├── Podfile ├── Podfile.lock ├── Pods │ ├── Local Podspecs │ │ └── CollieGallery.podspec.json │ ├── Manifest.lock │ ├── Nimble │ │ ├── README.md │ │ └── Sources │ │ │ ├── Nimble │ │ │ ├── Adapters │ │ │ │ ├── AdapterProtocols.swift │ │ │ │ ├── AssertionDispatcher.swift │ │ │ │ ├── AssertionRecorder.swift │ │ │ │ ├── NMBExpectation.swift │ │ │ │ ├── NMBObjCMatcher.swift │ │ │ │ ├── NimbleEnvironment.swift │ │ │ │ └── NimbleXCTestHandler.swift │ │ │ ├── DSL+Wait.swift │ │ │ ├── DSL.swift │ │ │ ├── Expectation.swift │ │ │ ├── Expression.swift │ │ │ ├── FailureMessage.swift │ │ │ ├── Matchers │ │ │ │ ├── AllPass.swift │ │ │ │ ├── AsyncMatcherWrapper.swift │ │ │ │ ├── BeAKindOf.swift │ │ │ │ ├── BeAnInstanceOf.swift │ │ │ │ ├── BeCloseTo.swift │ │ │ │ ├── BeEmpty.swift │ │ │ │ ├── BeGreaterThan.swift │ │ │ │ ├── BeGreaterThanOrEqualTo.swift │ │ │ │ ├── BeIdenticalTo.swift │ │ │ │ ├── BeLessThan.swift │ │ │ │ ├── BeLessThanOrEqual.swift │ │ │ │ ├── BeLogical.swift │ │ │ │ ├── BeNil.swift │ │ │ │ ├── BeVoid.swift │ │ │ │ ├── BeginWith.swift │ │ │ │ ├── Contain.swift │ │ │ │ ├── EndWith.swift │ │ │ │ ├── Equal.swift │ │ │ │ ├── HaveCount.swift │ │ │ │ ├── Match.swift │ │ │ │ ├── MatchError.swift │ │ │ │ ├── MatcherFunc.swift │ │ │ │ ├── MatcherProtocols.swift │ │ │ │ ├── PostNotification.swift │ │ │ │ ├── RaisesException.swift │ │ │ │ ├── SatisfyAnyOf.swift │ │ │ │ └── ThrowError.swift │ │ │ ├── Nimble.h │ │ │ └── Utils │ │ │ │ ├── Async.swift │ │ │ │ ├── Errors.swift │ │ │ │ ├── Functional.swift │ │ │ │ ├── SourceLocation.swift │ │ │ │ └── Stringers.swift │ │ │ └── NimbleObjectiveC │ │ │ ├── CurrentTestCaseTracker.h │ │ │ ├── DSL.h │ │ │ ├── DSL.m │ │ │ ├── NMBExceptionCapture.h │ │ │ ├── NMBExceptionCapture.m │ │ │ ├── NMBStringify.h │ │ │ ├── NMBStringify.m │ │ │ └── XCTestObservationCenter+Register.m │ ├── Pods.xcodeproj │ │ └── project.pbxproj │ ├── Quick │ │ ├── LICENSE │ │ ├── README.md │ │ └── Sources │ │ │ ├── Quick │ │ │ ├── Callsite.swift │ │ │ ├── Configuration │ │ │ │ └── Configuration.swift │ │ │ ├── DSL │ │ │ │ ├── DSL.swift │ │ │ │ └── World+DSL.swift │ │ │ ├── ErrorUtility.swift │ │ │ ├── Example.swift │ │ │ ├── ExampleGroup.swift │ │ │ ├── ExampleMetadata.swift │ │ │ ├── Filter.swift │ │ │ ├── Hooks │ │ │ │ ├── Closures.swift │ │ │ │ ├── ExampleHooks.swift │ │ │ │ ├── HooksPhase.swift │ │ │ │ └── SuiteHooks.swift │ │ │ ├── NSBundle+CurrentTestBundle.swift │ │ │ ├── QuickSelectedTestSuiteBuilder.swift │ │ │ ├── QuickTestSuite.swift │ │ │ └── World.swift │ │ │ └── QuickObjectiveC │ │ │ ├── Configuration │ │ │ ├── QuickConfiguration.h │ │ │ └── QuickConfiguration.m │ │ │ ├── DSL │ │ │ ├── QCKDSL.h │ │ │ ├── QCKDSL.m │ │ │ └── World+DSL.h │ │ │ ├── Quick.h │ │ │ ├── QuickSpec.h │ │ │ ├── QuickSpec.m │ │ │ ├── World.h │ │ │ └── XCTestSuite+QuickTestSuiteBuilder.m │ └── Target Support Files │ │ ├── CollieGallery-iOS10.0 │ │ ├── CollieGallery-iOS10.0-dummy.m │ │ ├── CollieGallery-iOS10.0-prefix.pch │ │ ├── CollieGallery-iOS10.0-umbrella.h │ │ ├── CollieGallery-iOS10.0.modulemap │ │ ├── CollieGallery-iOS10.0.xcconfig │ │ └── Info.plist │ │ ├── CollieGallery-iOS8.3 │ │ ├── CollieGallery-iOS8.3-dummy.m │ │ ├── CollieGallery-iOS8.3-prefix.pch │ │ ├── CollieGallery-iOS8.3-umbrella.h │ │ ├── CollieGallery-iOS8.3.modulemap │ │ ├── CollieGallery-iOS8.3.xcconfig │ │ └── Info.plist │ │ ├── Nimble │ │ ├── Info.plist │ │ ├── Nimble-dummy.m │ │ ├── Nimble-prefix.pch │ │ ├── Nimble-umbrella.h │ │ ├── Nimble.modulemap │ │ └── Nimble.xcconfig │ │ ├── Pods-CollieGallery_Example │ │ ├── Info.plist │ │ ├── Pods-CollieGallery_Example-acknowledgements.markdown │ │ ├── Pods-CollieGallery_Example-acknowledgements.plist │ │ ├── Pods-CollieGallery_Example-dummy.m │ │ ├── Pods-CollieGallery_Example-frameworks.sh │ │ ├── Pods-CollieGallery_Example-resources.sh │ │ ├── Pods-CollieGallery_Example-umbrella.h │ │ ├── Pods-CollieGallery_Example.debug.xcconfig │ │ ├── Pods-CollieGallery_Example.modulemap │ │ └── Pods-CollieGallery_Example.release.xcconfig │ │ ├── Pods-CollieGallery_Tests │ │ ├── Info.plist │ │ ├── Pods-CollieGallery_Tests-acknowledgements.markdown │ │ ├── Pods-CollieGallery_Tests-acknowledgements.plist │ │ ├── Pods-CollieGallery_Tests-dummy.m │ │ ├── Pods-CollieGallery_Tests-frameworks.sh │ │ ├── Pods-CollieGallery_Tests-resources.sh │ │ ├── Pods-CollieGallery_Tests-umbrella.h │ │ ├── Pods-CollieGallery_Tests.debug.xcconfig │ │ ├── Pods-CollieGallery_Tests.modulemap │ │ └── Pods-CollieGallery_Tests.release.xcconfig │ │ └── Quick │ │ ├── Info.plist │ │ ├── Quick-dummy.m │ │ ├── Quick-prefix.pch │ │ ├── Quick-umbrella.h │ │ ├── Quick.modulemap │ │ └── Quick.xcconfig └── Tests │ ├── Info.plist │ └── Tests.swift ├── LICENSE ├── Pod ├── Assets │ └── .gitkeep └── Classes │ ├── .gitkeep │ ├── CollieGallery.swift │ ├── CollieGalleryAppearance.swift │ ├── CollieGalleryCaptionView.swift │ ├── CollieGalleryCustomAction.swift │ ├── CollieGalleryDefaultTransition.swift │ ├── CollieGalleryDelegate.swift │ ├── CollieGalleryOptions.swift │ ├── CollieGalleryPicture.swift │ ├── CollieGalleryTheme.swift │ ├── CollieGalleryTransitionManager.swift │ ├── CollieGalleryTransitionProtocol.swift │ ├── CollieGalleryTransitionType.swift │ ├── CollieGalleryView.swift │ ├── CollieGalleryViewDelegate.swift │ └── CollieGalleryZoomTransition.swift ├── README.md ├── _Pods 2.xcodeproj └── _Pods.xcodeproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/.gitignore -------------------------------------------------------------------------------- /.swift-version: -------------------------------------------------------------------------------- 1 | 3.0 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CollieGallery.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/CollieGallery.podspec -------------------------------------------------------------------------------- /Docs/Images/CustomAction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Docs/Images/CustomAction.png -------------------------------------------------------------------------------- /Docs/Images/InteractiveTransition.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Docs/Images/InteractiveTransition.gif -------------------------------------------------------------------------------- /Docs/Images/Paging.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Docs/Images/Paging.gif -------------------------------------------------------------------------------- /Docs/Images/Transition.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Docs/Images/Transition.gif -------------------------------------------------------------------------------- /Docs/Images/Zoom.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Docs/Images/Zoom.gif -------------------------------------------------------------------------------- /Docs/Images/ZoomTransition.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Docs/Images/ZoomTransition.gif -------------------------------------------------------------------------------- /Example/CollieGallery.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/CollieGallery.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/CollieGallery.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/CollieGallery.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/CollieGallery.xcodeproj/xcshareddata/xcschemes/CollieGallery-Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/CollieGallery.xcodeproj/xcshareddata/xcschemes/CollieGallery-Example.xcscheme -------------------------------------------------------------------------------- /Example/CollieGallery.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/CollieGallery.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/CollieGallery/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/CollieGallery/AppDelegate.swift -------------------------------------------------------------------------------- /Example/CollieGallery/AppearanceTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/CollieGallery/AppearanceTableViewController.swift -------------------------------------------------------------------------------- /Example/CollieGallery/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/CollieGallery/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Example/CollieGallery/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/CollieGallery/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/CollieGallery/Images.xcassets/1.imageset/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/CollieGallery/Images.xcassets/1.imageset/1.jpg -------------------------------------------------------------------------------- /Example/CollieGallery/Images.xcassets/1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/CollieGallery/Images.xcassets/1.imageset/Contents.json -------------------------------------------------------------------------------- /Example/CollieGallery/Images.xcassets/2.imageset/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/CollieGallery/Images.xcassets/2.imageset/2.jpg -------------------------------------------------------------------------------- /Example/CollieGallery/Images.xcassets/2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/CollieGallery/Images.xcassets/2.imageset/Contents.json -------------------------------------------------------------------------------- /Example/CollieGallery/Images.xcassets/3.imageset/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/CollieGallery/Images.xcassets/3.imageset/3.jpg -------------------------------------------------------------------------------- /Example/CollieGallery/Images.xcassets/3.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/CollieGallery/Images.xcassets/3.imageset/Contents.json -------------------------------------------------------------------------------- /Example/CollieGallery/Images.xcassets/4.imageset/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/CollieGallery/Images.xcassets/4.imageset/4.jpg -------------------------------------------------------------------------------- /Example/CollieGallery/Images.xcassets/4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/CollieGallery/Images.xcassets/4.imageset/Contents.json -------------------------------------------------------------------------------- /Example/CollieGallery/Images.xcassets/5.imageset/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/CollieGallery/Images.xcassets/5.imageset/5.jpg -------------------------------------------------------------------------------- /Example/CollieGallery/Images.xcassets/5.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/CollieGallery/Images.xcassets/5.imageset/Contents.json -------------------------------------------------------------------------------- /Example/CollieGallery/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/CollieGallery/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/CollieGallery/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/CollieGallery/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/CollieGallery/Images.xcassets/broom.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/CollieGallery/Images.xcassets/broom.imageset/Contents.json -------------------------------------------------------------------------------- /Example/CollieGallery/Images.xcassets/broom.imageset/broom-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/CollieGallery/Images.xcassets/broom.imageset/broom-1.png -------------------------------------------------------------------------------- /Example/CollieGallery/Images.xcassets/broom.imageset/broom-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/CollieGallery/Images.xcassets/broom.imageset/broom-2.png -------------------------------------------------------------------------------- /Example/CollieGallery/Images.xcassets/broom.imageset/broom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/CollieGallery/Images.xcassets/broom.imageset/broom.png -------------------------------------------------------------------------------- /Example/CollieGallery/Images.xcassets/home.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/CollieGallery/Images.xcassets/home.imageset/Contents.json -------------------------------------------------------------------------------- /Example/CollieGallery/Images.xcassets/home.imageset/home-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/CollieGallery/Images.xcassets/home.imageset/home-1.png -------------------------------------------------------------------------------- /Example/CollieGallery/Images.xcassets/home.imageset/home-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/CollieGallery/Images.xcassets/home.imageset/home-2.png -------------------------------------------------------------------------------- /Example/CollieGallery/Images.xcassets/home.imageset/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/CollieGallery/Images.xcassets/home.imageset/home.png -------------------------------------------------------------------------------- /Example/CollieGallery/Images.xcassets/resize.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/CollieGallery/Images.xcassets/resize.imageset/Contents.json -------------------------------------------------------------------------------- /Example/CollieGallery/Images.xcassets/resize.imageset/resize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/CollieGallery/Images.xcassets/resize.imageset/resize.png -------------------------------------------------------------------------------- /Example/CollieGallery/Images.xcassets/resize.imageset/resize@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/CollieGallery/Images.xcassets/resize.imageset/resize@2x.png -------------------------------------------------------------------------------- /Example/CollieGallery/Images.xcassets/resize.imageset/resize@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/CollieGallery/Images.xcassets/resize.imageset/resize@3x.png -------------------------------------------------------------------------------- /Example/CollieGallery/Images.xcassets/settings.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/CollieGallery/Images.xcassets/settings.imageset/Contents.json -------------------------------------------------------------------------------- /Example/CollieGallery/Images.xcassets/settings.imageset/settings-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/CollieGallery/Images.xcassets/settings.imageset/settings-1.png -------------------------------------------------------------------------------- /Example/CollieGallery/Images.xcassets/settings.imageset/settings-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/CollieGallery/Images.xcassets/settings.imageset/settings-2.png -------------------------------------------------------------------------------- /Example/CollieGallery/Images.xcassets/settings.imageset/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/CollieGallery/Images.xcassets/settings.imageset/settings.png -------------------------------------------------------------------------------- /Example/CollieGallery/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/CollieGallery/Info.plist -------------------------------------------------------------------------------- /Example/CollieGallery/OptionsTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/CollieGallery/OptionsTableViewController.swift -------------------------------------------------------------------------------- /Example/CollieGallery/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/CollieGallery/ViewController.swift -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/CollieGallery.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Pods/Local Podspecs/CollieGallery.podspec.json -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Pods/Manifest.lock -------------------------------------------------------------------------------- /Example/Pods/Nimble/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Pods/Nimble/README.md -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Adapters/AdapterProtocols.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Pods/Nimble/Sources/Nimble/Adapters/AdapterProtocols.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Adapters/AssertionDispatcher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Pods/Nimble/Sources/Nimble/Adapters/AssertionDispatcher.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Adapters/AssertionRecorder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Pods/Nimble/Sources/Nimble/Adapters/AssertionRecorder.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Adapters/NMBExpectation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Pods/Nimble/Sources/Nimble/Adapters/NMBExpectation.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Adapters/NMBObjCMatcher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Pods/Nimble/Sources/Nimble/Adapters/NMBObjCMatcher.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Adapters/NimbleEnvironment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Pods/Nimble/Sources/Nimble/Adapters/NimbleEnvironment.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Adapters/NimbleXCTestHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Pods/Nimble/Sources/Nimble/Adapters/NimbleXCTestHandler.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/DSL+Wait.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Pods/Nimble/Sources/Nimble/DSL+Wait.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/DSL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Pods/Nimble/Sources/Nimble/DSL.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Expectation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Pods/Nimble/Sources/Nimble/Expectation.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Expression.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Pods/Nimble/Sources/Nimble/Expression.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/FailureMessage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Pods/Nimble/Sources/Nimble/FailureMessage.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Matchers/AllPass.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Pods/Nimble/Sources/Nimble/Matchers/AllPass.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Matchers/AsyncMatcherWrapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Pods/Nimble/Sources/Nimble/Matchers/AsyncMatcherWrapper.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Matchers/BeAKindOf.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Pods/Nimble/Sources/Nimble/Matchers/BeAKindOf.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Matchers/BeAnInstanceOf.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Pods/Nimble/Sources/Nimble/Matchers/BeAnInstanceOf.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Matchers/BeCloseTo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Pods/Nimble/Sources/Nimble/Matchers/BeCloseTo.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Matchers/BeEmpty.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Pods/Nimble/Sources/Nimble/Matchers/BeEmpty.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Matchers/BeGreaterThan.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Pods/Nimble/Sources/Nimble/Matchers/BeGreaterThan.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Matchers/BeGreaterThanOrEqualTo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Pods/Nimble/Sources/Nimble/Matchers/BeGreaterThanOrEqualTo.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Matchers/BeIdenticalTo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Pods/Nimble/Sources/Nimble/Matchers/BeIdenticalTo.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Matchers/BeLessThan.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Pods/Nimble/Sources/Nimble/Matchers/BeLessThan.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Matchers/BeLessThanOrEqual.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Pods/Nimble/Sources/Nimble/Matchers/BeLessThanOrEqual.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Matchers/BeLogical.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Pods/Nimble/Sources/Nimble/Matchers/BeLogical.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Matchers/BeNil.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Pods/Nimble/Sources/Nimble/Matchers/BeNil.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Matchers/BeVoid.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Pods/Nimble/Sources/Nimble/Matchers/BeVoid.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Matchers/BeginWith.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Pods/Nimble/Sources/Nimble/Matchers/BeginWith.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Matchers/Contain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Pods/Nimble/Sources/Nimble/Matchers/Contain.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Matchers/EndWith.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Pods/Nimble/Sources/Nimble/Matchers/EndWith.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Matchers/Equal.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Pods/Nimble/Sources/Nimble/Matchers/Equal.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Matchers/HaveCount.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Pods/Nimble/Sources/Nimble/Matchers/HaveCount.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Matchers/Match.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Pods/Nimble/Sources/Nimble/Matchers/Match.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Matchers/MatchError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Pods/Nimble/Sources/Nimble/Matchers/MatchError.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Matchers/MatcherFunc.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Pods/Nimble/Sources/Nimble/Matchers/MatcherFunc.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Matchers/MatcherProtocols.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Pods/Nimble/Sources/Nimble/Matchers/MatcherProtocols.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Matchers/PostNotification.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Pods/Nimble/Sources/Nimble/Matchers/PostNotification.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Matchers/RaisesException.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Pods/Nimble/Sources/Nimble/Matchers/RaisesException.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Matchers/SatisfyAnyOf.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Pods/Nimble/Sources/Nimble/Matchers/SatisfyAnyOf.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Matchers/ThrowError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Pods/Nimble/Sources/Nimble/Matchers/ThrowError.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Nimble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Pods/Nimble/Sources/Nimble/Nimble.h -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Utils/Async.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Pods/Nimble/Sources/Nimble/Utils/Async.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Utils/Errors.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Pods/Nimble/Sources/Nimble/Utils/Errors.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Utils/Functional.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Pods/Nimble/Sources/Nimble/Utils/Functional.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Utils/SourceLocation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Pods/Nimble/Sources/Nimble/Utils/SourceLocation.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Utils/Stringers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Pods/Nimble/Sources/Nimble/Utils/Stringers.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/NimbleObjectiveC/CurrentTestCaseTracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Pods/Nimble/Sources/NimbleObjectiveC/CurrentTestCaseTracker.h -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/NimbleObjectiveC/DSL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Pods/Nimble/Sources/NimbleObjectiveC/DSL.h -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/NimbleObjectiveC/DSL.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Pods/Nimble/Sources/NimbleObjectiveC/DSL.m -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/NimbleObjectiveC/NMBExceptionCapture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Pods/Nimble/Sources/NimbleObjectiveC/NMBExceptionCapture.h -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/NimbleObjectiveC/NMBExceptionCapture.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Pods/Nimble/Sources/NimbleObjectiveC/NMBExceptionCapture.m -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/NimbleObjectiveC/NMBStringify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Pods/Nimble/Sources/NimbleObjectiveC/NMBStringify.h -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/NimbleObjectiveC/NMBStringify.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Pods/Nimble/Sources/NimbleObjectiveC/NMBStringify.m -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/NimbleObjectiveC/XCTestObservationCenter+Register.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Pods/Nimble/Sources/NimbleObjectiveC/XCTestObservationCenter+Register.m -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Pods/Quick/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Pods/Quick/LICENSE -------------------------------------------------------------------------------- /Example/Pods/Quick/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Pods/Quick/README.md -------------------------------------------------------------------------------- /Example/Pods/Quick/Sources/Quick/Callsite.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Pods/Quick/Sources/Quick/Callsite.swift -------------------------------------------------------------------------------- /Example/Pods/Quick/Sources/Quick/Configuration/Configuration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Pods/Quick/Sources/Quick/Configuration/Configuration.swift -------------------------------------------------------------------------------- /Example/Pods/Quick/Sources/Quick/DSL/DSL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Pods/Quick/Sources/Quick/DSL/DSL.swift -------------------------------------------------------------------------------- /Example/Pods/Quick/Sources/Quick/DSL/World+DSL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Pods/Quick/Sources/Quick/DSL/World+DSL.swift -------------------------------------------------------------------------------- /Example/Pods/Quick/Sources/Quick/ErrorUtility.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Pods/Quick/Sources/Quick/ErrorUtility.swift -------------------------------------------------------------------------------- /Example/Pods/Quick/Sources/Quick/Example.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Pods/Quick/Sources/Quick/Example.swift -------------------------------------------------------------------------------- /Example/Pods/Quick/Sources/Quick/ExampleGroup.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Pods/Quick/Sources/Quick/ExampleGroup.swift -------------------------------------------------------------------------------- /Example/Pods/Quick/Sources/Quick/ExampleMetadata.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Pods/Quick/Sources/Quick/ExampleMetadata.swift -------------------------------------------------------------------------------- /Example/Pods/Quick/Sources/Quick/Filter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Pods/Quick/Sources/Quick/Filter.swift -------------------------------------------------------------------------------- /Example/Pods/Quick/Sources/Quick/Hooks/Closures.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Pods/Quick/Sources/Quick/Hooks/Closures.swift -------------------------------------------------------------------------------- /Example/Pods/Quick/Sources/Quick/Hooks/ExampleHooks.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Pods/Quick/Sources/Quick/Hooks/ExampleHooks.swift -------------------------------------------------------------------------------- /Example/Pods/Quick/Sources/Quick/Hooks/HooksPhase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Pods/Quick/Sources/Quick/Hooks/HooksPhase.swift -------------------------------------------------------------------------------- /Example/Pods/Quick/Sources/Quick/Hooks/SuiteHooks.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Pods/Quick/Sources/Quick/Hooks/SuiteHooks.swift -------------------------------------------------------------------------------- /Example/Pods/Quick/Sources/Quick/NSBundle+CurrentTestBundle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Pods/Quick/Sources/Quick/NSBundle+CurrentTestBundle.swift -------------------------------------------------------------------------------- /Example/Pods/Quick/Sources/Quick/QuickSelectedTestSuiteBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Pods/Quick/Sources/Quick/QuickSelectedTestSuiteBuilder.swift -------------------------------------------------------------------------------- /Example/Pods/Quick/Sources/Quick/QuickTestSuite.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Pods/Quick/Sources/Quick/QuickTestSuite.swift -------------------------------------------------------------------------------- /Example/Pods/Quick/Sources/Quick/World.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Pods/Quick/Sources/Quick/World.swift -------------------------------------------------------------------------------- /Example/Pods/Quick/Sources/QuickObjectiveC/Configuration/QuickConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Pods/Quick/Sources/QuickObjectiveC/Configuration/QuickConfiguration.h -------------------------------------------------------------------------------- /Example/Pods/Quick/Sources/QuickObjectiveC/Configuration/QuickConfiguration.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Pods/Quick/Sources/QuickObjectiveC/Configuration/QuickConfiguration.m -------------------------------------------------------------------------------- /Example/Pods/Quick/Sources/QuickObjectiveC/DSL/QCKDSL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Pods/Quick/Sources/QuickObjectiveC/DSL/QCKDSL.h -------------------------------------------------------------------------------- /Example/Pods/Quick/Sources/QuickObjectiveC/DSL/QCKDSL.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Pods/Quick/Sources/QuickObjectiveC/DSL/QCKDSL.m -------------------------------------------------------------------------------- /Example/Pods/Quick/Sources/QuickObjectiveC/DSL/World+DSL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Pods/Quick/Sources/QuickObjectiveC/DSL/World+DSL.h -------------------------------------------------------------------------------- /Example/Pods/Quick/Sources/QuickObjectiveC/Quick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Pods/Quick/Sources/QuickObjectiveC/Quick.h -------------------------------------------------------------------------------- /Example/Pods/Quick/Sources/QuickObjectiveC/QuickSpec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Pods/Quick/Sources/QuickObjectiveC/QuickSpec.h -------------------------------------------------------------------------------- /Example/Pods/Quick/Sources/QuickObjectiveC/QuickSpec.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Pods/Quick/Sources/QuickObjectiveC/QuickSpec.m -------------------------------------------------------------------------------- /Example/Pods/Quick/Sources/QuickObjectiveC/World.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Pods/Quick/Sources/QuickObjectiveC/World.h -------------------------------------------------------------------------------- /Example/Pods/Quick/Sources/QuickObjectiveC/XCTestSuite+QuickTestSuiteBuilder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Pods/Quick/Sources/QuickObjectiveC/XCTestSuite+QuickTestSuiteBuilder.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/CollieGallery-iOS10.0/CollieGallery-iOS10.0-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Pods/Target Support Files/CollieGallery-iOS10.0/CollieGallery-iOS10.0-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/CollieGallery-iOS10.0/CollieGallery-iOS10.0-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Pods/Target Support Files/CollieGallery-iOS10.0/CollieGallery-iOS10.0-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/CollieGallery-iOS10.0/CollieGallery-iOS10.0-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Pods/Target Support Files/CollieGallery-iOS10.0/CollieGallery-iOS10.0-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/CollieGallery-iOS10.0/CollieGallery-iOS10.0.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Pods/Target Support Files/CollieGallery-iOS10.0/CollieGallery-iOS10.0.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/CollieGallery-iOS10.0/CollieGallery-iOS10.0.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Pods/Target Support Files/CollieGallery-iOS10.0/CollieGallery-iOS10.0.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/CollieGallery-iOS10.0/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Pods/Target Support Files/CollieGallery-iOS10.0/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/CollieGallery-iOS8.3/CollieGallery-iOS8.3-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Pods/Target Support Files/CollieGallery-iOS8.3/CollieGallery-iOS8.3-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/CollieGallery-iOS8.3/CollieGallery-iOS8.3-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Pods/Target Support Files/CollieGallery-iOS8.3/CollieGallery-iOS8.3-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/CollieGallery-iOS8.3/CollieGallery-iOS8.3-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Pods/Target Support Files/CollieGallery-iOS8.3/CollieGallery-iOS8.3-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/CollieGallery-iOS8.3/CollieGallery-iOS8.3.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Pods/Target Support Files/CollieGallery-iOS8.3/CollieGallery-iOS8.3.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/CollieGallery-iOS8.3/CollieGallery-iOS8.3.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Pods/Target Support Files/CollieGallery-iOS8.3/CollieGallery-iOS8.3.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/CollieGallery-iOS8.3/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Pods/Target Support Files/CollieGallery-iOS8.3/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Nimble/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Pods/Target Support Files/Nimble/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Nimble/Nimble-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Pods/Target Support Files/Nimble/Nimble-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Nimble/Nimble-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Pods/Target Support Files/Nimble/Nimble-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Nimble/Nimble-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Pods/Target Support Files/Nimble/Nimble-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Nimble/Nimble.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Pods/Target Support Files/Nimble/Nimble.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Nimble/Nimble.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Pods/Target Support Files/Nimble/Nimble.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CollieGallery_Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Pods/Target Support Files/Pods-CollieGallery_Example/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CollieGallery_Example/Pods-CollieGallery_Example-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Pods/Target Support Files/Pods-CollieGallery_Example/Pods-CollieGallery_Example-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CollieGallery_Example/Pods-CollieGallery_Example-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Pods/Target Support Files/Pods-CollieGallery_Example/Pods-CollieGallery_Example-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CollieGallery_Example/Pods-CollieGallery_Example-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Pods/Target Support Files/Pods-CollieGallery_Example/Pods-CollieGallery_Example-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CollieGallery_Example/Pods-CollieGallery_Example-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Pods/Target Support Files/Pods-CollieGallery_Example/Pods-CollieGallery_Example-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CollieGallery_Example/Pods-CollieGallery_Example-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Pods/Target Support Files/Pods-CollieGallery_Example/Pods-CollieGallery_Example-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CollieGallery_Example/Pods-CollieGallery_Example-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Pods/Target Support Files/Pods-CollieGallery_Example/Pods-CollieGallery_Example-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CollieGallery_Example/Pods-CollieGallery_Example.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Pods/Target Support Files/Pods-CollieGallery_Example/Pods-CollieGallery_Example.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CollieGallery_Example/Pods-CollieGallery_Example.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Pods/Target Support Files/Pods-CollieGallery_Example/Pods-CollieGallery_Example.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CollieGallery_Example/Pods-CollieGallery_Example.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Pods/Target Support Files/Pods-CollieGallery_Example/Pods-CollieGallery_Example.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CollieGallery_Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Pods/Target Support Files/Pods-CollieGallery_Tests/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CollieGallery_Tests/Pods-CollieGallery_Tests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Pods/Target Support Files/Pods-CollieGallery_Tests/Pods-CollieGallery_Tests-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CollieGallery_Tests/Pods-CollieGallery_Tests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Pods/Target Support Files/Pods-CollieGallery_Tests/Pods-CollieGallery_Tests-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CollieGallery_Tests/Pods-CollieGallery_Tests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Pods/Target Support Files/Pods-CollieGallery_Tests/Pods-CollieGallery_Tests-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CollieGallery_Tests/Pods-CollieGallery_Tests-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Pods/Target Support Files/Pods-CollieGallery_Tests/Pods-CollieGallery_Tests-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CollieGallery_Tests/Pods-CollieGallery_Tests-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Pods/Target Support Files/Pods-CollieGallery_Tests/Pods-CollieGallery_Tests-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CollieGallery_Tests/Pods-CollieGallery_Tests-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Pods/Target Support Files/Pods-CollieGallery_Tests/Pods-CollieGallery_Tests-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CollieGallery_Tests/Pods-CollieGallery_Tests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Pods/Target Support Files/Pods-CollieGallery_Tests/Pods-CollieGallery_Tests.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CollieGallery_Tests/Pods-CollieGallery_Tests.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Pods/Target Support Files/Pods-CollieGallery_Tests/Pods-CollieGallery_Tests.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CollieGallery_Tests/Pods-CollieGallery_Tests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Pods/Target Support Files/Pods-CollieGallery_Tests/Pods-CollieGallery_Tests.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Quick/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Pods/Target Support Files/Quick/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Quick/Quick-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Pods/Target Support Files/Quick/Quick-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Quick/Quick-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Pods/Target Support Files/Quick/Quick-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Quick/Quick-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Pods/Target Support Files/Quick/Quick-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Quick/Quick.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Pods/Target Support Files/Quick/Quick.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Quick/Quick.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Pods/Target Support Files/Quick/Quick.xcconfig -------------------------------------------------------------------------------- /Example/Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Tests/Info.plist -------------------------------------------------------------------------------- /Example/Tests/Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Example/Tests/Tests.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/LICENSE -------------------------------------------------------------------------------- /Pod/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pod/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pod/Classes/CollieGallery.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Pod/Classes/CollieGallery.swift -------------------------------------------------------------------------------- /Pod/Classes/CollieGalleryAppearance.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Pod/Classes/CollieGalleryAppearance.swift -------------------------------------------------------------------------------- /Pod/Classes/CollieGalleryCaptionView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Pod/Classes/CollieGalleryCaptionView.swift -------------------------------------------------------------------------------- /Pod/Classes/CollieGalleryCustomAction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Pod/Classes/CollieGalleryCustomAction.swift -------------------------------------------------------------------------------- /Pod/Classes/CollieGalleryDefaultTransition.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Pod/Classes/CollieGalleryDefaultTransition.swift -------------------------------------------------------------------------------- /Pod/Classes/CollieGalleryDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Pod/Classes/CollieGalleryDelegate.swift -------------------------------------------------------------------------------- /Pod/Classes/CollieGalleryOptions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Pod/Classes/CollieGalleryOptions.swift -------------------------------------------------------------------------------- /Pod/Classes/CollieGalleryPicture.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Pod/Classes/CollieGalleryPicture.swift -------------------------------------------------------------------------------- /Pod/Classes/CollieGalleryTheme.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Pod/Classes/CollieGalleryTheme.swift -------------------------------------------------------------------------------- /Pod/Classes/CollieGalleryTransitionManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Pod/Classes/CollieGalleryTransitionManager.swift -------------------------------------------------------------------------------- /Pod/Classes/CollieGalleryTransitionProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Pod/Classes/CollieGalleryTransitionProtocol.swift -------------------------------------------------------------------------------- /Pod/Classes/CollieGalleryTransitionType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Pod/Classes/CollieGalleryTransitionType.swift -------------------------------------------------------------------------------- /Pod/Classes/CollieGalleryView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Pod/Classes/CollieGalleryView.swift -------------------------------------------------------------------------------- /Pod/Classes/CollieGalleryViewDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Pod/Classes/CollieGalleryViewDelegate.swift -------------------------------------------------------------------------------- /Pod/Classes/CollieGalleryZoomTransition.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/Pod/Classes/CollieGalleryZoomTransition.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmunhoz/CollieGallery/HEAD/README.md -------------------------------------------------------------------------------- /_Pods 2.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj --------------------------------------------------------------------------------