-
Notifications
You must be signed in to change notification settings - Fork 7
/
google-cloud-env.gemspec
31 lines (25 loc) · 1.47 KB
/
google-cloud-env.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
require File.expand_path("lib/google/cloud/env/version", __dir__)
gem_version = Google::Cloud::Env::VERSION
Gem::Specification.new do |gem|
gem.name = "google-cloud-env"
gem.version = gem_version
gem.authors = ["Daniel Azuma"]
gem.email = ["[email protected]"]
gem.description = "google-cloud-env provides information on the Google Cloud Platform hosting environment. " \
"Applications can use this library to determine hosting context information such as the " \
"project ID, whether App Engine is running, what tags are set on the VM instance, and much " \
"more."
gem.summary = "Google Cloud Platform hosting environment information."
gem.homepage = "https://github.com/googleapis/ruby-cloud-env"
gem.license = "Apache-2.0"
gem.files = Dir.glob("lib/**/*.rb") + Dir.glob("*.md") + ["LICENSE", ".yardopts"]
gem.require_paths = ["lib"]
gem.required_ruby_version = ">= 3.0"
gem.add_dependency "faraday", ">= 1.0", "< 3.a"
if gem.respond_to? :metadata
gem.metadata["changelog_uri"] = "https://rubydoc.info/gems/google-cloud-env/#{gem_version}/CHANGELOG.md"
gem.metadata["source_code_uri"] = "https://github.com/googleapis/ruby-cloud-env"
gem.metadata["bug_tracker_uri"] = "https://github.com/googleapis/ruby-cloud-env/issues"
gem.metadata["documentation_uri"] = "https://rubydoc.info/gems/google-cloud-env/#{gem_version}"
end
end