forked from ArtSabintsev/FontBlaster
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFontBlaster.podspec
More file actions
executable file
·26 lines (22 loc) · 861 Bytes
/
Copy pathFontBlaster.podspec
File metadata and controls
executable file
·26 lines (22 loc) · 861 Bytes
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|
# Version
s.version = "5.2.0"
s.swift_version = "5.3"
# Meta
s.name = "FontBlaster"
s.summary = "Programmatically load custom fonts into your iOS app."
s.homepage = "https://github.com/ArtSabintsev/FontBlaster"
s.license = "MIT"
s.authors = { "Arthur Ariel Sabintsev" => "arthur@sabintsev.com"}
s.description = <<-DESC
Say goodbye to importing custom fonts via property lists as **FontBlaster** automatically imports and loads all fonts in your app's Bundle/NSBundle with one line of code.
DESC
# Deployment Targets
s.ios.deployment_target = "11.0"
s.osx.deployment_target = "10.10"
s.tvos.deployment_target = "11.0"
# Sources
s.source = { :git => "https://github.com/ArtSabintsev/FontBlaster.git", :tag => s.version.to_s }
s.source_files = 'Sources/'
s.requires_arc = true
end