forked from mineschan/MZTimerLabel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
MZTimerLabel.podspec
23 lines (16 loc) · 1.06 KB
/
MZTimerLabel.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Pod::Spec.new do |s|
s.name = "MZTimerLabel"
s.version = "0.5.4"
s.summary = "A handy class to use UILabel as a countdown timer or stopwatch just like in Apple Clock App."
s.description = "MZTimerLabel 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. MZTimerLabel also provides delegate method for you to define the action when the timer finished."
s.homepage = "https://github.com/mineschan/MZTimerLabel"
s.screenshots = "https://raw.githubusercontent.com/mineschan/MZTimerLabel/master/MZTimerLabel_Demo.png"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { "MineS Chan" => "[email protected]" }
s.ios.deployment_target = '6.0'
s.tvos.deployment_target = '9.0'
s.source = { :git => "https://github.com/mineschan/MZTimerLabel.git", :tag => s.version.to_s }
s.source_files = 'Classes', 'MZTimerLabel/*.{h,m}'
s.exclude_files = 'Classes/Exclude'
s.requires_arc = true
end