forked from scinfu/SwiftSoup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSwiftSoup.podspec
33 lines (28 loc) · 1.27 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
#
# 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.2.0'
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' => 'scinfu@gmail.com' }
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 = "8.0"
s.osx.deployment_target = "10.10"
s.watchos.deployment_target = "2.0"
s.tvos.deployment_target = "9.0"
s.source_files = 'Sources/**/*.swift'
#s.resource_bundles = {
# 'SwiftSoup' => ['Assets/*.properties']
#}
end