forked from Mynigma/HTMLPurifier
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHTMLPurifier.podspec
More file actions
25 lines (22 loc) · 1.15 KB
/
HTMLPurifier.podspec
File metadata and controls
25 lines (22 loc) · 1.15 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
Pod::Spec.new do |s|
s.name = "HTMLPurifier"
s.version = "1.0.0"
s.summary = "HTMLPurifier for Objective-C is a framework for standards-compliant HTML filtering."
s.description = "HTMLPurifier for Objective-C is a framework for standards-compliant HTML filtering. Its main purpose is sanitization of untrusted HTML such as incoming emails or user-supplied markup."
s.homepage = "https://mynigma.org"
s.license = { :type => 'GPL with libgit2-style exception' }
s.source = { :git => 'https://github.com/Mynigma/HTMLPurifier.git', :tag => '1.0.0' }
s.social_media_url = 'https://www.facebook.com/mynigma'
s.ios.deployment_target = '7.0'
s.osx.deployment_target = '10.8'
s.requires_arc = true
s.source_files = 'Classes'
s.ios.exclude_files = 'Classes/osx'
s.osx.exclude_files = 'Classes/ios'
s.public_header_files = 'Classes/**/*.h'
# s.frameworks = 'SomeFramework', 'AnotherFramework'
# s.dependency 'JSONKit', '~> 1.4'
end