Skip to content

Commit 6b853e1

Browse files
authored
fix(ruby): Close hanging bracket (#9427)
* Fix missing close bracket. * Automated update of seed files --------- Co-authored-by: chanks <[email protected]>
1 parent ab7a7f1 commit 6b853e1

File tree

2 files changed

+134
-60
lines changed
  • generators/ruby-v2/sdk/src/endpoint/http
  • seed/ruby-sdk-v2/pagination/lib/seed/inline_users/inline_users

2 files changed

+134
-60
lines changed

generators/ruby-v2/sdk/src/endpoint/http/RawClient.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ export class RawClient {
136136
if (part.pathParameter != null) {
137137
const reference = pathParameterReferences[part.pathParameter];
138138
if (reference == null) {
139-
rubyPath += `#{${part.tail}`;
139+
rubyPath += `#{${part.tail}}`;
140140
} else {
141141
// Insert Ruby interpolation for the path parameter
142142
rubyPath += `#{${reference}}${part.tail}`;

seed/ruby-sdk-v2/pagination/lib/seed/inline_users/inline_users/client.rb

Lines changed: 133 additions & 59 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)