-
Notifications
You must be signed in to change notification settings - Fork 256
/
googleauth.gemspec
executable file
·37 lines (30 loc) · 1.39 KB
/
googleauth.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
37
# -*- ruby -*-
# encoding: utf-8
$LOAD_PATH.push File.expand_path("lib", __dir__)
require "googleauth/version"
Gem::Specification.new do |gem|
gem.name = "googleauth"
gem.version = Google::Auth::VERSION
gem.authors = ["Tim Emiola"]
gem.email = ["temiola@google.com"]
gem.summary = "Google Auth Library for Ruby"
gem.description = "Implements simple authorization for accessing Google APIs, and provides support for " \
"Application Default Credentials."
gem.homepage = "https://github.com/googleapis/google-auth-library-ruby"
gem.license = "Apache-2.0"
gem.files = Dir.glob("lib/**/*.rb") + Dir.glob("*.md") + ["LICENSE", ".yardopts"]
gem.require_paths = ["lib"]
gem.platform = Gem::Platform::RUBY
gem.required_ruby_version = ">= 2.7"
gem.add_dependency "faraday", ">= 1.0", "< 3.a"
gem.add_dependency "google-cloud-env", "~> 2.1"
gem.add_dependency "jwt", ">= 1.4", "< 3.0"
gem.add_dependency "multi_json", "~> 1.11"
gem.add_dependency "os", ">= 0.9", "< 2.0"
gem.add_dependency "signet", ">= 0.16", "< 2.a"
if gem.respond_to? :metadata
gem.metadata["changelog_uri"] = "https://github.com/googleapis/google-auth-library-ruby/blob/main/CHANGELOG.md"
gem.metadata["source_code_uri"] = "https://github.com/googleapis/google-auth-library-ruby"
gem.metadata["bug_tracker_uri"] = "https://github.com/googleapis/google-auth-library-ruby/issues"
end
end