google-auth-library-ruby/googleauth.gemspec

36 lines
1.2 KiB
Ruby
Raw Normal View History

# -*- ruby -*-
# encoding: utf-8
$LOAD_PATH.push File.expand_path('../lib', __FILE__)
require 'googleauth/version'
Gem::Specification.new do |s|
s.name = 'googleauth'
s.version = Google::Auth::VERSION
s.authors = ['Tim Emiola']
s.email = 'temiola@google.com'
2015-02-12 04:15:15 +00:00
s.homepage = 'https://github.com/google/google-auth-library-ruby'
s.summary = 'Google Auth Library for Ruby'
2015-02-25 06:56:40 +00:00
s.license = 'Apache-2.0'
2018-10-16 19:08:58 +00:00
s.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
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- spec/*`.split("\n")
s.executables = `git ls-files -- bin/*.rb`.split("\n").map do |f|
File.basename(f)
end
s.require_paths = ['lib']
s.platform = Gem::Platform::RUBY
2017-04-11 14:56:36 +00:00
s.add_dependency 'faraday', '~> 0.12'
s.add_dependency 'jwt', '>= 1.4', '< 3.0'
2018-10-16 19:08:58 +00:00
s.add_dependency 'memoist', '~> 0.16'
s.add_dependency 'multi_json', '~> 1.11'
s.add_dependency 'os', '>= 0.9', '< 2.0'
s.add_dependency 'signet', '~> 0.7'
end