- Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathSQTimerLabel.podspec
More file actions
Latest commit
22 lines (15 loc) · 972 Bytes
/
Copy pathSQTimerLabel.podspec
File metadata and controls
22 lines (15 loc) · 972 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Pod::Spec.newdo |s|
s.name="SQTimerLabel"
s.version="0.0.3"
s.summary="A handy class to use UILabel as a countdown timer or stopwatch just like in Apple Clock App."
s.description="SQTimerLabel is a UILabel subclass, which is a handy way to use UILabel as a countdown timer or stopwatch just like that in Apple Clock App with just 2 lines of code. SQTimerLabel also provides delegate method for you to define the action when the timer finished."
s.homepage="https://github.com/semnyqu/SQTimerLabel"
s.license={:type=>'MIT',:file=>'LICENSE'}
s.author={"semnyqu"=>"semny.qu@gmail.com"}
s.ios.deployment_target='8.0'
#s.tvos.deployment_target = '9.0'
s.source={:git=>"https://github.com/semnyqu/SQTimerLabel.git",:tag=>s.version.to_s}
s.source_files='Classes','SQTimerLabel/*.{h,m}'
s.exclude_files='Classes/Exclude'
s.requires_arc=true
end