-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathStyledText.podspec
16 lines (16 loc) · 1005 Bytes
/
StyledText.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Pod::Spec.new do |s|
s.name = 'StyledText'
s.version = '1.4.0'
s.summary = 'Declarative text styles and simple Dynamic Type support for iOS'
s.description = <<-DESC
StyledText is a library that simplifies styling dynamic text in iOS applications. Instead of having to use attributed strings every time you need to update text, you can declaratively set a text style on your labels. When the text of the label is updated, the label uses the preset style.
DESC
s.homepage = 'https://github.com/blueapron/styled-text'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'huebnerob' => '[email protected]' }
s.source = { :git => 'https://github.com/blueapron/styled-text.git', :tag => 'v' + s.version.to_s }
s.ios.deployment_target = '12.0'
s.swift_version = '5.7'
s.source_files = 'Sources/StyledText/Classes/**/*'
s.frameworks = 'UIKit'
end