From fc5ad729e1e6bb5921d140750a9505caf18ee8d5 Mon Sep 17 00:00:00 2001 From: Alex Maimescu Date: Sat, 1 Apr 2017 01:23:03 +0100 Subject: [PATCH] Add podspec. --- AMXFontAutoScale.podspec | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 AMXFontAutoScale.podspec diff --git a/AMXFontAutoScale.podspec b/AMXFontAutoScale.podspec new file mode 100644 index 0000000..0627a53 --- /dev/null +++ b/AMXFontAutoScale.podspec @@ -0,0 +1,23 @@ + +Pod::Spec.new do |s| + + s.name = "AMXFontAutoScale" + s.version = "1.0.0" + s.summary = "Scale the font for UILabel and UITextView proportionally across all the screen sizes." + + s.description = <<-DESC + 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. + DESC + + + s.homepage = "https://github.com/alexmx/AMXFontAutoScale" + s.license = "MIT" + s.authors = { "Alex Maimescu" => "maimescu.alex@gmail.com" } + + s.platform = :ios + s.ios.deployment_target = '9.0' + + s.source = { :git => "https://github.com/alexmx/AMXFontAutoScale.git", :tag => "v#{s.version}" } + s.source_files = "AMXFontAutoScale/**/*.{h,m,swift}" + +end \ No newline at end of file