-
Notifications
You must be signed in to change notification settings - Fork 222
/
IBMWatsonAssistantV2.podspec
28 lines (23 loc) · 1.41 KB
/
IBMWatsonAssistantV2.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
Pod::Spec.new do |s|
s.name = 'IBMWatsonAssistantV2'
s.version = '5.0.0'
s.summary = 'Client framework for the IBM Watson Assistant service'
s.description = <<-DESC
With the IBM Watson™ Assistant service, you can build a solution that understands
natural-language input and uses machine learning to respond to customers in a way that simulates a conversation between humans.
DESC
s.homepage = 'https://www.ibm.com/cloud/watson-assistant'
s.license = { :type => 'Apache License, Version 2.0', :file => 'LICENSE' }
s.authors = { 'Jeff Arn' => 'jtarn@us.ibm.com',
'Angelo Paparazzi' => 'angelo.paparazzi@ibm.com' }
s.module_name = 'Assistant'
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/AssistantV2/**/*.swift',
'Sources/SupportingFiles/InsecureConnection.swift',
'Sources/SupportingFiles/Shared.swift'
s.exclude_files = 'Sources/AssistantV2/Shared.swift',
'Sources/AssistantV2/InsecureConnection.swift'
s.swift_version = ['4.2', '5.0', '5.1']
s.dependency 'IBMSwiftSDKCore', '~> 1.2.1'
end