From 95c450e6d39ba5987aadff973e88e07d1d52315d Mon Sep 17 00:00:00 2001 From: Ethan Konkolowicz Date: Fri, 30 Jan 2026 11:45:05 -0500 Subject: [PATCH 1/2] fized gemspec gen mustache --- turnkey_client_inputs/templates/gemspec.mustache | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/turnkey_client_inputs/templates/gemspec.mustache b/turnkey_client_inputs/templates/gemspec.mustache index a0a651d..cc6bce9 100644 --- a/turnkey_client_inputs/templates/gemspec.mustache +++ b/turnkey_client_inputs/templates/gemspec.mustache @@ -30,7 +30,7 @@ Gem::Specification.new do |s| s.add_development_dependency 'rspec', '~> 3.6', '>= 3.6.0' - s.files = `find *`.split("\n").uniq.sort.select { |f| !f.empty? } + s.files = `git ls-files -z`.split("\x0") s.executables = [] s.require_paths = ["lib"] end From 61c98116610f755b7f2db50439bef8f136df0f92 Mon Sep 17 00:00:00 2001 From: Ethan Konkolowicz Date: Fri, 30 Jan 2026 11:48:13 -0500 Subject: [PATCH 2/2] removed the Bump step in our re-generating client steps --- README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/README.md b/README.md index e201a82..9bcfae1 100644 --- a/README.md +++ b/README.md @@ -57,7 +57,6 @@ TurnkeyClient::SessionsApi.new(TURNKEY_CLIENT).get_whoami({ organization_id: "yo We use a swagger spec and [Swagger Codegen](https://github.com/swagger-api/swagger-codegen) to generate `turnkey_client`. To update this gem: * Update the swagger spec in [`turnkey_client_inputs`](./turnkey_client_inputs/) -* Bump `gemVersion` in [`config.json`](./turnkey_client_inputs/config.json) * Run `make` ## Updating codegen templates