-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgoogle-maps-routing-v2.gemspec
36 lines (28 loc) · 1.4 KB
/
google-maps-routing-v2.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/maps/routing/v2/version", __dir__)
Gem::Specification.new do |gem|
gem.name = "google-maps-routing-v2"
gem.version = Google::Maps::Routing::V2::VERSION
gem.authors = ["Google LLC"]
gem.email = "[email protected]"
gem.description = "google-maps-routing-v2 is the official client library for the Google Maps Routing V2 API."
gem.summary = "API Client library for the Google Maps Routing V2 API"
gem.homepage = "https://github.com/googleapis/googleapis"
gem.license = "MIT"
gem.platform = Gem::Platform::RUBY
gem.files = `git ls-files -- lib/*`.split("\n") +
`git ls-files -- proto_docs/*`.split("\n") +
["README.md", "LICENSE.md", ".yardopts"]
gem.require_paths = ["lib"]
gem.required_ruby_version = ">= 2.6"
gem.add_dependency "gapic-common", ">= 0.19.1", "< 2.a"
gem.add_development_dependency "google-style", "~> 1.26.3"
gem.add_development_dependency "minitest", "~> 5.16"
gem.add_development_dependency "minitest-focus", "~> 1.1"
gem.add_development_dependency "minitest-rg", "~> 5.2"
gem.add_development_dependency "rake", ">= 13.0"
gem.add_development_dependency "redcarpet", "~> 3.0"
gem.add_development_dependency "simplecov", "~> 0.18"
gem.add_development_dependency "yard", "~> 0.9"
end