forked from googleapis/google-cloud-ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgoogle-cloud-env.gemspec
33 lines (27 loc) · 1.65 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
32
33
# -*- encoding: utf-8 -*-
require File.expand_path("../lib/google/cloud/env/version", __FILE__)
Gem::Specification.new do |gem|
gem.name = "google-cloud-env"
gem.version = Google::Cloud::Env::VERSION
gem.authors = ["Daniel Azuma"]
gem.email = ["dazuma@google.com"]
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/google-cloud-ruby/tree/master/google-cloud-env"
gem.license = "Apache-2.0"
gem.files = `git ls-files -- lib/*`.split("\n") +
["README.md", "CONTRIBUTING.md", "CHANGELOG.md", "CODE_OF_CONDUCT.md", "LICENSE", ".yardopts"]
gem.require_paths = ["lib"]
gem.required_ruby_version = ">= 2.0.0"
gem.add_dependency "faraday", "~> 0.11"
gem.add_development_dependency "minitest", "~> 5.10"
gem.add_development_dependency "minitest-autotest", "~> 1.0"
gem.add_development_dependency "minitest-focus", "~> 1.1"
gem.add_development_dependency "minitest-rg", "~> 5.2"
gem.add_development_dependency "autotest-suffix", "~> 1.1"
gem.add_development_dependency "redcarpet", "~> 3.0"
gem.add_development_dependency "rubocop", "~> 0.64.0"
gem.add_development_dependency "simplecov", "~> 0.9"
gem.add_development_dependency "yard", "~> 0.9"
gem.add_development_dependency "yard-doctest", "~> 0.1.13"
end