-
Notifications
You must be signed in to change notification settings - Fork 69
/
HTMLString.podspec
24 lines (20 loc) · 1.13 KB
/
HTMLString.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
Pod::Spec.new do |s|
s.name = "HTMLString"
s.version = "6.0.1"
s.summary = "Escape and unescape HTML entities in Swift"
s.description = <<-DESC
HTMLString is a fast library written in Swift that enables your program to add and remove HTML entities in Strings. It supports both ASCII and Unicode. You can use it with 2125 named (`&`), decimal (`€`) and hexadecimal (`🙃`) entities. It has native support for Swift's Extended Grapheme Clusters. Fully unit tested and documented.
DESC
s.homepage = "https://github.com/alexaubry/HTMLString"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Alexis Aubry" => "[email protected]" }
s.social_media_url = "https://twitter.com/_alexaubry"
s.ios.deployment_target = "9.0"
s.osx.deployment_target = "10.10"
s.watchos.deployment_target = "2.0"
s.tvos.deployment_target = "9.0"
s.source = { :git => "https://github.com/alexaubry/HTMLString.git", :tag => "#{s.version}" }
s.source_files = "Sources/HTMLString/*.swift"
s.documentation_url = "https://alexaubry.github.io/HTMLString/"
s.swift_version = "5.0"
end