-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNSAttributedStringBuilder-jaeilers.podspec
More file actions
31 lines (22 loc) · 1.2 KB
/
NSAttributedStringBuilder-jaeilers.podspec
File metadata and controls
31 lines (22 loc) · 1.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
Pod::Spec.new do |spec|
spec.name = "NSAttributedStringBuilder-jaeilers"
spec.module_name = "NSAttributedStringBuilder"
spec.version = "0.4.0"
spec.summary = "An easy to use NSAttributedString builder with extended modifier support (bold, italic, image, custom spacings etc.)"
spec.description = <<-DESC
The `NSAttributedStringBuilder` is an easy to use attributed string builder with extended modifier support (bold/italic, image, custom spacings etc.) that supports most platforms and can be extended easily.
DESC
spec.homepage = "https://github.com/jaeilers/NSAttributedStringBuilder"
spec.license = { :type => "MIT", :file => "LICENSE.md" }
spec.author = "Jasmin Eilers"
spec.ios.deployment_target = "13.0"
spec.osx.deployment_target = "11.0"
spec.watchos.deployment_target = "6.0"
spec.tvos.deployment_target = "13.0"
spec.source = { :git => "https://github.com/jaeilers/NSAttributedStringBuilder.git", :tag => "#{spec.version}" }
spec.source_files = "Sources/**/*.swift"
spec.resource_bundle = {
"NSAttributedStringBuilder-jaeilers" => ["Sources/NSAttributedStringBuilder/PrivacyInfo.xcprivacy"]
}
spec.swift_version = "5.8"
end