- Notifications
You must be signed in to change notification settings - Fork 70
Expand file tree
/
Copy pathHTMLReader.podspec
More file actions
Latest commit
16 lines (15 loc) · 694 Bytes
/
Copy pathHTMLReader.podspec
File metadata and controls
16 lines (15 loc) · 694 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Pod::Spec.newdo |s|
s.name='HTMLReader'
s.version=`/usr/libexec/PlistBuddy -c "Print :CFBundleShortVersionString" Framework/Info.plist`.strip
s.summary="A WHATWG-compliant HTML parser in Objective-C."
s.homepage='https://github.com/nolanw/HTMLReader'
s.license="Public domain"
s.author={"Nolan Waite"=>'nolan@nolanw.ca'}
s.source={:git=>'https://github.com/nolanw/HTMLReader.git',:tag=>"v#{s.version}"}
s.source_files="Sources/**/*.[hm]"
s.requires_arc=true
s.ios.deployment_target='5.0'
s.osx.deployment_target='10.7'
s.tvos.deployment_target='9.0'
s.watchos.deployment_target='2.0'
end