gitextract_36t2c59r/ ├── .gitignore ├── .travis.yml ├── Example/ │ ├── MBCircularProgressBar/ │ │ ├── Images.xcassets/ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ └── Contents.json │ │ │ └── LaunchImage.launchimage/ │ │ │ └── Contents.json │ │ ├── Launch Screen.storyboard │ │ ├── MBAppDelegate.h │ │ ├── MBAppDelegate.m │ │ ├── MBCircularProgressBar-Info.plist │ │ ├── MBCircularProgressBar-Prefix.pch │ │ ├── MBViewController.h │ │ ├── MBViewController.m │ │ ├── Main.storyboard │ │ ├── en.lproj/ │ │ │ └── InfoPlist.strings │ │ └── main.m │ ├── MBCircularProgressBar.xcodeproj/ │ │ ├── project.pbxproj │ │ └── xcshareddata/ │ │ └── xcschemes/ │ │ └── MBCircularProgressBar-Example.xcscheme │ ├── MBCircularProgressBar.xcworkspace/ │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata/ │ │ └── MBCircularProgressBar.xcscmblueprint │ ├── Podfile │ ├── Pods/ │ │ ├── Local Podspecs/ │ │ │ └── MBCircularProgressBar.podspec.json │ │ ├── Pods.xcodeproj/ │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata/ │ │ │ └── xcschemes/ │ │ │ └── MBCircularProgressBar.xcscheme │ │ └── Target Support Files/ │ │ ├── MBCircularProgressBar/ │ │ │ ├── Info.plist │ │ │ ├── MBCircularProgressBar-dummy.m │ │ │ ├── MBCircularProgressBar-prefix.pch │ │ │ ├── MBCircularProgressBar-umbrella.h │ │ │ ├── MBCircularProgressBar.modulemap │ │ │ ├── MBCircularProgressBar.xcconfig │ │ │ └── ResourceBundle-MBCircularProgressBar-Info.plist │ │ ├── Pods-MBCircularProgressBar_Example/ │ │ │ ├── Info.plist │ │ │ ├── Pods-MBCircularProgressBar_Example-acknowledgements.markdown │ │ │ ├── Pods-MBCircularProgressBar_Example-acknowledgements.plist │ │ │ ├── Pods-MBCircularProgressBar_Example-dummy.m │ │ │ ├── Pods-MBCircularProgressBar_Example-frameworks.sh │ │ │ ├── Pods-MBCircularProgressBar_Example-resources.sh │ │ │ ├── Pods-MBCircularProgressBar_Example-umbrella.h │ │ │ ├── Pods-MBCircularProgressBar_Example.debug.xcconfig │ │ │ ├── Pods-MBCircularProgressBar_Example.modulemap │ │ │ └── Pods-MBCircularProgressBar_Example.release.xcconfig │ │ └── Pods-MBCircularProgressBar_Tests/ │ │ ├── Info.plist │ │ ├── Pods-MBCircularProgressBar_Tests-acknowledgements.markdown │ │ ├── Pods-MBCircularProgressBar_Tests-acknowledgements.plist │ │ ├── Pods-MBCircularProgressBar_Tests-dummy.m │ │ ├── Pods-MBCircularProgressBar_Tests-frameworks.sh │ │ ├── Pods-MBCircularProgressBar_Tests-resources.sh │ │ ├── Pods-MBCircularProgressBar_Tests-umbrella.h │ │ ├── Pods-MBCircularProgressBar_Tests.debug.xcconfig │ │ ├── Pods-MBCircularProgressBar_Tests.modulemap │ │ └── Pods-MBCircularProgressBar_Tests.release.xcconfig │ └── Tests/ │ ├── Tests-Info.plist │ ├── Tests-Prefix.pch │ ├── Tests.m │ └── en.lproj/ │ └── InfoPlist.strings ├── LICENSE ├── MBCircularProgressBar.podspec ├── Pod/ │ ├── Assets/ │ │ └── .gitkeep │ └── Classes/ │ ├── .gitkeep │ ├── MBCircularProgressBarLayer.h │ ├── MBCircularProgressBarLayer.m │ ├── MBCircularProgressBarView.h │ └── MBCircularProgressBarView.m └── README.md