-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathTypographyKit.podspec
More file actions
17 lines (17 loc) · 918 Bytes
/
TypographyKit.podspec
File metadata and controls
17 lines (17 loc) · 918 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Pod::Spec.new do |s|
s.name = 'TypographyKit'
s.version = '6.0.1'
s.swift_version = '5.0'
s.summary = 'Consistent & accessible visual styling on iOS with support for Dynamic Type'
s.description = <<-DESC
TypographyKit makes it easy to define typography styles in your iOS app helping you achieve visual consistency in your design as well as supporting Dynamic Type even where using custom fonts.
DESC
s.homepage = 'https://github.com/rwbutler/TypographyKit'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'rwbutler' => 'github@rwbutler.com' }
s.source = { :git => 'https://github.com/rwbutler/TypographyKit.git', :tag => s.version.to_s }
s.ios.deployment_target = '12.0'
s.source_files = 'TypographyKit/Classes/**/*'
s.weak_frameworks = 'SwiftUI'
s.dependency 'LetterCase'
end