-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUIDefaultFont.podspec
More file actions
18 lines (18 loc) · 911 Bytes
/
UIDefaultFont.podspec
File metadata and controls
18 lines (18 loc) · 911 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Pod::Spec.new do |s|
s.name = "UIDefaultFont"
s.version = "1.0.0"
s.summary = "Replace the system font in the whole app easily"
s.description = <<-DESC
Replace the system font in the whole app easily.
This micro libray is simply just a swizzle of the default UIFont method, regarding system font.
We UIDefaultFont you can replace the default system font with a couple of lines.
DESC
s.homepage = "https://github.com/gaelfoppolo/UIDefaultFont"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Gaël Foppolo" => "me@gaelfoppolo.com" }
s.social_media_url = "http://twitter.com/gaelugio"
s.ios.deployment_target = "10.0"
s.source = { :git => "https://github.com/gaelfoppolo/UIDefaultFont.git", :tag => s.version.to_s }
s.source_files = "Sources/**/*"
s.documentation_url = "https://gaelfoppolo.github.io/UIDefaultFont"
end