forked from vinted/VGHtmlParser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathVGHtmlParser.podspec
More file actions
21 lines (20 loc) · 933 Bytes
/
VGHtmlParser.podspec
File metadata and controls
21 lines (20 loc) · 933 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Pod::Spec.new do |s|
s.name = "VGHtmlParser"
s.version = "0.1.3"
s.summary = "Simple HTML to NSAttributedString parser. Based on hpple"
s.description = <<-DESC
HTML to NSAttributeString parser
The idea behind is to have fast and customizable HTML to NSAttributedString parser.
Project is based on **hpple** library. See: https://github.com/topfunky/hpple.
DESC
s.homepage = "https://github.com/dynbit/VGHtmlParser"
s.license = "MIT"
s.author = { "Vytautas Galaunia" => "vytautas.galaunia@gmail.com" }
s.social_media_url = "http://twitter.com/dynbit"
s.platform = :ios, "7.0"
s.source = { :git => "https://github.com/dynbit/VGHtmlParser.git", :tag => "0.1.1" }
s.source_files = "Pod/Classes", "Pod/Classes/**/*.{h,m}"
s.exclude_files = "Classes/Exclude"
s.requires_arc = true
# s.dependency "hpple", "~>0.3.0"
end