├── .gitignore ├── .jazzy.yaml ├── .ruby-version ├── .swift-version ├── .travis.yml ├── ConcentricProgressRingView.podspec ├── ConcentricProgressRingView ├── Assets │ └── .gitkeep └── Classes │ ├── .gitkeep │ └── ConcentricProgressRing.swift ├── Example ├── ConcentricProgressRingView.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── ConcentricProgressRingView.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── xcschemes │ │ └── ConcentricProgressRingView-Example.xcscheme ├── ConcentricProgressRingView │ ├── AppDelegate.swift │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ └── ViewController.swift ├── ConcentricProgressRingView_ExampleTests │ ├── ConcentricProgressRingView_ExampleTests.swift │ └── Info.plist ├── ConcentricProgressRingView_Tests │ ├── ConcentricProgressRingView_Tests.swift │ └── Info.plist ├── Podfile ├── Podfile.lock └── Pods │ ├── LionheartExtensions │ ├── LICENSE │ ├── Pod │ │ └── Classes │ │ │ ├── ActivityIndicatorButton.swift │ │ │ ├── ColorRepresentation.swift │ │ │ ├── Core │ │ │ ├── Any+LionheartExtensions.swift │ │ │ ├── Array+LionheartExtensions.swift │ │ │ ├── Bundle+LionheartExtensions.swift │ │ │ ├── CIImage+LionheartExtensions.swift │ │ │ ├── DateFormatter+LionheartExtensions.swift │ │ │ ├── FileManager+LionheartExtensions.swift │ │ │ ├── IndexPath+LionheartExtensions.swift │ │ │ ├── Int+LionheartExtensions.swift │ │ │ ├── NSDecimalNumber+LionheartExtensions.swift │ │ │ ├── NSRegularExpression+LionheartExtensions.swift │ │ │ ├── NSURLSession+LionheartExtensions.swift │ │ │ ├── Optional+LionheartExtensions.swift │ │ │ ├── String+LionheartExtensions.swift │ │ │ ├── UIAlertController+LionheartExtensions.swift │ │ │ ├── UIApplicationDelegate+LionheartExtensions.swift │ │ │ ├── UIColor+LionheartExtensions.swift │ │ │ ├── UIDevice+LionheartExtensions.swift │ │ │ ├── UIFont+LionheartExtensions.swift │ │ │ ├── UIImage+LionheartExtensions.swift │ │ │ ├── UIPrintPageRenderer+LionheartExtensions.swift │ │ │ ├── UIScreen+LionheartExtensions.swift │ │ │ ├── UITextField+LionheartExtensions.swift │ │ │ ├── UIView+LionheartExtensions.swift │ │ │ ├── UIViewController+LionheartExtensions.swift │ │ │ ├── UIWindow+LionheartExtensions.swift │ │ │ └── WKWebView+LionheartExtensions.swift │ │ │ ├── CustomButtonType.swift │ │ │ ├── File.swift │ │ │ ├── Functional.swift │ │ │ ├── Main.swift │ │ │ ├── Summable.swift │ │ │ └── TitleButton.swift │ └── README.md │ ├── Local Podspecs │ └── ConcentricProgressRingView.podspec.json │ ├── Manifest.lock │ ├── Nimble │ ├── Carthage │ │ └── Checkouts │ │ │ ├── CwlCatchException │ │ │ └── Sources │ │ │ │ ├── CwlCatchException │ │ │ │ └── CwlCatchException.swift │ │ │ │ └── CwlCatchExceptionSupport │ │ │ │ ├── CwlCatchException.m │ │ │ │ └── include │ │ │ │ └── CwlCatchException.h │ │ │ └── CwlPreconditionTesting │ │ │ └── Sources │ │ │ ├── CwlMachBadInstructionHandler │ │ │ ├── CwlMachBadInstructionHandler.m │ │ │ ├── include │ │ │ │ └── CwlMachBadInstructionHandler.h │ │ │ ├── mach_excServer.c │ │ │ └── mach_excServer.h │ │ │ └── CwlPreconditionTesting │ │ │ ├── CwlBadInstructionException.swift │ │ │ ├── CwlCatchBadInstruction.swift │ │ │ ├── CwlDarwinDefinitions.swift │ │ │ └── Mach │ │ │ └── CwlPreconditionTesting.h │ ├── LICENSE │ ├── 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 │ │ ├── ExpectationMessage.swift │ │ ├── Expression.swift │ │ ├── FailureMessage.swift │ │ ├── Matchers │ │ │ ├── AllPass.swift │ │ │ ├── Async.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 │ │ │ ├── ContainElementSatisfying.swift │ │ │ ├── EndWith.swift │ │ │ ├── Equal.swift │ │ │ ├── HaveCount.swift │ │ │ ├── Match.swift │ │ │ ├── MatchError.swift │ │ │ ├── MatcherFunc.swift │ │ │ ├── MatcherProtocols.swift │ │ │ ├── PostNotification.swift │ │ │ ├── Predicate.swift │ │ │ ├── RaisesException.swift │ │ │ ├── SatisfyAllOf.swift │ │ │ ├── SatisfyAnyOf.swift │ │ │ ├── ThrowAssertion.swift │ │ │ ├── ThrowError.swift │ │ │ └── ToSucceed.swift │ │ ├── Nimble.h │ │ └── Utils │ │ │ ├── Await.swift │ │ │ ├── Errors.swift │ │ │ ├── Functional.swift │ │ │ ├── SourceLocation.swift │ │ │ └── Stringers.swift │ │ └── NimbleObjectiveC │ │ ├── DSL.h │ │ ├── DSL.m │ │ ├── NMBExceptionCapture.h │ │ ├── NMBExceptionCapture.m │ │ ├── NMBStringify.h │ │ ├── NMBStringify.m │ │ └── XCTestObservationCenter+Register.m │ ├── Pods.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata │ ├── Quick │ ├── LICENSE │ ├── README.md │ └── Sources │ │ ├── Quick │ │ ├── Behavior.swift │ │ ├── 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 │ │ ├── NSString+C99ExtendedIdentifier.swift │ │ ├── QuickSelectedTestSuiteBuilder.swift │ │ ├── QuickTestSuite.swift │ │ ├── URL+FileName.swift │ │ └── World.swift │ │ ├── QuickObjectiveC │ │ ├── Configuration │ │ │ ├── QuickConfiguration.h │ │ │ └── QuickConfiguration.m │ │ ├── DSL │ │ │ ├── QCKDSL.h │ │ │ └── QCKDSL.m │ │ ├── Quick.h │ │ ├── QuickSpec.h │ │ ├── QuickSpec.m │ │ └── XCTestSuite+QuickTestSuiteBuilder.m │ │ └── QuickSpecBase │ │ ├── QuickSpecBase.m │ │ └── include │ │ └── QuickSpecBase.h │ └── Target Support Files │ ├── ConcentricProgressRingView │ ├── ConcentricProgressRingView-Info.plist │ ├── ConcentricProgressRingView-dummy.m │ ├── ConcentricProgressRingView-prefix.pch │ ├── ConcentricProgressRingView-umbrella.h │ ├── ConcentricProgressRingView.modulemap │ ├── ConcentricProgressRingView.xcconfig │ └── Info.plist │ ├── LionheartExtensions │ ├── Info.plist │ ├── LionheartExtensions-Info.plist │ ├── LionheartExtensions-dummy.m │ ├── LionheartExtensions-prefix.pch │ ├── LionheartExtensions-umbrella.h │ ├── LionheartExtensions.modulemap │ └── LionheartExtensions.xcconfig │ ├── Nimble │ ├── Info.plist │ ├── Nimble-Info.plist │ ├── Nimble-dummy.m │ ├── Nimble-prefix.pch │ ├── Nimble-umbrella.h │ ├── Nimble.modulemap │ └── Nimble.xcconfig │ ├── Pods-ConcentricProgressRingView_Example │ ├── Info.plist │ ├── Pods-ConcentricProgressRingView_Example-Info.plist │ ├── Pods-ConcentricProgressRingView_Example-acknowledgements.markdown │ ├── Pods-ConcentricProgressRingView_Example-acknowledgements.plist │ ├── Pods-ConcentricProgressRingView_Example-dummy.m │ ├── Pods-ConcentricProgressRingView_Example-frameworks.sh │ ├── Pods-ConcentricProgressRingView_Example-resources.sh │ ├── Pods-ConcentricProgressRingView_Example-umbrella.h │ ├── Pods-ConcentricProgressRingView_Example.debug.xcconfig │ ├── Pods-ConcentricProgressRingView_Example.modulemap │ └── Pods-ConcentricProgressRingView_Example.release.xcconfig │ ├── Pods-ConcentricProgressRingView_ExampleTests │ ├── Info.plist │ ├── Pods-ConcentricProgressRingView_ExampleTests-Info.plist │ ├── Pods-ConcentricProgressRingView_ExampleTests-acknowledgements.markdown │ ├── Pods-ConcentricProgressRingView_ExampleTests-acknowledgements.plist │ ├── Pods-ConcentricProgressRingView_ExampleTests-dummy.m │ ├── Pods-ConcentricProgressRingView_ExampleTests-frameworks.sh │ ├── Pods-ConcentricProgressRingView_ExampleTests-resources.sh │ ├── Pods-ConcentricProgressRingView_ExampleTests-umbrella.h │ ├── Pods-ConcentricProgressRingView_ExampleTests.debug.xcconfig │ ├── Pods-ConcentricProgressRingView_ExampleTests.modulemap │ └── Pods-ConcentricProgressRingView_ExampleTests.release.xcconfig │ └── Quick │ ├── Info.plist │ ├── Quick-Info.plist │ ├── Quick-dummy.m │ ├── Quick-prefix.pch │ ├── Quick-umbrella.h │ ├── Quick.modulemap │ └── Quick.xcconfig ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── Makefile ├── NOTICE ├── README.md ├── _Pods.xcodeproj ├── animation.gif ├── docs ├── Classes.html ├── Classes │ ├── CircleLayer.html │ ├── ConcentricProgressRingView.html │ └── ProgressRingLayer.html ├── Structs.html ├── Structs │ └── ProgressRing.html ├── badge.svg ├── css │ ├── highlight.css │ └── jazzy.css ├── docsets │ ├── ConcentricProgressRingView.docset │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── Resources │ │ │ ├── Documents │ │ │ ├── Classes.html │ │ │ ├── Classes │ │ │ │ ├── CircleLayer.html │ │ │ │ ├── ConcentricProgressRingView.html │ │ │ │ └── ProgressRingLayer.html │ │ │ ├── Structs.html │ │ │ ├── Structs │ │ │ │ └── ProgressRing.html │ │ │ ├── css │ │ │ │ ├── highlight.css │ │ │ │ └── jazzy.css │ │ │ ├── img │ │ │ │ ├── carat.png │ │ │ │ ├── dash.png │ │ │ │ ├── gh.png │ │ │ │ └── spinner.gif │ │ │ ├── index.html │ │ │ ├── js │ │ │ │ ├── jazzy.js │ │ │ │ ├── jazzy.search.js │ │ │ │ ├── jquery.min.js │ │ │ │ ├── lunr.min.js │ │ │ │ └── typeahead.jquery.js │ │ │ └── search.json │ │ │ └── docSet.dsidx │ └── ConcentricProgressRingView.tgz ├── filelist ├── filelist-local ├── filelist-local-md5 ├── filelist-md5 ├── img │ ├── carat.png │ ├── dash.png │ ├── gh.png │ └── spinner.gif ├── index.html ├── js │ ├── jazzy.js │ ├── jazzy.search.js │ ├── jquery.min.js │ ├── lunr.min.js │ └── typeahead.jquery.js ├── search.json └── undocumented.json ├── example1.png ├── example2.png ├── example3.png └── meta ├── header.sketch ├── repo-banner-bottom.png └── repo-banner.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/.gitignore -------------------------------------------------------------------------------- /.jazzy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/.jazzy.yaml -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 2.5.0 2 | -------------------------------------------------------------------------------- /.swift-version: -------------------------------------------------------------------------------- 1 | 4.0 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/.travis.yml -------------------------------------------------------------------------------- /ConcentricProgressRingView.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/ConcentricProgressRingView.podspec -------------------------------------------------------------------------------- /ConcentricProgressRingView/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ConcentricProgressRingView/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ConcentricProgressRingView/Classes/ConcentricProgressRing.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/ConcentricProgressRingView/Classes/ConcentricProgressRing.swift -------------------------------------------------------------------------------- /Example/ConcentricProgressRingView.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/ConcentricProgressRingView.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/ConcentricProgressRingView.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/ConcentricProgressRingView.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/ConcentricProgressRingView.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/ConcentricProgressRingView.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/ConcentricProgressRingView.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/ConcentricProgressRingView.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/ConcentricProgressRingView.xcworkspace/xcshareddata/xcschemes/ConcentricProgressRingView-Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/ConcentricProgressRingView.xcworkspace/xcshareddata/xcschemes/ConcentricProgressRingView-Example.xcscheme -------------------------------------------------------------------------------- /Example/ConcentricProgressRingView/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/ConcentricProgressRingView/AppDelegate.swift -------------------------------------------------------------------------------- /Example/ConcentricProgressRingView/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/ConcentricProgressRingView/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Example/ConcentricProgressRingView/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/ConcentricProgressRingView/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/ConcentricProgressRingView/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/ConcentricProgressRingView/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/ConcentricProgressRingView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/ConcentricProgressRingView/Info.plist -------------------------------------------------------------------------------- /Example/ConcentricProgressRingView/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/ConcentricProgressRingView/ViewController.swift -------------------------------------------------------------------------------- /Example/ConcentricProgressRingView_ExampleTests/ConcentricProgressRingView_ExampleTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/ConcentricProgressRingView_ExampleTests/ConcentricProgressRingView_ExampleTests.swift -------------------------------------------------------------------------------- /Example/ConcentricProgressRingView_ExampleTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/ConcentricProgressRingView_ExampleTests/Info.plist -------------------------------------------------------------------------------- /Example/ConcentricProgressRingView_Tests/ConcentricProgressRingView_Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/ConcentricProgressRingView_Tests/ConcentricProgressRingView_Tests.swift -------------------------------------------------------------------------------- /Example/ConcentricProgressRingView_Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/ConcentricProgressRingView_Tests/Info.plist -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Pods/LionheartExtensions/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/LionheartExtensions/LICENSE -------------------------------------------------------------------------------- /Example/Pods/LionheartExtensions/Pod/Classes/ActivityIndicatorButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/LionheartExtensions/Pod/Classes/ActivityIndicatorButton.swift -------------------------------------------------------------------------------- /Example/Pods/LionheartExtensions/Pod/Classes/ColorRepresentation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/LionheartExtensions/Pod/Classes/ColorRepresentation.swift -------------------------------------------------------------------------------- /Example/Pods/LionheartExtensions/Pod/Classes/Core/Any+LionheartExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/LionheartExtensions/Pod/Classes/Core/Any+LionheartExtensions.swift -------------------------------------------------------------------------------- /Example/Pods/LionheartExtensions/Pod/Classes/Core/Array+LionheartExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/LionheartExtensions/Pod/Classes/Core/Array+LionheartExtensions.swift -------------------------------------------------------------------------------- /Example/Pods/LionheartExtensions/Pod/Classes/Core/Bundle+LionheartExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/LionheartExtensions/Pod/Classes/Core/Bundle+LionheartExtensions.swift -------------------------------------------------------------------------------- /Example/Pods/LionheartExtensions/Pod/Classes/Core/CIImage+LionheartExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/LionheartExtensions/Pod/Classes/Core/CIImage+LionheartExtensions.swift -------------------------------------------------------------------------------- /Example/Pods/LionheartExtensions/Pod/Classes/Core/DateFormatter+LionheartExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/LionheartExtensions/Pod/Classes/Core/DateFormatter+LionheartExtensions.swift -------------------------------------------------------------------------------- /Example/Pods/LionheartExtensions/Pod/Classes/Core/FileManager+LionheartExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/LionheartExtensions/Pod/Classes/Core/FileManager+LionheartExtensions.swift -------------------------------------------------------------------------------- /Example/Pods/LionheartExtensions/Pod/Classes/Core/IndexPath+LionheartExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/LionheartExtensions/Pod/Classes/Core/IndexPath+LionheartExtensions.swift -------------------------------------------------------------------------------- /Example/Pods/LionheartExtensions/Pod/Classes/Core/Int+LionheartExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/LionheartExtensions/Pod/Classes/Core/Int+LionheartExtensions.swift -------------------------------------------------------------------------------- /Example/Pods/LionheartExtensions/Pod/Classes/Core/NSDecimalNumber+LionheartExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/LionheartExtensions/Pod/Classes/Core/NSDecimalNumber+LionheartExtensions.swift -------------------------------------------------------------------------------- /Example/Pods/LionheartExtensions/Pod/Classes/Core/NSRegularExpression+LionheartExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/LionheartExtensions/Pod/Classes/Core/NSRegularExpression+LionheartExtensions.swift -------------------------------------------------------------------------------- /Example/Pods/LionheartExtensions/Pod/Classes/Core/NSURLSession+LionheartExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/LionheartExtensions/Pod/Classes/Core/NSURLSession+LionheartExtensions.swift -------------------------------------------------------------------------------- /Example/Pods/LionheartExtensions/Pod/Classes/Core/Optional+LionheartExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/LionheartExtensions/Pod/Classes/Core/Optional+LionheartExtensions.swift -------------------------------------------------------------------------------- /Example/Pods/LionheartExtensions/Pod/Classes/Core/String+LionheartExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/LionheartExtensions/Pod/Classes/Core/String+LionheartExtensions.swift -------------------------------------------------------------------------------- /Example/Pods/LionheartExtensions/Pod/Classes/Core/UIAlertController+LionheartExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/LionheartExtensions/Pod/Classes/Core/UIAlertController+LionheartExtensions.swift -------------------------------------------------------------------------------- /Example/Pods/LionheartExtensions/Pod/Classes/Core/UIApplicationDelegate+LionheartExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/LionheartExtensions/Pod/Classes/Core/UIApplicationDelegate+LionheartExtensions.swift -------------------------------------------------------------------------------- /Example/Pods/LionheartExtensions/Pod/Classes/Core/UIColor+LionheartExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/LionheartExtensions/Pod/Classes/Core/UIColor+LionheartExtensions.swift -------------------------------------------------------------------------------- /Example/Pods/LionheartExtensions/Pod/Classes/Core/UIDevice+LionheartExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/LionheartExtensions/Pod/Classes/Core/UIDevice+LionheartExtensions.swift -------------------------------------------------------------------------------- /Example/Pods/LionheartExtensions/Pod/Classes/Core/UIFont+LionheartExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/LionheartExtensions/Pod/Classes/Core/UIFont+LionheartExtensions.swift -------------------------------------------------------------------------------- /Example/Pods/LionheartExtensions/Pod/Classes/Core/UIImage+LionheartExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/LionheartExtensions/Pod/Classes/Core/UIImage+LionheartExtensions.swift -------------------------------------------------------------------------------- /Example/Pods/LionheartExtensions/Pod/Classes/Core/UIPrintPageRenderer+LionheartExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/LionheartExtensions/Pod/Classes/Core/UIPrintPageRenderer+LionheartExtensions.swift -------------------------------------------------------------------------------- /Example/Pods/LionheartExtensions/Pod/Classes/Core/UIScreen+LionheartExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/LionheartExtensions/Pod/Classes/Core/UIScreen+LionheartExtensions.swift -------------------------------------------------------------------------------- /Example/Pods/LionheartExtensions/Pod/Classes/Core/UITextField+LionheartExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/LionheartExtensions/Pod/Classes/Core/UITextField+LionheartExtensions.swift -------------------------------------------------------------------------------- /Example/Pods/LionheartExtensions/Pod/Classes/Core/UIView+LionheartExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/LionheartExtensions/Pod/Classes/Core/UIView+LionheartExtensions.swift -------------------------------------------------------------------------------- /Example/Pods/LionheartExtensions/Pod/Classes/Core/UIViewController+LionheartExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/LionheartExtensions/Pod/Classes/Core/UIViewController+LionheartExtensions.swift -------------------------------------------------------------------------------- /Example/Pods/LionheartExtensions/Pod/Classes/Core/UIWindow+LionheartExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/LionheartExtensions/Pod/Classes/Core/UIWindow+LionheartExtensions.swift -------------------------------------------------------------------------------- /Example/Pods/LionheartExtensions/Pod/Classes/Core/WKWebView+LionheartExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/LionheartExtensions/Pod/Classes/Core/WKWebView+LionheartExtensions.swift -------------------------------------------------------------------------------- /Example/Pods/LionheartExtensions/Pod/Classes/CustomButtonType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/LionheartExtensions/Pod/Classes/CustomButtonType.swift -------------------------------------------------------------------------------- /Example/Pods/LionheartExtensions/Pod/Classes/File.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/LionheartExtensions/Pod/Classes/File.swift -------------------------------------------------------------------------------- /Example/Pods/LionheartExtensions/Pod/Classes/Functional.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/LionheartExtensions/Pod/Classes/Functional.swift -------------------------------------------------------------------------------- /Example/Pods/LionheartExtensions/Pod/Classes/Main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/LionheartExtensions/Pod/Classes/Main.swift -------------------------------------------------------------------------------- /Example/Pods/LionheartExtensions/Pod/Classes/Summable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/LionheartExtensions/Pod/Classes/Summable.swift -------------------------------------------------------------------------------- /Example/Pods/LionheartExtensions/Pod/Classes/TitleButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/LionheartExtensions/Pod/Classes/TitleButton.swift -------------------------------------------------------------------------------- /Example/Pods/LionheartExtensions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/LionheartExtensions/README.md -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/ConcentricProgressRingView.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Local Podspecs/ConcentricProgressRingView.podspec.json -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Manifest.lock -------------------------------------------------------------------------------- /Example/Pods/Nimble/Carthage/Checkouts/CwlCatchException/Sources/CwlCatchException/CwlCatchException.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Nimble/Carthage/Checkouts/CwlCatchException/Sources/CwlCatchException/CwlCatchException.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Carthage/Checkouts/CwlCatchException/Sources/CwlCatchExceptionSupport/CwlCatchException.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Nimble/Carthage/Checkouts/CwlCatchException/Sources/CwlCatchExceptionSupport/CwlCatchException.m -------------------------------------------------------------------------------- /Example/Pods/Nimble/Carthage/Checkouts/CwlCatchException/Sources/CwlCatchExceptionSupport/include/CwlCatchException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Nimble/Carthage/Checkouts/CwlCatchException/Sources/CwlCatchExceptionSupport/include/CwlCatchException.h -------------------------------------------------------------------------------- /Example/Pods/Nimble/Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlMachBadInstructionHandler/CwlMachBadInstructionHandler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Nimble/Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlMachBadInstructionHandler/CwlMachBadInstructionHandler.m -------------------------------------------------------------------------------- /Example/Pods/Nimble/Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlMachBadInstructionHandler/include/CwlMachBadInstructionHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Nimble/Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlMachBadInstructionHandler/include/CwlMachBadInstructionHandler.h -------------------------------------------------------------------------------- /Example/Pods/Nimble/Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlMachBadInstructionHandler/mach_excServer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Nimble/Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlMachBadInstructionHandler/mach_excServer.c -------------------------------------------------------------------------------- /Example/Pods/Nimble/Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlMachBadInstructionHandler/mach_excServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Nimble/Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlMachBadInstructionHandler/mach_excServer.h -------------------------------------------------------------------------------- /Example/Pods/Nimble/Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlPreconditionTesting/CwlBadInstructionException.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Nimble/Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlPreconditionTesting/CwlBadInstructionException.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlPreconditionTesting/CwlCatchBadInstruction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Nimble/Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlPreconditionTesting/CwlCatchBadInstruction.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlPreconditionTesting/CwlDarwinDefinitions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Nimble/Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlPreconditionTesting/CwlDarwinDefinitions.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlPreconditionTesting/Mach/CwlPreconditionTesting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Nimble/Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlPreconditionTesting/Mach/CwlPreconditionTesting.h -------------------------------------------------------------------------------- /Example/Pods/Nimble/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Nimble/LICENSE -------------------------------------------------------------------------------- /Example/Pods/Nimble/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Nimble/README.md -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Adapters/AdapterProtocols.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Nimble/Sources/Nimble/Adapters/AdapterProtocols.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Adapters/AssertionDispatcher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Nimble/Sources/Nimble/Adapters/AssertionDispatcher.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Adapters/AssertionRecorder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Nimble/Sources/Nimble/Adapters/AssertionRecorder.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Adapters/NMBExpectation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Nimble/Sources/Nimble/Adapters/NMBExpectation.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Adapters/NMBObjCMatcher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Nimble/Sources/Nimble/Adapters/NMBObjCMatcher.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Adapters/NimbleEnvironment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Nimble/Sources/Nimble/Adapters/NimbleEnvironment.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Adapters/NimbleXCTestHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Nimble/Sources/Nimble/Adapters/NimbleXCTestHandler.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/DSL+Wait.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Nimble/Sources/Nimble/DSL+Wait.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/DSL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Nimble/Sources/Nimble/DSL.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Expectation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Nimble/Sources/Nimble/Expectation.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/ExpectationMessage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Nimble/Sources/Nimble/ExpectationMessage.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Expression.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Nimble/Sources/Nimble/Expression.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/FailureMessage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Nimble/Sources/Nimble/FailureMessage.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Matchers/AllPass.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Nimble/Sources/Nimble/Matchers/AllPass.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Matchers/Async.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Nimble/Sources/Nimble/Matchers/Async.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Matchers/BeAKindOf.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Nimble/Sources/Nimble/Matchers/BeAKindOf.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Matchers/BeAnInstanceOf.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Nimble/Sources/Nimble/Matchers/BeAnInstanceOf.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Matchers/BeCloseTo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Nimble/Sources/Nimble/Matchers/BeCloseTo.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Matchers/BeEmpty.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Nimble/Sources/Nimble/Matchers/BeEmpty.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Matchers/BeGreaterThan.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Nimble/Sources/Nimble/Matchers/BeGreaterThan.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Matchers/BeGreaterThanOrEqualTo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Nimble/Sources/Nimble/Matchers/BeGreaterThanOrEqualTo.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Matchers/BeIdenticalTo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Nimble/Sources/Nimble/Matchers/BeIdenticalTo.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Matchers/BeLessThan.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Nimble/Sources/Nimble/Matchers/BeLessThan.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Matchers/BeLessThanOrEqual.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Nimble/Sources/Nimble/Matchers/BeLessThanOrEqual.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Matchers/BeLogical.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Nimble/Sources/Nimble/Matchers/BeLogical.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Matchers/BeNil.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Nimble/Sources/Nimble/Matchers/BeNil.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Matchers/BeVoid.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Nimble/Sources/Nimble/Matchers/BeVoid.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Matchers/BeginWith.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Nimble/Sources/Nimble/Matchers/BeginWith.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Matchers/Contain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Nimble/Sources/Nimble/Matchers/Contain.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Matchers/ContainElementSatisfying.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Nimble/Sources/Nimble/Matchers/ContainElementSatisfying.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Matchers/EndWith.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Nimble/Sources/Nimble/Matchers/EndWith.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Matchers/Equal.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Nimble/Sources/Nimble/Matchers/Equal.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Matchers/HaveCount.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Nimble/Sources/Nimble/Matchers/HaveCount.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Matchers/Match.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Nimble/Sources/Nimble/Matchers/Match.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Matchers/MatchError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Nimble/Sources/Nimble/Matchers/MatchError.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Matchers/MatcherFunc.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Nimble/Sources/Nimble/Matchers/MatcherFunc.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Matchers/MatcherProtocols.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Nimble/Sources/Nimble/Matchers/MatcherProtocols.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Matchers/PostNotification.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Nimble/Sources/Nimble/Matchers/PostNotification.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Matchers/Predicate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Nimble/Sources/Nimble/Matchers/Predicate.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Matchers/RaisesException.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Nimble/Sources/Nimble/Matchers/RaisesException.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Matchers/SatisfyAllOf.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Nimble/Sources/Nimble/Matchers/SatisfyAllOf.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Matchers/SatisfyAnyOf.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Nimble/Sources/Nimble/Matchers/SatisfyAnyOf.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Matchers/ThrowAssertion.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Nimble/Sources/Nimble/Matchers/ThrowAssertion.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Matchers/ThrowError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Nimble/Sources/Nimble/Matchers/ThrowError.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Matchers/ToSucceed.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Nimble/Sources/Nimble/Matchers/ToSucceed.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Nimble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Nimble/Sources/Nimble/Nimble.h -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Utils/Await.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Nimble/Sources/Nimble/Utils/Await.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Utils/Errors.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Nimble/Sources/Nimble/Utils/Errors.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Utils/Functional.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Nimble/Sources/Nimble/Utils/Functional.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Utils/SourceLocation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Nimble/Sources/Nimble/Utils/SourceLocation.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Utils/Stringers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Nimble/Sources/Nimble/Utils/Stringers.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/NimbleObjectiveC/DSL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Nimble/Sources/NimbleObjectiveC/DSL.h -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/NimbleObjectiveC/DSL.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Nimble/Sources/NimbleObjectiveC/DSL.m -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/NimbleObjectiveC/NMBExceptionCapture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Nimble/Sources/NimbleObjectiveC/NMBExceptionCapture.h -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/NimbleObjectiveC/NMBExceptionCapture.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Nimble/Sources/NimbleObjectiveC/NMBExceptionCapture.m -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/NimbleObjectiveC/NMBStringify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Nimble/Sources/NimbleObjectiveC/NMBStringify.h -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/NimbleObjectiveC/NMBStringify.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Nimble/Sources/NimbleObjectiveC/NMBStringify.m -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/NimbleObjectiveC/XCTestObservationCenter+Register.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Nimble/Sources/NimbleObjectiveC/XCTestObservationCenter+Register.m -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Pods.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/Pods/Quick/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Quick/LICENSE -------------------------------------------------------------------------------- /Example/Pods/Quick/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Quick/README.md -------------------------------------------------------------------------------- /Example/Pods/Quick/Sources/Quick/Behavior.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Quick/Sources/Quick/Behavior.swift -------------------------------------------------------------------------------- /Example/Pods/Quick/Sources/Quick/Callsite.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Quick/Sources/Quick/Callsite.swift -------------------------------------------------------------------------------- /Example/Pods/Quick/Sources/Quick/Configuration/Configuration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Quick/Sources/Quick/Configuration/Configuration.swift -------------------------------------------------------------------------------- /Example/Pods/Quick/Sources/Quick/DSL/DSL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Quick/Sources/Quick/DSL/DSL.swift -------------------------------------------------------------------------------- /Example/Pods/Quick/Sources/Quick/DSL/World+DSL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Quick/Sources/Quick/DSL/World+DSL.swift -------------------------------------------------------------------------------- /Example/Pods/Quick/Sources/Quick/ErrorUtility.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Quick/Sources/Quick/ErrorUtility.swift -------------------------------------------------------------------------------- /Example/Pods/Quick/Sources/Quick/Example.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Quick/Sources/Quick/Example.swift -------------------------------------------------------------------------------- /Example/Pods/Quick/Sources/Quick/ExampleGroup.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Quick/Sources/Quick/ExampleGroup.swift -------------------------------------------------------------------------------- /Example/Pods/Quick/Sources/Quick/ExampleMetadata.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Quick/Sources/Quick/ExampleMetadata.swift -------------------------------------------------------------------------------- /Example/Pods/Quick/Sources/Quick/Filter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Quick/Sources/Quick/Filter.swift -------------------------------------------------------------------------------- /Example/Pods/Quick/Sources/Quick/Hooks/Closures.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Quick/Sources/Quick/Hooks/Closures.swift -------------------------------------------------------------------------------- /Example/Pods/Quick/Sources/Quick/Hooks/ExampleHooks.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Quick/Sources/Quick/Hooks/ExampleHooks.swift -------------------------------------------------------------------------------- /Example/Pods/Quick/Sources/Quick/Hooks/HooksPhase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Quick/Sources/Quick/Hooks/HooksPhase.swift -------------------------------------------------------------------------------- /Example/Pods/Quick/Sources/Quick/Hooks/SuiteHooks.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Quick/Sources/Quick/Hooks/SuiteHooks.swift -------------------------------------------------------------------------------- /Example/Pods/Quick/Sources/Quick/NSBundle+CurrentTestBundle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Quick/Sources/Quick/NSBundle+CurrentTestBundle.swift -------------------------------------------------------------------------------- /Example/Pods/Quick/Sources/Quick/NSString+C99ExtendedIdentifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Quick/Sources/Quick/NSString+C99ExtendedIdentifier.swift -------------------------------------------------------------------------------- /Example/Pods/Quick/Sources/Quick/QuickSelectedTestSuiteBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Quick/Sources/Quick/QuickSelectedTestSuiteBuilder.swift -------------------------------------------------------------------------------- /Example/Pods/Quick/Sources/Quick/QuickTestSuite.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Quick/Sources/Quick/QuickTestSuite.swift -------------------------------------------------------------------------------- /Example/Pods/Quick/Sources/Quick/URL+FileName.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Quick/Sources/Quick/URL+FileName.swift -------------------------------------------------------------------------------- /Example/Pods/Quick/Sources/Quick/World.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Quick/Sources/Quick/World.swift -------------------------------------------------------------------------------- /Example/Pods/Quick/Sources/QuickObjectiveC/Configuration/QuickConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Quick/Sources/QuickObjectiveC/Configuration/QuickConfiguration.h -------------------------------------------------------------------------------- /Example/Pods/Quick/Sources/QuickObjectiveC/Configuration/QuickConfiguration.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Quick/Sources/QuickObjectiveC/Configuration/QuickConfiguration.m -------------------------------------------------------------------------------- /Example/Pods/Quick/Sources/QuickObjectiveC/DSL/QCKDSL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Quick/Sources/QuickObjectiveC/DSL/QCKDSL.h -------------------------------------------------------------------------------- /Example/Pods/Quick/Sources/QuickObjectiveC/DSL/QCKDSL.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Quick/Sources/QuickObjectiveC/DSL/QCKDSL.m -------------------------------------------------------------------------------- /Example/Pods/Quick/Sources/QuickObjectiveC/Quick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Quick/Sources/QuickObjectiveC/Quick.h -------------------------------------------------------------------------------- /Example/Pods/Quick/Sources/QuickObjectiveC/QuickSpec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Quick/Sources/QuickObjectiveC/QuickSpec.h -------------------------------------------------------------------------------- /Example/Pods/Quick/Sources/QuickObjectiveC/QuickSpec.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Quick/Sources/QuickObjectiveC/QuickSpec.m -------------------------------------------------------------------------------- /Example/Pods/Quick/Sources/QuickObjectiveC/XCTestSuite+QuickTestSuiteBuilder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Quick/Sources/QuickObjectiveC/XCTestSuite+QuickTestSuiteBuilder.m -------------------------------------------------------------------------------- /Example/Pods/Quick/Sources/QuickSpecBase/QuickSpecBase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Quick/Sources/QuickSpecBase/QuickSpecBase.m -------------------------------------------------------------------------------- /Example/Pods/Quick/Sources/QuickSpecBase/include/QuickSpecBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Quick/Sources/QuickSpecBase/include/QuickSpecBase.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/ConcentricProgressRingView/ConcentricProgressRingView-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Target Support Files/ConcentricProgressRingView/ConcentricProgressRingView-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/ConcentricProgressRingView/ConcentricProgressRingView-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Target Support Files/ConcentricProgressRingView/ConcentricProgressRingView-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/ConcentricProgressRingView/ConcentricProgressRingView-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Target Support Files/ConcentricProgressRingView/ConcentricProgressRingView-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/ConcentricProgressRingView/ConcentricProgressRingView-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Target Support Files/ConcentricProgressRingView/ConcentricProgressRingView-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/ConcentricProgressRingView/ConcentricProgressRingView.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Target Support Files/ConcentricProgressRingView/ConcentricProgressRingView.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/ConcentricProgressRingView/ConcentricProgressRingView.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Target Support Files/ConcentricProgressRingView/ConcentricProgressRingView.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/ConcentricProgressRingView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Target Support Files/ConcentricProgressRingView/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/LionheartExtensions/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Target Support Files/LionheartExtensions/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/LionheartExtensions/LionheartExtensions-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Target Support Files/LionheartExtensions/LionheartExtensions-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/LionheartExtensions/LionheartExtensions-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Target Support Files/LionheartExtensions/LionheartExtensions-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/LionheartExtensions/LionheartExtensions-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Target Support Files/LionheartExtensions/LionheartExtensions-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/LionheartExtensions/LionheartExtensions-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Target Support Files/LionheartExtensions/LionheartExtensions-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/LionheartExtensions/LionheartExtensions.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Target Support Files/LionheartExtensions/LionheartExtensions.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/LionheartExtensions/LionheartExtensions.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Target Support Files/LionheartExtensions/LionheartExtensions.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Nimble/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Target Support Files/Nimble/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Nimble/Nimble-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Target Support Files/Nimble/Nimble-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Nimble/Nimble-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Target Support Files/Nimble/Nimble-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Nimble/Nimble-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Target Support Files/Nimble/Nimble-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Nimble/Nimble-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Target Support Files/Nimble/Nimble-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Nimble/Nimble.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Target Support Files/Nimble/Nimble.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Nimble/Nimble.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Target Support Files/Nimble/Nimble.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ConcentricProgressRingView_Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Target Support Files/Pods-ConcentricProgressRingView_Example/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ConcentricProgressRingView_Example/Pods-ConcentricProgressRingView_Example-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Target Support Files/Pods-ConcentricProgressRingView_Example/Pods-ConcentricProgressRingView_Example-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ConcentricProgressRingView_Example/Pods-ConcentricProgressRingView_Example-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Target Support Files/Pods-ConcentricProgressRingView_Example/Pods-ConcentricProgressRingView_Example-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ConcentricProgressRingView_Example/Pods-ConcentricProgressRingView_Example-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Target Support Files/Pods-ConcentricProgressRingView_Example/Pods-ConcentricProgressRingView_Example-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ConcentricProgressRingView_Example/Pods-ConcentricProgressRingView_Example-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Target Support Files/Pods-ConcentricProgressRingView_Example/Pods-ConcentricProgressRingView_Example-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ConcentricProgressRingView_Example/Pods-ConcentricProgressRingView_Example-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Target Support Files/Pods-ConcentricProgressRingView_Example/Pods-ConcentricProgressRingView_Example-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ConcentricProgressRingView_Example/Pods-ConcentricProgressRingView_Example-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Target Support Files/Pods-ConcentricProgressRingView_Example/Pods-ConcentricProgressRingView_Example-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ConcentricProgressRingView_Example/Pods-ConcentricProgressRingView_Example-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Target Support Files/Pods-ConcentricProgressRingView_Example/Pods-ConcentricProgressRingView_Example-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ConcentricProgressRingView_Example/Pods-ConcentricProgressRingView_Example.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Target Support Files/Pods-ConcentricProgressRingView_Example/Pods-ConcentricProgressRingView_Example.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ConcentricProgressRingView_Example/Pods-ConcentricProgressRingView_Example.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Target Support Files/Pods-ConcentricProgressRingView_Example/Pods-ConcentricProgressRingView_Example.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ConcentricProgressRingView_Example/Pods-ConcentricProgressRingView_Example.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Target Support Files/Pods-ConcentricProgressRingView_Example/Pods-ConcentricProgressRingView_Example.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ConcentricProgressRingView_ExampleTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Target Support Files/Pods-ConcentricProgressRingView_ExampleTests/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ConcentricProgressRingView_ExampleTests/Pods-ConcentricProgressRingView_ExampleTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Target Support Files/Pods-ConcentricProgressRingView_ExampleTests/Pods-ConcentricProgressRingView_ExampleTests-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ConcentricProgressRingView_ExampleTests/Pods-ConcentricProgressRingView_ExampleTests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Target Support Files/Pods-ConcentricProgressRingView_ExampleTests/Pods-ConcentricProgressRingView_ExampleTests-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ConcentricProgressRingView_ExampleTests/Pods-ConcentricProgressRingView_ExampleTests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Target Support Files/Pods-ConcentricProgressRingView_ExampleTests/Pods-ConcentricProgressRingView_ExampleTests-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ConcentricProgressRingView_ExampleTests/Pods-ConcentricProgressRingView_ExampleTests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Target Support Files/Pods-ConcentricProgressRingView_ExampleTests/Pods-ConcentricProgressRingView_ExampleTests-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ConcentricProgressRingView_ExampleTests/Pods-ConcentricProgressRingView_ExampleTests-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Target Support Files/Pods-ConcentricProgressRingView_ExampleTests/Pods-ConcentricProgressRingView_ExampleTests-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ConcentricProgressRingView_ExampleTests/Pods-ConcentricProgressRingView_ExampleTests-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Target Support Files/Pods-ConcentricProgressRingView_ExampleTests/Pods-ConcentricProgressRingView_ExampleTests-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ConcentricProgressRingView_ExampleTests/Pods-ConcentricProgressRingView_ExampleTests-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Target Support Files/Pods-ConcentricProgressRingView_ExampleTests/Pods-ConcentricProgressRingView_ExampleTests-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ConcentricProgressRingView_ExampleTests/Pods-ConcentricProgressRingView_ExampleTests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Target Support Files/Pods-ConcentricProgressRingView_ExampleTests/Pods-ConcentricProgressRingView_ExampleTests.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ConcentricProgressRingView_ExampleTests/Pods-ConcentricProgressRingView_ExampleTests.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Target Support Files/Pods-ConcentricProgressRingView_ExampleTests/Pods-ConcentricProgressRingView_ExampleTests.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ConcentricProgressRingView_ExampleTests/Pods-ConcentricProgressRingView_ExampleTests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Target Support Files/Pods-ConcentricProgressRingView_ExampleTests/Pods-ConcentricProgressRingView_ExampleTests.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Quick/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Target Support Files/Quick/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Quick/Quick-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Target Support Files/Quick/Quick-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Quick/Quick-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Target Support Files/Quick/Quick-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Quick/Quick-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Target Support Files/Quick/Quick-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Quick/Quick-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Target Support Files/Quick/Quick-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Quick/Quick.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Target Support Files/Quick/Quick.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Quick/Quick.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Example/Pods/Target Support Files/Quick/Quick.xcconfig -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/Makefile -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/README.md -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj -------------------------------------------------------------------------------- /animation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/animation.gif -------------------------------------------------------------------------------- /docs/Classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/docs/Classes.html -------------------------------------------------------------------------------- /docs/Classes/CircleLayer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/docs/Classes/CircleLayer.html -------------------------------------------------------------------------------- /docs/Classes/ConcentricProgressRingView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/docs/Classes/ConcentricProgressRingView.html -------------------------------------------------------------------------------- /docs/Classes/ProgressRingLayer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/docs/Classes/ProgressRingLayer.html -------------------------------------------------------------------------------- /docs/Structs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/docs/Structs.html -------------------------------------------------------------------------------- /docs/Structs/ProgressRing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/docs/Structs/ProgressRing.html -------------------------------------------------------------------------------- /docs/badge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/docs/badge.svg -------------------------------------------------------------------------------- /docs/css/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/docs/css/highlight.css -------------------------------------------------------------------------------- /docs/css/jazzy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/docs/css/jazzy.css -------------------------------------------------------------------------------- /docs/docsets/ConcentricProgressRingView.docset/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/docs/docsets/ConcentricProgressRingView.docset/Contents/Info.plist -------------------------------------------------------------------------------- /docs/docsets/ConcentricProgressRingView.docset/Contents/Resources/Documents/Classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/docs/docsets/ConcentricProgressRingView.docset/Contents/Resources/Documents/Classes.html -------------------------------------------------------------------------------- /docs/docsets/ConcentricProgressRingView.docset/Contents/Resources/Documents/Classes/CircleLayer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/docs/docsets/ConcentricProgressRingView.docset/Contents/Resources/Documents/Classes/CircleLayer.html -------------------------------------------------------------------------------- /docs/docsets/ConcentricProgressRingView.docset/Contents/Resources/Documents/Classes/ConcentricProgressRingView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/docs/docsets/ConcentricProgressRingView.docset/Contents/Resources/Documents/Classes/ConcentricProgressRingView.html -------------------------------------------------------------------------------- /docs/docsets/ConcentricProgressRingView.docset/Contents/Resources/Documents/Classes/ProgressRingLayer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/docs/docsets/ConcentricProgressRingView.docset/Contents/Resources/Documents/Classes/ProgressRingLayer.html -------------------------------------------------------------------------------- /docs/docsets/ConcentricProgressRingView.docset/Contents/Resources/Documents/Structs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/docs/docsets/ConcentricProgressRingView.docset/Contents/Resources/Documents/Structs.html -------------------------------------------------------------------------------- /docs/docsets/ConcentricProgressRingView.docset/Contents/Resources/Documents/Structs/ProgressRing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/docs/docsets/ConcentricProgressRingView.docset/Contents/Resources/Documents/Structs/ProgressRing.html -------------------------------------------------------------------------------- /docs/docsets/ConcentricProgressRingView.docset/Contents/Resources/Documents/css/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/docs/docsets/ConcentricProgressRingView.docset/Contents/Resources/Documents/css/highlight.css -------------------------------------------------------------------------------- /docs/docsets/ConcentricProgressRingView.docset/Contents/Resources/Documents/css/jazzy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/docs/docsets/ConcentricProgressRingView.docset/Contents/Resources/Documents/css/jazzy.css -------------------------------------------------------------------------------- /docs/docsets/ConcentricProgressRingView.docset/Contents/Resources/Documents/img/carat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/docs/docsets/ConcentricProgressRingView.docset/Contents/Resources/Documents/img/carat.png -------------------------------------------------------------------------------- /docs/docsets/ConcentricProgressRingView.docset/Contents/Resources/Documents/img/dash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/docs/docsets/ConcentricProgressRingView.docset/Contents/Resources/Documents/img/dash.png -------------------------------------------------------------------------------- /docs/docsets/ConcentricProgressRingView.docset/Contents/Resources/Documents/img/gh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/docs/docsets/ConcentricProgressRingView.docset/Contents/Resources/Documents/img/gh.png -------------------------------------------------------------------------------- /docs/docsets/ConcentricProgressRingView.docset/Contents/Resources/Documents/img/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/docs/docsets/ConcentricProgressRingView.docset/Contents/Resources/Documents/img/spinner.gif -------------------------------------------------------------------------------- /docs/docsets/ConcentricProgressRingView.docset/Contents/Resources/Documents/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/docs/docsets/ConcentricProgressRingView.docset/Contents/Resources/Documents/index.html -------------------------------------------------------------------------------- /docs/docsets/ConcentricProgressRingView.docset/Contents/Resources/Documents/js/jazzy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/docs/docsets/ConcentricProgressRingView.docset/Contents/Resources/Documents/js/jazzy.js -------------------------------------------------------------------------------- /docs/docsets/ConcentricProgressRingView.docset/Contents/Resources/Documents/js/jazzy.search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/docs/docsets/ConcentricProgressRingView.docset/Contents/Resources/Documents/js/jazzy.search.js -------------------------------------------------------------------------------- /docs/docsets/ConcentricProgressRingView.docset/Contents/Resources/Documents/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/docs/docsets/ConcentricProgressRingView.docset/Contents/Resources/Documents/js/jquery.min.js -------------------------------------------------------------------------------- /docs/docsets/ConcentricProgressRingView.docset/Contents/Resources/Documents/js/lunr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/docs/docsets/ConcentricProgressRingView.docset/Contents/Resources/Documents/js/lunr.min.js -------------------------------------------------------------------------------- /docs/docsets/ConcentricProgressRingView.docset/Contents/Resources/Documents/js/typeahead.jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/docs/docsets/ConcentricProgressRingView.docset/Contents/Resources/Documents/js/typeahead.jquery.js -------------------------------------------------------------------------------- /docs/docsets/ConcentricProgressRingView.docset/Contents/Resources/Documents/search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/docs/docsets/ConcentricProgressRingView.docset/Contents/Resources/Documents/search.json -------------------------------------------------------------------------------- /docs/docsets/ConcentricProgressRingView.docset/Contents/Resources/docSet.dsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/docs/docsets/ConcentricProgressRingView.docset/Contents/Resources/docSet.dsidx -------------------------------------------------------------------------------- /docs/docsets/ConcentricProgressRingView.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/docs/docsets/ConcentricProgressRingView.tgz -------------------------------------------------------------------------------- /docs/filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/docs/filelist -------------------------------------------------------------------------------- /docs/filelist-local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/docs/filelist-local -------------------------------------------------------------------------------- /docs/filelist-local-md5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/docs/filelist-local-md5 -------------------------------------------------------------------------------- /docs/filelist-md5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/docs/filelist-md5 -------------------------------------------------------------------------------- /docs/img/carat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/docs/img/carat.png -------------------------------------------------------------------------------- /docs/img/dash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/docs/img/dash.png -------------------------------------------------------------------------------- /docs/img/gh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/docs/img/gh.png -------------------------------------------------------------------------------- /docs/img/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/docs/img/spinner.gif -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/js/jazzy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/docs/js/jazzy.js -------------------------------------------------------------------------------- /docs/js/jazzy.search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/docs/js/jazzy.search.js -------------------------------------------------------------------------------- /docs/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/docs/js/jquery.min.js -------------------------------------------------------------------------------- /docs/js/lunr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/docs/js/lunr.min.js -------------------------------------------------------------------------------- /docs/js/typeahead.jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/docs/js/typeahead.jquery.js -------------------------------------------------------------------------------- /docs/search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/docs/search.json -------------------------------------------------------------------------------- /docs/undocumented.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/docs/undocumented.json -------------------------------------------------------------------------------- /example1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/example1.png -------------------------------------------------------------------------------- /example2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/example2.png -------------------------------------------------------------------------------- /example3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/example3.png -------------------------------------------------------------------------------- /meta/header.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/meta/header.sketch -------------------------------------------------------------------------------- /meta/repo-banner-bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/meta/repo-banner-bottom.png -------------------------------------------------------------------------------- /meta/repo-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionheart/ConcentricProgressRingView/HEAD/meta/repo-banner.png --------------------------------------------------------------------------------