-
Notifications
You must be signed in to change notification settings - Fork 4
/
JBCoundownLabel.podspec
24 lines (18 loc) · 1.01 KB
/
JBCoundownLabel.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
Pod::Spec.new do |s|
s.name = "JBCoundownLabel"
s.version = "0.0.2"
s.summary = "A UILabel subclass that displays a countdown"
s.platform = :ios
s.ios.deployment_target = "6.0"
s.description = <<-DESC
JBCountdownLabel is UILabel subclass that displays a countdown with a defined amount of seconds. So you can customise the label just like a native `UILabel` and add some cool actions
DESC
s.homepage = "https://github.com/jberlana/JBCoundownLabel"
s.screenshots = "https://raw.githubusercontent.com/jberlana/JBCoundownLabel/master/demo.gif"
s.license = "MIT"
s.author = { "Javier Berlana" => "jberlana@gmail.com" }
s.social_media_url = "http://twitter.com/jberlana"
s.source = { :git => "https://github.com/jberlana/JBCoundownLabel.git", :tag => "0.0.2" }
s.source_files = "JBCoundownLabelSampleProject/JBCountdownLabel.h", "JBCoundownLabelSampleProject/JBCountdownLabel.m"
s.requires_arc = true
end