Sha256: 8b94e0498327db0f08d8ac776d394339866f48bf7ba7afe3e59f7e76971cdea1

Contents?: true

Size: 1.34 KB

Versions: 4

Compression:

Stored size: 1.34 KB

Contents

# -*- 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.homepage      = "https://github.com/googleapis/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.required_ruby_version = ">= 2.5"

  gem.add_dependency "faraday", ">= 0.17.3", "< 2.0"
  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.14"

  gem.add_development_dependency "yard", "~> 0.9"
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
googleauth-0.17.0 googleauth.gemspec
googleauth-0.16.2 googleauth.gemspec
googleauth-0.16.1 googleauth.gemspec
googleauth-0.16.0 googleauth.gemspec