-
Notifications
You must be signed in to change notification settings - Fork 222
/
IBMWatsonLanguageTranslatorV3.podspec
27 lines (22 loc) · 1.4 KB
/
IBMWatsonLanguageTranslatorV3.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 = 'IBMWatsonLanguageTranslatorV3'
s.version = '5.0.0'
s.summary = 'Client framework for the IBM Watson Language Translator service'
s.description = <<-DESC
IBM Watson™ Language Translator can identify the language of text and translate it into different languages programmatically.
DESC
s.homepage = 'https://www.ibm.com/cloud/watson-language-translator'
s.license = { :type => 'Apache License, Version 2.0', :file => 'LICENSE' }
s.authors = { 'Jeff Arn' => '[email protected]',
'Angelo Paparazzi' => '[email protected]' }
s.module_name = 'LanguageTranslator'
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/LanguageTranslatorV3/**/*.swift',
'Sources/SupportingFiles/InsecureConnection.swift',
'Sources/SupportingFiles/Shared.swift'
s.exclude_files = 'Sources/LanguageTranslatorV3/Shared.swift',
'Sources/LanguageTranslatorV3/InsecureConnection.swift'
s.swift_version = ['4.2', '5.0', '5.1']
s.dependency 'IBMSwiftSDKCore', '~> 1.2.1'
end