-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathSFAttributedStringSwift.podspec
More file actions
17 lines (16 loc) · 712 Bytes
/
SFAttributedStringSwift.podspec
File metadata and controls
17 lines (16 loc) · 712 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 = "SFAttributedStringSwift"
s.version = "1.0.1"
s.summary = "This is by far the most leveraged way to output `NSAttributedString`."
s.homepage = "https://github.com/Meterwhite/SFAttributedString"
s.license = "MIT"
s.author = { "Meterwhite" => "meterwhite@outlook.com" }
s.source = { :git => "https://github.com/Meterwhite/SFAttributedString.git", :tag => s.version.to_s }
s.source_files = "SWIFT/SFAttributedString/*.swift"
s.requires_arc = true
s.swift_version = '5.0'
s.module_name = 'SFAttributedString'
s.framework = "UIKit"
s.ios.deployment_target = "8.0"
s.tvos.deployment_target = "9.0"
end