├── .gitignore ├── .travis.yml ├── Example ├── LayoutLoopHunter.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── LayoutLoopHunter-Example.xcscheme ├── LayoutLoopHunter.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── Podfile ├── Podfile.lock ├── Pods │ ├── Local Podspecs │ │ └── LayoutLoopHunter.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ └── project.pbxproj │ └── Target Support Files │ │ ├── LayoutLoopHunter │ │ ├── Info.plist │ │ ├── LayoutLoopHunter-dummy.m │ │ ├── LayoutLoopHunter-prefix.pch │ │ ├── LayoutLoopHunter-umbrella.h │ │ ├── LayoutLoopHunter.modulemap │ │ └── LayoutLoopHunter.xcconfig │ │ └── Pods-LayoutLoopHunter_Tests │ │ ├── Info.plist │ │ ├── Pods-LayoutLoopHunter_Tests-acknowledgements.markdown │ │ ├── Pods-LayoutLoopHunter_Tests-acknowledgements.plist │ │ ├── Pods-LayoutLoopHunter_Tests-dummy.m │ │ ├── Pods-LayoutLoopHunter_Tests-frameworks.sh │ │ ├── Pods-LayoutLoopHunter_Tests-resources.sh │ │ ├── Pods-LayoutLoopHunter_Tests-umbrella.h │ │ ├── Pods-LayoutLoopHunter_Tests.debug.xcconfig │ │ ├── Pods-LayoutLoopHunter_Tests.modulemap │ │ └── Pods-LayoutLoopHunter_Tests.release.xcconfig └── Tests │ ├── Info.plist │ └── Tests.swift ├── LICENSE ├── LayoutLoopHunter.podspec ├── LayoutLoopHunter ├── Assets │ └── .gitkeep └── Classes │ ├── .gitkeep │ └── LayoutLoopHunter.swift ├── README.md └── _Pods.xcodeproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsrbk/LayoutLoopHunter/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsrbk/LayoutLoopHunter/HEAD/.travis.yml -------------------------------------------------------------------------------- /Example/LayoutLoopHunter.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsrbk/LayoutLoopHunter/HEAD/Example/LayoutLoopHunter.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/LayoutLoopHunter.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsrbk/LayoutLoopHunter/HEAD/Example/LayoutLoopHunter.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/LayoutLoopHunter.xcodeproj/xcshareddata/xcschemes/LayoutLoopHunter-Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsrbk/LayoutLoopHunter/HEAD/Example/LayoutLoopHunter.xcodeproj/xcshareddata/xcschemes/LayoutLoopHunter-Example.xcscheme -------------------------------------------------------------------------------- /Example/LayoutLoopHunter.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsrbk/LayoutLoopHunter/HEAD/Example/LayoutLoopHunter.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/LayoutLoopHunter.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsrbk/LayoutLoopHunter/HEAD/Example/LayoutLoopHunter.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsrbk/LayoutLoopHunter/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsrbk/LayoutLoopHunter/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/LayoutLoopHunter.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsrbk/LayoutLoopHunter/HEAD/Example/Pods/Local Podspecs/LayoutLoopHunter.podspec.json -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsrbk/LayoutLoopHunter/HEAD/Example/Pods/Manifest.lock -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsrbk/LayoutLoopHunter/HEAD/Example/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/LayoutLoopHunter/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsrbk/LayoutLoopHunter/HEAD/Example/Pods/Target Support Files/LayoutLoopHunter/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/LayoutLoopHunter/LayoutLoopHunter-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsrbk/LayoutLoopHunter/HEAD/Example/Pods/Target Support Files/LayoutLoopHunter/LayoutLoopHunter-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/LayoutLoopHunter/LayoutLoopHunter-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsrbk/LayoutLoopHunter/HEAD/Example/Pods/Target Support Files/LayoutLoopHunter/LayoutLoopHunter-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/LayoutLoopHunter/LayoutLoopHunter-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsrbk/LayoutLoopHunter/HEAD/Example/Pods/Target Support Files/LayoutLoopHunter/LayoutLoopHunter-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/LayoutLoopHunter/LayoutLoopHunter.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsrbk/LayoutLoopHunter/HEAD/Example/Pods/Target Support Files/LayoutLoopHunter/LayoutLoopHunter.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/LayoutLoopHunter/LayoutLoopHunter.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsrbk/LayoutLoopHunter/HEAD/Example/Pods/Target Support Files/LayoutLoopHunter/LayoutLoopHunter.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LayoutLoopHunter_Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsrbk/LayoutLoopHunter/HEAD/Example/Pods/Target Support Files/Pods-LayoutLoopHunter_Tests/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LayoutLoopHunter_Tests/Pods-LayoutLoopHunter_Tests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsrbk/LayoutLoopHunter/HEAD/Example/Pods/Target Support Files/Pods-LayoutLoopHunter_Tests/Pods-LayoutLoopHunter_Tests-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LayoutLoopHunter_Tests/Pods-LayoutLoopHunter_Tests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsrbk/LayoutLoopHunter/HEAD/Example/Pods/Target Support Files/Pods-LayoutLoopHunter_Tests/Pods-LayoutLoopHunter_Tests-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LayoutLoopHunter_Tests/Pods-LayoutLoopHunter_Tests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsrbk/LayoutLoopHunter/HEAD/Example/Pods/Target Support Files/Pods-LayoutLoopHunter_Tests/Pods-LayoutLoopHunter_Tests-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LayoutLoopHunter_Tests/Pods-LayoutLoopHunter_Tests-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsrbk/LayoutLoopHunter/HEAD/Example/Pods/Target Support Files/Pods-LayoutLoopHunter_Tests/Pods-LayoutLoopHunter_Tests-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LayoutLoopHunter_Tests/Pods-LayoutLoopHunter_Tests-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsrbk/LayoutLoopHunter/HEAD/Example/Pods/Target Support Files/Pods-LayoutLoopHunter_Tests/Pods-LayoutLoopHunter_Tests-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LayoutLoopHunter_Tests/Pods-LayoutLoopHunter_Tests-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsrbk/LayoutLoopHunter/HEAD/Example/Pods/Target Support Files/Pods-LayoutLoopHunter_Tests/Pods-LayoutLoopHunter_Tests-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LayoutLoopHunter_Tests/Pods-LayoutLoopHunter_Tests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsrbk/LayoutLoopHunter/HEAD/Example/Pods/Target Support Files/Pods-LayoutLoopHunter_Tests/Pods-LayoutLoopHunter_Tests.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LayoutLoopHunter_Tests/Pods-LayoutLoopHunter_Tests.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsrbk/LayoutLoopHunter/HEAD/Example/Pods/Target Support Files/Pods-LayoutLoopHunter_Tests/Pods-LayoutLoopHunter_Tests.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LayoutLoopHunter_Tests/Pods-LayoutLoopHunter_Tests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsrbk/LayoutLoopHunter/HEAD/Example/Pods/Target Support Files/Pods-LayoutLoopHunter_Tests/Pods-LayoutLoopHunter_Tests.release.xcconfig -------------------------------------------------------------------------------- /Example/Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsrbk/LayoutLoopHunter/HEAD/Example/Tests/Info.plist -------------------------------------------------------------------------------- /Example/Tests/Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsrbk/LayoutLoopHunter/HEAD/Example/Tests/Tests.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsrbk/LayoutLoopHunter/HEAD/LICENSE -------------------------------------------------------------------------------- /LayoutLoopHunter.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsrbk/LayoutLoopHunter/HEAD/LayoutLoopHunter.podspec -------------------------------------------------------------------------------- /LayoutLoopHunter/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LayoutLoopHunter/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LayoutLoopHunter/Classes/LayoutLoopHunter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsrbk/LayoutLoopHunter/HEAD/LayoutLoopHunter/Classes/LayoutLoopHunter.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsrbk/LayoutLoopHunter/HEAD/README.md -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj --------------------------------------------------------------------------------