google-auth-library-ruby/googleauth.gemspec

39 lines
1.3 KiB
Ruby
Raw Permalink Normal View History

# -*- ruby -*-
# encoding: utf-8
2019-03-15 19:34:54 +00:00
$LOAD_PATH.push File.expand_path("lib", __dir__)
2019-02-27 16:06:41 +00:00
require "googleauth/version"
2019-02-22 18:38:05 +00:00
Gem::Specification.new do |gem|
2019-02-27 16:06:41 +00:00
gem.name = "googleauth"
2019-02-22 18:38:05 +00:00
gem.version = Google::Auth::VERSION
2019-02-27 16:06:41 +00:00
gem.authors = ["Tim Emiola"]
gem.email = "temiola@google.com"
2020-03-16 15:33:17 +00:00
gem.homepage = "https://github.com/googleapis/google-auth-library-ruby"
2019-02-27 16:06:41 +00:00
gem.summary = "Google Auth Library for Ruby"
gem.license = "Apache-2.0"
2019-02-22 18:38:05 +00:00
gem.description = <<-DESCRIPTION
Allows simple authorization for accessing Google APIs.
Provide support for Application Default Credentials, as described at
2015-02-12 13:00:19 +00:00
https://developers.google.com/accounts/docs/application-default-credentials
2018-10-16 19:08:58 +00:00
DESCRIPTION
2019-03-15 19:34:54 +00:00
gem.files = `git ls-files`.split "\n"
gem.test_files = `git ls-files -- spec/*`.split "\n"
2019-02-22 18:38:05 +00:00
gem.executables = `git ls-files -- bin/*.rb`.split("\n").map do |f|
2019-03-15 19:34:54 +00:00
File.basename f
end
2019-02-27 16:06:41 +00:00
gem.require_paths = ["lib"]
2019-02-22 18:38:05 +00:00
gem.platform = Gem::Platform::RUBY
gem.required_ruby_version = ">= 2.0"
gem.add_dependency "faraday", "~> 0.15.4"
2019-02-27 16:06:41 +00:00
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"
2020-06-17 15:13:42 +00:00
gem.add_development_dependency "yard", "~> 0.9"
end