forked from scinfu/SwiftSoup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SwiftSoup.podspec
34 lines (29 loc) · 1.32 KB
/
SwiftSoup.podspec
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
28
29
30
31
32
33
34
#
# Be sure to run `pod lib lint SwiftSoup.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'SwiftSoup'
s.version = '2.6.1'
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 = "11.0"
s.osx.deployment_target = "10.13"
s.watchos.deployment_target = "4.0"
s.tvos.deployment_target = "11.0"
s.source_files = 'Sources/**/*.swift'
s.swift_versions = ['4.0', '4.2', '5.0', '5.1']
#s.resource_bundles = {
# 'SwiftSoup' => ['Assets/*.properties']
#}
end