forked from alexaubry/HTMLString
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHTMLString.podspec
More file actions
27 lines (19 loc) · 1.04 KB
/
HTMLString.podspec
File metadata and controls
27 lines (19 loc) · 1.04 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
Pod::Spec.new do |s|
s.name = "HTMLString"
s.version = "1.0.1"
s.summary = "Deal with Strings that contains HTML in Swift"
s.description = <<-DESC
`HTMLString` is a micro-library written in Swift that enables your app to deal with Strings that contain HTML. It supports ASCII and Unicode Escaping, Unescaping. You can use it with 2125 named escape sequences (`&`) as well as with decimal (`€`) and hexadecimal (`🙃`) sequences.
DESC
s.homepage = "https://github.com/alexaubry/HTMLString"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Alexis Aubry Radanovic" => "aleks@alexis-aubry-radanovic.me" }
s.social_media_url = "http://twitter.com/leksantoine"
s.ios.deployment_target = "8.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"
s.framework = "Foundation"
end