forked from watson-developer-cloud/swift-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
IBMWatsonAssistantV2.podspec
27 lines (22 loc) · 1.31 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
Pod::Spec.new do |s|
s.name = 'IBMWatsonAssistantV2'
s.version = '2.1.1'
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/watson/ai-assistant/'
s.license = { :type => 'Apache License, Version 2.0', :file => 'LICENSE' }
s.authors = { 'Jeff Arn' => '[email protected]',
'Mike Kistler' => '[email protected]' }
s.module_name = 'Assistant'
s.ios.deployment_target = '10.0'
s.source = { :git => 'https://github.com/watson-developer-cloud/swift-sdk.git', :tag => s.version.to_s }
s.source_files = 'Source/AssistantV2/**/*.swift',
'Source/SupportingFiles/InsecureConnection.swift',
'Source/SupportingFiles/Shared.swift'
s.exclude_files = 'Source/AssistantV2/Shared.swift'
s.swift_version = '4.2'
s.dependency 'IBMWatsonRestKit', '~> 3.0.0'
end