This repository was archived by the owner on Jul 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathFTFontSelector.podspec
More file actions
26 lines (25 loc) · 1.5 KB
/
FTFontSelector.podspec
File metadata and controls
26 lines (25 loc) · 1.5 KB
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
Pod::Spec.new do |s|
s.name = 'FTFontSelector'
s.version = '1.1.3'
s.summary = 'A clone of the font selector found in Apple’s iOS Pages app.'
s.description = <<-DESC
FTFontSelector implements a clone of the font selector that
can be found in Apple’s iOS Pages application.
**Note**: For now it targets the current iOS 6 look, because
we won’t know what Apple’s version in iOS 7 will look like yet.
DESC
s.license = 'MIT'
s.author = { 'Eloy Durán' => 'eloy.de.enige@gmail.com' }
s.homepage = 'https://github.com/Fingertips/FTFontSelector'
s.screenshots = 'raw.github.com/Fingertips/FTFontSelector/master/Project/Screenshots/iPhone%20Font%20Families.png',
'raw.github.com/Fingertips/FTFontSelector/master/Project/Screenshots/iPhone%20Font%20Family%20Members.png',
'raw.github.com/Fingertips/FTFontSelector/master/Project/Screenshots/iPad%20Font%20Families%20Small.png',
'raw.github.com/Fingertips/FTFontSelector/master/Project/Screenshots/iPad%20Font%20Family%20Members%20Small.png'
s.source = { :git => 'https://github.com/Fingertips/FTFontSelector.git', :tag => s.version.to_s }
s.platform = :ios, '5.0'
s.requires_arc = true
s.frameworks = 'CoreText'
s.source_files = 'Classes', 'Classes/Private'
s.resource = 'Assets/FTFontSelector.bundle'
s.public_header_files = 'Classes/*.h'
end