Skip to content
This repository was archived by the owner on Jun 22, 2021. It is now read-only.

Commit fc5ad72

Browse files
committed
Add podspec.
1 parent 17ab0ff commit fc5ad72

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

AMXFontAutoScale.podspec

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
2+
Pod::Spec.new do |s|
3+
4+
s.name = "AMXFontAutoScale"
5+
s.version = "1.0.0"
6+
s.summary = "Scale the font for UILabel and UITextView proportionally across all the screen sizes."
7+
8+
s.description = <<-DESC
9+
Scale the font for UILabel and UITextView proportionally across all the screen sizes. Just define the screen size to be used as reference for scaling and the library will update all the instances of the UILabel and UITextView automatically.
10+
DESC
11+
12+
13+
s.homepage = "https://github.com/alexmx/AMXFontAutoScale"
14+
s.license = "MIT"
15+
s.authors = { "Alex Maimescu" => "maimescu.alex@gmail.com" }
16+
17+
s.platform = :ios
18+
s.ios.deployment_target = '9.0'
19+
20+
s.source = { :git => "https://github.com/alexmx/AMXFontAutoScale.git", :tag => "v#{s.version}" }
21+
s.source_files = "AMXFontAutoScale/**/*.{h,m,swift}"
22+
23+
end

0 commit comments

Comments
 (0)