-
Notifications
You must be signed in to change notification settings - Fork 559
/
Copy pathgoogle-cloud-translate.gemspec
28 lines (21 loc) · 1.16 KB
/
google-cloud-translate.gemspec
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
# -*- ruby -*-
# encoding: utf-8
require File.expand_path("lib/google/cloud/translate/version", __dir__)
Gem::Specification.new do |gem|
gem.name = "google-cloud-translate"
gem.version = Google::Cloud::Translate::VERSION
gem.authors = ["Google LLC"]
gem.email = "[email protected]"
gem.description = "Cloud Translation can dynamically translate text between thousands of language pairs. Translation lets websites and programs programmatically integrate with the translation service."
gem.summary = "API Client library for the Cloud Translation API"
gem.homepage = "https://github.com/googleapis/google-cloud-ruby"
gem.license = "Apache-2.0"
gem.platform = Gem::Platform::RUBY
gem.files = `git ls-files -- lib/*`.split("\n") +
["README.md", "AUTHENTICATION.md", "LICENSE.md", ".yardopts", "MIGRATING.md"]
gem.require_paths = ["lib"]
gem.required_ruby_version = ">= 3.0"
gem.add_dependency "google-cloud-core", "~> 1.6"
gem.add_dependency "google-cloud-translate-v2", ">= 0.0", "< 2.a"
gem.add_dependency "google-cloud-translate-v3", ">= 0.11", "< 2.a"
end