-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
19 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,8 @@ | ||
# Rotaing Counter [![Build Status](https://app.bitrise.io/app/c0cedd694928dafb/status.svg?token=_0H2cCogaF8wifMani0seQ&branch=master)](https://app.bitrise.io/app/c0cedd694928dafb) [![Carthage compatible](https://img.shields.io/badge/Carthage-compatible-4BC51D.svg?style=flat)](https://github.com/Carthage/Carthage) [![SPM supported](https://img.shields.io/badge/SPM-supported-DE5C43.svg?style=flat)](https://swift.org/package-manager) | ||
# Rotaing Counter | ||
|
||
[![Build Status](https://app.bitrise.io/app/c0cedd694928dafb/status.svg?token=_0H2cCogaF8wifMani0seQ&branch=master)](https://app.bitrise.io/app/c0cedd694928dafb) | ||
[![Carthage compatible](https://img.shields.io/badge/Carthage-compatible-4BC51D.svg?style=flat)](https://github.com/Carthage/Carthage) | ||
[![SPM supported](https://img.shields.io/badge/SPM-supported-DE5C43.svg?style=flat)](https://swift.org/package-manager) | ||
[![Version](https://img.shields.io/cocoapods/v/RotatingCounter.svg?style=flat)](http://cocoadocs.org/docsets/RotatingCounter) | ||
|
||
https://user-images.githubusercontent.com/1713261/123983415-ce3da880-d9fe-11eb-835b-974a81ab75c9.mp4 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
Pod::Spec.new do |spec| | ||
spec.name = "RotatingCounter" | ||
spec.version = "0.2.0" | ||
spec.summary = "A view to display number counting up and down with rotating animation" | ||
spec.homepage = "https://github.com/kiyot/RotatingCounter" | ||
spec.license = { :type => "MIT", :file => "LICENSE" } | ||
spec.author = { "Kiyotaka Sasaya" => "[email protected]" } | ||
spec.swift_version = "5.0" | ||
spec.platform = :ios, "10.0" | ||
spec.source = { :git => "https://github.com/kiyot/RotatingCounter.git", :tag => "#{spec.version}" } | ||
spec.source_files = "RotatingCounter/**/*.{h,swift}" | ||
spec.framework = "UIKit" | ||
end |