forked from exyte/ReadabilityKit
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathReadabilityKit.podspec
29 lines (21 loc) · 917 Bytes
/
ReadabilityKit.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
Pod::Spec.new do |s|
s.name = 'ReadabilityKit'
s.version = '0.7.4'
s.summary = 'Metadata extractor for news, articles and full-texts.'
s.homepage = 'https://github.com/exyte/ReadabilityKit.git'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Exyte' => 'info@exyte.com' }
s.source = { :git => 'https://github.com/exyte/ReadabilityKit.git', :tag => s.version.to_s }
s.social_media_url = 'http://www.exyte.com'
s.ios.deployment_target = '10.0'
s.osx.deployment_target = "10.12"
s.watchos.deployment_target = '3.0'
s.tvos.deployment_target = '10.0'
s.swift_versions = ['5.0', '5.1']
s.dependency 'Ji', '5.0.0'
s.xcconfig = { 'HEADER_SEARCH_PATHS' => '$(SDKROOT)/usr/include/libxml2' }
s.source_files = [
'Sources/*.swift',
]
s.pod_target_xcconfig = { 'SWIFT_VERSION' => '5.0' }
end