├── .gitignore ├── .travis.yml ├── Images ├── lens-helper-completion.gif └── lens-result2.gif ├── LICENSE ├── Lensy.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcshareddata │ └── xcschemes │ ├── Lensy-OSX.xcscheme │ └── Lensy-iOS.xcscheme ├── Lensy ├── Info.plist ├── Lensy.h └── Lensy.swift ├── LensyTests ├── Info.plist ├── LensBaseTests.swift ├── LensFailableTests.swift ├── LensHelperTests.swift ├── LensResultTests.swift ├── LensyTests.swift └── TestStructs.swift └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safx/Lensy/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safx/Lensy/HEAD/.travis.yml -------------------------------------------------------------------------------- /Images/lens-helper-completion.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safx/Lensy/HEAD/Images/lens-helper-completion.gif -------------------------------------------------------------------------------- /Images/lens-result2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safx/Lensy/HEAD/Images/lens-result2.gif -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safx/Lensy/HEAD/LICENSE -------------------------------------------------------------------------------- /Lensy.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safx/Lensy/HEAD/Lensy.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Lensy.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safx/Lensy/HEAD/Lensy.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Lensy.xcodeproj/xcshareddata/xcschemes/Lensy-OSX.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safx/Lensy/HEAD/Lensy.xcodeproj/xcshareddata/xcschemes/Lensy-OSX.xcscheme -------------------------------------------------------------------------------- /Lensy.xcodeproj/xcshareddata/xcschemes/Lensy-iOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safx/Lensy/HEAD/Lensy.xcodeproj/xcshareddata/xcschemes/Lensy-iOS.xcscheme -------------------------------------------------------------------------------- /Lensy/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safx/Lensy/HEAD/Lensy/Info.plist -------------------------------------------------------------------------------- /Lensy/Lensy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safx/Lensy/HEAD/Lensy/Lensy.h -------------------------------------------------------------------------------- /Lensy/Lensy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safx/Lensy/HEAD/Lensy/Lensy.swift -------------------------------------------------------------------------------- /LensyTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safx/Lensy/HEAD/LensyTests/Info.plist -------------------------------------------------------------------------------- /LensyTests/LensBaseTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safx/Lensy/HEAD/LensyTests/LensBaseTests.swift -------------------------------------------------------------------------------- /LensyTests/LensFailableTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safx/Lensy/HEAD/LensyTests/LensFailableTests.swift -------------------------------------------------------------------------------- /LensyTests/LensHelperTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safx/Lensy/HEAD/LensyTests/LensHelperTests.swift -------------------------------------------------------------------------------- /LensyTests/LensResultTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safx/Lensy/HEAD/LensyTests/LensResultTests.swift -------------------------------------------------------------------------------- /LensyTests/LensyTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safx/Lensy/HEAD/LensyTests/LensyTests.swift -------------------------------------------------------------------------------- /LensyTests/TestStructs.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safx/Lensy/HEAD/LensyTests/TestStructs.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safx/Lensy/HEAD/README.md --------------------------------------------------------------------------------