├── .codecov.yml ├── .gitignore ├── .swiftlint.yml ├── .travis.yml ├── LICENSE.md ├── README.md ├── SnapTimer.podspec ├── SnapTimer.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata ├── xcshareddata │ └── xcschemes │ │ └── SnapTimer.xcscheme └── xcuserdata │ └── andrescanal.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ └── xcschememanagement.plist ├── SnapTimer ├── SnapTimerBorderLayer.swift ├── SnapTimerCircleLayer.swift └── SnapTimerView.swift ├── SnapTimerSample ├── AppDelegate.swift ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Info.plist └── ViewController.swift ├── SnapTimerTests ├── Info.plist └── SnapTimerTests.swift └── images ├── ej1.gif ├── ej2.gif ├── ej3.gif ├── identity-inspector.png ├── properties.png ├── sample-timers.png └── snaptimer-logo.png /.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresinaka/SnapTimer/HEAD/.codecov.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresinaka/SnapTimer/HEAD/.gitignore -------------------------------------------------------------------------------- /.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresinaka/SnapTimer/HEAD/.swiftlint.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresinaka/SnapTimer/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresinaka/SnapTimer/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresinaka/SnapTimer/HEAD/README.md -------------------------------------------------------------------------------- /SnapTimer.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresinaka/SnapTimer/HEAD/SnapTimer.podspec -------------------------------------------------------------------------------- /SnapTimer.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresinaka/SnapTimer/HEAD/SnapTimer.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SnapTimer.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresinaka/SnapTimer/HEAD/SnapTimer.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SnapTimer.xcodeproj/xcshareddata/xcschemes/SnapTimer.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresinaka/SnapTimer/HEAD/SnapTimer.xcodeproj/xcshareddata/xcschemes/SnapTimer.xcscheme -------------------------------------------------------------------------------- /SnapTimer.xcodeproj/xcuserdata/andrescanal.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresinaka/SnapTimer/HEAD/SnapTimer.xcodeproj/xcuserdata/andrescanal.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /SnapTimer.xcodeproj/xcuserdata/andrescanal.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresinaka/SnapTimer/HEAD/SnapTimer.xcodeproj/xcuserdata/andrescanal.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /SnapTimer/SnapTimerBorderLayer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresinaka/SnapTimer/HEAD/SnapTimer/SnapTimerBorderLayer.swift -------------------------------------------------------------------------------- /SnapTimer/SnapTimerCircleLayer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresinaka/SnapTimer/HEAD/SnapTimer/SnapTimerCircleLayer.swift -------------------------------------------------------------------------------- /SnapTimer/SnapTimerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresinaka/SnapTimer/HEAD/SnapTimer/SnapTimerView.swift -------------------------------------------------------------------------------- /SnapTimerSample/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresinaka/SnapTimer/HEAD/SnapTimerSample/AppDelegate.swift -------------------------------------------------------------------------------- /SnapTimerSample/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresinaka/SnapTimer/HEAD/SnapTimerSample/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /SnapTimerSample/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresinaka/SnapTimer/HEAD/SnapTimerSample/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /SnapTimerSample/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresinaka/SnapTimer/HEAD/SnapTimerSample/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /SnapTimerSample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresinaka/SnapTimer/HEAD/SnapTimerSample/Info.plist -------------------------------------------------------------------------------- /SnapTimerSample/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresinaka/SnapTimer/HEAD/SnapTimerSample/ViewController.swift -------------------------------------------------------------------------------- /SnapTimerTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresinaka/SnapTimer/HEAD/SnapTimerTests/Info.plist -------------------------------------------------------------------------------- /SnapTimerTests/SnapTimerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresinaka/SnapTimer/HEAD/SnapTimerTests/SnapTimerTests.swift -------------------------------------------------------------------------------- /images/ej1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresinaka/SnapTimer/HEAD/images/ej1.gif -------------------------------------------------------------------------------- /images/ej2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresinaka/SnapTimer/HEAD/images/ej2.gif -------------------------------------------------------------------------------- /images/ej3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresinaka/SnapTimer/HEAD/images/ej3.gif -------------------------------------------------------------------------------- /images/identity-inspector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresinaka/SnapTimer/HEAD/images/identity-inspector.png -------------------------------------------------------------------------------- /images/properties.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresinaka/SnapTimer/HEAD/images/properties.png -------------------------------------------------------------------------------- /images/sample-timers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresinaka/SnapTimer/HEAD/images/sample-timers.png -------------------------------------------------------------------------------- /images/snaptimer-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresinaka/SnapTimer/HEAD/images/snaptimer-logo.png --------------------------------------------------------------------------------