Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .toys/ci.rb
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,13 @@ def run
dirs.each { |dir| puts " #{dir}" }
end

if dirs.include? 'google-apis-core'
puts 'Installing local google-apis-core changes...'
Dir.chdir 'google-apis-core' do
exec ['toys', 'install', '--yes']
end
end

dirs.each { |dir| run_in_dir dir }
end

Expand Down
41 changes: 21 additions & 20 deletions google-apis-core/google-apis-core.gemspec
Original file line number Diff line number Diff line change
@@ -1,30 +1,31 @@
require File.expand_path("lib/google/apis/core/version", __dir__)
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.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.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"
'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.files = Dir.glob('lib/**/*.rb') + Dir.glob('*.md') + ['.yardopts']
gem.require_paths = ['lib']

gem.required_ruby_version = '>= 3.2'
gem.add_runtime_dependency "representable", "~> 3.0"
gem.add_runtime_dependency "retriable", "~> 3.1"
gem.add_runtime_dependency "addressable", "~> 2.8", ">= 2.8.7"
gem.add_runtime_dependency "mini_mime", "~> 1.1"
gem.add_runtime_dependency "googleauth", "~> 1.14"
gem.add_runtime_dependency "faraday", "~> 2.13"
gem.add_runtime_dependency "faraday-follow_redirects", "~> 0.3"
gem.add_runtime_dependency 'addressable', '~> 2.8', '>= 2.8.7'
gem.add_runtime_dependency 'faraday', '~> 2.13'
gem.add_runtime_dependency 'faraday-follow_redirects', '~> 0.3'
gem.add_runtime_dependency 'googleauth', '~> 1.14'
gem.add_runtime_dependency 'mini_mime', '~> 1.1'
gem.add_runtime_dependency 'multi_json', '~> 1.11'
gem.add_runtime_dependency 'representable', '~> 3.0'
gem.add_runtime_dependency 'retriable', '~> 3.1'
end
Loading