From 5de6471fa66b3504cea15499f2dc186b7d890e47 Mon Sep 17 00:00:00 2001 From: Torrey Payne <11740989+torreypayne@users.noreply.github.com> Date: Tue, 11 Aug 2026 22:50:15 +0000 Subject: [PATCH] chore(tombstone-library): fix version.rb require and files path in gemspec template --- toys/tombstone-library/.data/gemspec-template.erb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/toys/tombstone-library/.data/gemspec-template.erb b/toys/tombstone-library/.data/gemspec-template.erb index c6a91e30..aa104d92 100644 --- a/toys/tombstone-library/.data/gemspec-template.erb +++ b/toys/tombstone-library/.data/gemspec-template.erb @@ -1,4 +1,4 @@ -require File.expand_path("<%= namespace_dir %>/version", __dir__) +require File.expand_path("lib/<%= namespace_dir %>/version", __dir__) Gem::Specification.new do |gem| gem.name = "<%= gem_name %>" @@ -21,7 +21,7 @@ Gem::Specification.new do |gem| gem.homepage = "https://github.com/googleapis/google-cloud-ruby" gem.license = "Apache-2.0" gem.platform = Gem::Platform::RUBY - gem.files = ["README.md", "LICENSE.md", ".yardopts", "<%= namespace_dir %>/version.rb"] + gem.files = ["README.md", "LICENSE.md", ".yardopts", "lib/<%= namespace_dir %>/version.rb"] gem.require_paths = ["lib"] gem.required_ruby_version = ">= 3.0" end