2015-04-17 00:28:38 +00:00
|
|
|
lib = File.expand_path('../lib', __FILE__)
|
|
|
|
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
|
|
require 'google/apis/version'
|
2011-11-16 12:21:22 +00:00
|
|
|
|
2020-10-27 18:28:52 +00:00
|
|
|
Gem::Specification.new do |gem|
|
|
|
|
gem.name = 'google-api-client'
|
|
|
|
gem.version = Google::Apis::VERSION
|
|
|
|
gem.authors = ['Steven Bazyl', 'Tim Emiola', 'Sergio Gomes', 'Bob Aman']
|
|
|
|
gem.email = ['sbazyl@google.com']
|
|
|
|
gem.summary = 'Client for accessing Google APIs'
|
2024-02-17 11:19:07 +00:00
|
|
|
gem.homepage = 'https://gitlab.tp.rulingcom.com/chiu/google-api-ruby-client'
|
2020-10-27 18:28:52 +00:00
|
|
|
gem.license = 'Apache-2.0'
|
|
|
|
gem.metadata = {
|
2019-10-29 20:40:28 +00:00
|
|
|
"documentation_uri" => "https://googleapis.dev/ruby/google-api-client/v#{Google::Apis::VERSION}"
|
|
|
|
}
|
2021-01-07 21:49:46 +00:00
|
|
|
|
2022-04-05 07:52:26 +00:00
|
|
|
gem.post_install_message = <<-MESSAGE
|
|
|
|
*******************************************************************************
|
|
|
|
The google-api-client gem is deprecated and will likely not be updated further.
|
2021-01-07 21:49:46 +00:00
|
|
|
|
2022-04-05 07:52:26 +00:00
|
|
|
Instead, please install the gem corresponding to the specific service to use.
|
|
|
|
For example, to use the Google Drive V3 client, install google-apis-drive_v3.
|
|
|
|
For more information, see the FAQ in the OVERVIEW.md file or the YARD docs.
|
|
|
|
*******************************************************************************
|
|
|
|
MESSAGE
|
2021-01-07 21:49:46 +00:00
|
|
|
|
2020-12-28 01:31:47 +00:00
|
|
|
gem.files = Dir.glob("lib/**/*") +
|
|
|
|
Dir.glob("generated/**/*.rb") +
|
|
|
|
Dir.glob("*.md") +
|
|
|
|
[".yardopts", "LICENSE"]
|
2016-04-17 20:27:13 +00:00
|
|
|
|
2020-10-27 18:28:52 +00:00
|
|
|
gem.require_paths = %w[lib generated]
|
2011-11-16 12:21:22 +00:00
|
|
|
|
2021-01-23 13:05:48 +00:00
|
|
|
gem.required_ruby_version = '>= 2.0'
|
2016-03-31 00:48:55 +00:00
|
|
|
|
2021-01-01 01:13:48 +00:00
|
|
|
gem.add_runtime_dependency 'google-apis-core', '~> 0.1'
|
2021-01-01 20:29:10 +00:00
|
|
|
gem.add_runtime_dependency 'google-apis-generator', '~> 0.1'
|
2011-11-16 12:21:22 +00:00
|
|
|
end
|