forked from chris124/Core-Text-Label
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCoreTextCustomLabel.podspec
31 lines (18 loc) · 1004 Bytes
/
CoreTextCustomLabel.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
25
26
27
28
29
30
31
Pod::Spec.new do |s|
s.name = "CoreTextCustomLabel"
s.version = "0.1.0"
s.summary = "An iOS library that lets you get started rendering basic Core Text in your apps."
s.description = <<-DESC
An iOS library that lets you get started rendering basic Core Text in your apps. It's essentially a subclass of UILabel that allows you to set kerning, line height, & multiple fonts.
DESC
s.homepage = "https://github.com/rhaining/Core-Text-Label"
# s.screenshots = "www.example.com/screenshots_1.gif", "www.example.com/screenshots_2.gif"
s.license = "Apache License, Version 2.0"
s.author = "Robert Haining"
s.social_media_url = "http://twitter.com/tolar"
s.platform = :ios, "6.0"
s.source = { :git => "[email protected]:rhaining/Core-Text-Label.git", :tag => "0.1.0" }
s.source_files = "src", "src/**/*.{h,m}"
s.frameworks = "CoreText", "UIKit", "Foundation", "CoreGraphics"
s.requires_arc = true
end