forked from tbaranes/FittableFontLabel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
FittableFontLabel.podspec
21 lines (16 loc) · 1.19 KB
/
FittableFontLabel.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Pod::Spec.new do |s|
# ――― Spec Metadata ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.name = "FittableFontLabel"
s.module_name = "FittableFontLabel"
s.version = "1.0.1"
s.summary = "UILabel (extension) that adjust the font size to fit a rect (width and height)."
s.description = "UILabel (extension or subclass) that adjust the font size to fit a frame: width and height if multilines, width only if single lines"
s.homepage = "https://github.com/tbaranes/FittableFontLabel"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Tom Baranes" => "[email protected]" }
s.source = { :git => "https://github.com/tbaranes/FittableFontLabel.git", :tag => "#{s.version}" }
# ――― Spec tech ――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.ios.deployment_target = '8.0'
s.requires_arc = true
s.source_files = 'Source/*.swift'
end