ClockWise is a lightweight Swift utilities
This is a collection of utilities I used in many projects, the Simplified suite of products and code bases for iOS.
Generality: the classes and functions should be general-purpose enough to be used independently of the product they are used in. Absolutely no third party dependencies: we want to be able to use this module anywhere without any additional requirements. Testability: every utility should be easily unit-testable.
- Getting Started
- How it works "Usage"
- Exmple
- Supported OS & SDK Versions
- Versioning
- TODO
- Contributing
- CHANGELOG
- Related Projects
- Author
- License
ClockWise is available through CocoaPods. To install it, simply add the following line to your Podfile:
pod 'ClockWise'https://cocoapods.org/pods/ClockWise
The Swift Package Manager is a tool for automating the distribution of Swift code and is integrated into the swift compiler. To integrate using Apple's Swift package manager from xcode :
File -> Swift Packages -> Add Package Dependency...
enter package URL : https://github.com/amrangry/ClockWise.git , choose the latest release
To install manually the ClockWise classes in your app, just drag the Source class files (demo files and assets are not needed) into your project.
Add content of folder Source/* to your project
- Import
ClockWisemodule to yourSwiftclass
import ClockWise- Enjoy
To run the example project, clone the repo, and run pod install from the Example directory first.
- Supported build target - iOS 10.0 and later (Xcode 11.x)
this project adheres to Semantic versioning
Given a version number MAJOR.MINOR.PATCH, increment the:
- MAJOR version when you make incompatible API changes,
- MINOR version when you add functionality in a backwards compatible manner, and
- PATCH version when you make backwards compatible bug fixes.
- Segregate UIKit & Foundation
- CI/CD
- More test test test ... (and example)
We alway welcome your contributions π
- Fork (https://github.com/amrangry/ClockWise) π
- Create a feature branch β
- Run test suite with the
$ make testcommand and confirm that it passes β‘ - Commit your changes π
- Rebase your local changes against the
masterbranch π‘ - Create new Pull Request π
Bugs, feature requests and comments are more than welcome in the issues.
I would like to make ClockWise a better tool.
The goal is to be able to use in various projects.
Therefore, your feedback is very useful.
I am very happy to tell you your opinions on Issues and PR β€οΈ
See CHANGELOG.md
Weβd be really happy if you sent us links to your projects where you use our component. Just send an email to [email protected] And do let us know if you have any questions or suggestion regards.
AmrAngry, [email protected]
ClockWise is available under the MIT license. See the LICENSE file for more info.

