forked from googleapis/google-auth-library-ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgoogleauth.gemspec
executable file
·35 lines (31 loc) · 1.25 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
# -*- ruby -*-
# encoding: utf-8
$LOAD_PATH.push File.expand_path("../lib", __FILE__)
require "googleauth/version"
Gem::Specification.new do |gem|
gem.name = "googleauth"
gem.version = Google::Auth::VERSION
gem.authors = ["Tim Emiola"]
gem.email = "[email protected]"
gem.homepage = "https://github.com/google/google-auth-library-ruby"
gem.summary = "Google Auth Library for Ruby"
gem.license = "Apache-2.0"
gem.description = <<-DESCRIPTION
Allows simple authorization for accessing Google APIs.
Provide support for Application Default Credentials, as described at
https://developers.google.com/accounts/docs/application-default-credentials
DESCRIPTION
gem.files = `git ls-files`.split("\n")
gem.test_files = `git ls-files -- spec/*`.split("\n")
gem.executables = `git ls-files -- bin/*.rb`.split("\n").map do |f|
File.basename(f)
end
gem.require_paths = ["lib"]
gem.platform = Gem::Platform::RUBY
gem.add_dependency "faraday", "~> 0.9"
gem.add_dependency "jwt", ">= 1.4", "< 3.0"
gem.add_dependency "memoist", "~> 0.16"
gem.add_dependency "multi_json", "~> 1.11"
gem.add_dependency "os", ">= 0.9", "< 2.0"
gem.add_dependency "signet", "~> 0.7"
end