forked from Triggertrap/TTCounterLabel
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTTCounterLabel.podspec
More file actions
15 lines (15 loc) · 1.2 KB
/
Copy pathTTCounterLabel.podspec
File metadata and controls
15 lines (15 loc) · 1.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Pod::Spec.new do |s|
s.name = "TTCounterLabel"
s.version = "1.0.3"
s.summary = "A custom UILabel that acts a time counter, counting up or down and formatting the string to hours, minutes, seconds and milliseconds."
s.description = "This CocoaPod is designed to accept a value in milliseconds that is then displayed it in a time friendly format. Currently the controls supports up-to a maximum value of 99 hours 59 minutes 59 seconds and 999 milliseconds, which should be enough for most uses. The control automatically removes any leading zeros and centralises the result. It also supports different fonts for each unit division."
s.homepage = "https://github.com/TriggerTrap/TTCounterLabel"
s.screenshots = "https://github.com/TriggerTrap/TTCounterLabel/screenshot.PNG"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.authors = { "Triggertrap Ltd" => "support@triggertrap.com", "Ross Gibson" => "ross@triggertrap.com" }
s.platform = :ios, '6.0'
s.source = { :git => "https://github.com/TriggerTrap/TTCounterLabel.git", :tag => "1.0.3" }
s.source_files = 'Source', 'Source/**/*.{h,m}'
s.requires_arc = true
s.dependency 'TTTAttributedLabel', '~> 1.7.1'
end