-
Notifications
You must be signed in to change notification settings - Fork 222
/
IBMWatsonDiscoveryV2.podspec
29 lines (24 loc) · 1.53 KB
/
IBMWatsonDiscoveryV2.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 = 'IBMWatsonDiscoveryV2'
s.version = '5.0.0'
s.summary = 'Client framework for the IBM Watson Discovery V2 service'
s.description = <<-DESC
IBM Watson™ Discovery makes it possible to rapidly build cognitive, cloud-based exploration applications
that unlock actionable insights hidden in unstructured data — including your own proprietary data,
as well as public and third-party data. IBM Watson™ Discovery V2 is available only on IBM Cloud Pak for Data.
DESC
s.homepage = 'https://www.ibm.com/watson/services/discovery/'
s.license = { :type => 'Apache License, Version 2.0', :file => 'LICENSE' }
s.authors = { 'Jeff Arn' => '[email protected]',
'Angelo Paparazzi' => '[email protected]' }
s.module_name = 'Discovery'
s.ios.deployment_target = '10.0'
s.source = { :git => 'https://github.com/watson-developer-cloud/swift-sdk.git', :tag => "v#{s.version}" }
s.source_files = 'Sources/DiscoveryV2/**/*.swift',
'Sources/SupportingFiles/InsecureConnection.swift',
'Sources/SupportingFiles/Shared.swift'
s.exclude_files = 'Sources/DiscoveryV2/Shared.swift',
'Sources/DiscoveryV2/InsecureConnection.swift'
s.swift_version = ['4.2', '5.0', '5.1']
s.dependency 'IBMSwiftSDKCore', '~> 1.0.0'
end