forked from googleapis/google-cloud-ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgoogle-cloud-bigquery-reservation.gemspec
36 lines (28 loc) · 1.55 KB
/
google-cloud-bigquery-reservation.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
29
30
31
32
33
34
35
36
# -*- ruby -*-
# encoding: utf-8
require File.expand_path("lib/google/cloud/bigquery/reservation/version", __dir__)
Gem::Specification.new do |gem|
gem.name = "google-cloud-bigquery-reservation"
gem.version = Google::Cloud::Bigquery::Reservation::VERSION
gem.authors = ["Google LLC"]
gem.email = "googleapis-packages@google.com"
gem.description = "The BigQuery Reservation API provides the mechanisms by which enterprise users can provision and manage dedicated resources such as slots and BigQuery BI Engine memory allocations."
gem.summary = "API Client library for the BigQuery Reservation 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"]
gem.require_paths = ["lib"]
gem.required_ruby_version = ">= 2.5"
gem.add_dependency "google-cloud-bigquery-reservation-v1", "~> 0.0"
gem.add_dependency "google-cloud-core", "~> 1.5"
gem.add_development_dependency "google-style", "~> 1.25.1"
gem.add_development_dependency "minitest", "~> 5.14"
gem.add_development_dependency "minitest-focus", "~> 1.1"
gem.add_development_dependency "minitest-rg", "~> 5.2"
gem.add_development_dependency "rake", ">= 12.0"
gem.add_development_dependency "redcarpet", "~> 3.0"
gem.add_development_dependency "simplecov", "~> 0.9"
gem.add_development_dependency "yard", "~> 0.9"
end