forked from googleapis/google-api-ruby-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgoogle-apis-core.gemspec
31 lines (28 loc) · 1.43 KB
/
google-apis-core.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
require File.expand_path("lib/google/apis/core/version", __dir__)
gem_version = Google::Apis::Core::VERSION
Gem::Specification.new do |gem|
gem.name = "google-apis-core"
gem.version = gem_version
gem.authors = ["Google LLC"]
gem.email = "googleapis-packages@google.com"
gem.summary = "Common utility and base classes for legacy Google REST clients"
gem.homepage = "https://github.com/google/google-api-ruby-client"
gem.license = "Apache-2.0"
gem.metadata = {
"bug_tracker_uri" => "https://github.com/googleapis/google-api-ruby-client/issues",
"changelog_uri" => "https://github.com/googleapis/google-api-ruby-client/tree/main/google-apis-core/CHANGELOG.md",
"documentation_uri" => "https://googleapis.dev/ruby/google-apis-core/v#{gem_version}",
"source_code_uri" => "https://github.com/googleapis/google-api-ruby-client/tree/main/google-apis-core"
}
gem.files = Dir.glob("lib/**/*.rb") + Dir.glob("*.md") + [".yardopts"]
gem.require_paths = ["lib"]
gem.required_ruby_version = '>= 2.5'
gem.add_runtime_dependency "representable", "~> 3.0"
gem.add_runtime_dependency "retriable", ">= 2.0", "< 4.a"
gem.add_runtime_dependency "addressable", "~> 2.5", ">= 2.5.1"
gem.add_runtime_dependency "mini_mime", "~> 1.0"
gem.add_runtime_dependency "googleauth", ">= 0.16.2", "< 2.a"
gem.add_runtime_dependency "httpclient", ">= 2.8.1", "< 3.a"
gem.add_runtime_dependency "rexml"
gem.add_runtime_dependency "webrick"
end