This repository has been archived by the owner on Aug 29, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 103
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b170c6c
commit 208bc04
Showing
1 changed file
with
6 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
Pod::Spec.new do |s| | ||
s.name = "FontBlaster" | ||
s.version = "4.0.2" | ||
s.version = "4.0.3" | ||
s.summary = "Programmatically load custom fonts into your iOS app." | ||
|
||
s.description = <<-DESC | ||
|
@@ -11,9 +11,12 @@ Say goodbye to importing custom fonts via property lists as **FontBlaster** auto | |
s.homepage = "https://github.com/ArtSabintsev/FontBlaster" | ||
s.license = "MIT" | ||
s.authors = { "Arthur Ariel Sabintsev" => "[email protected]"} | ||
s.platform = :ios, "8.0" | ||
s.platform = :tvos, "9.0" | ||
s.source = { :git => "https://github.com/ArtSabintsev/FontBlaster.git", :tag => s.version.to_s } | ||
s.source_files = 'Sources/' | ||
s.requires_arc = true | ||
|
||
# Deployment Targets | ||
s.ios.deployment_target = "8.0" | ||
s.tvos.deployment_target = "9.0" | ||
|
||
end |