-
-
Notifications
You must be signed in to change notification settings - Fork 351
/
SwiftSoup.podspec
22 lines (19 loc) · 1009 Bytes
/
SwiftSoup.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Pod::Spec.new do |s|
s.name = 'SwiftSoup'
s.version = '2.7.6'
s.summary = 'Swift HTML Parser / Reader, XML , with best of DOM, CSS, and jquery'
s.description = <<-DESC
SwiftSoup is a Swift library for working with real-world HTML. It provides a very convenient API for extracting and manipulating data, using the best of DOM, CSS, and jquery-like methods.
DESC
s.homepage = 'https://github.com/scinfu/SwiftSoup'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Nabil Chatbi' => '[email protected]' }
s.source = { :git => 'https://github.com/scinfu/SwiftSoup.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/scinfu'
s.ios.deployment_target = '13.0'
s.osx.deployment_target = '10.15'
s.watchos.deployment_target = '6.0'
s.tvos.deployment_target = '13.0'
s.source_files = 'Sources/**/*.swift'
s.swift_versions = ['4.0', '4.2', '5.0', '5.1']
end