-
Notifications
You must be signed in to change notification settings - Fork 111
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ruby conventions #167
Comments
also related to #143 |
Hi, Thank you for your suggestions and offer. This message has been communicated to the team and we will try to adhere to the conventions of the language as much as possible. We will keep you in mind, should any help be required. |
I believe this also is breaking rails 6 with zeitwerk
|
I have to second this, the entire SDK was written in Ruby as if its Java also related to 143 request.sorting = TransactionListSorting.new;
request.sorting.orderBy = TransactionListOrderFieldEnum::Id;
request.sorting.orderDescending = true;
vs request.sorting =TransactionListSorting.new(orderBy:TransactionListOrderFieldEnum::Id, orderDescending:true); |
Your ruby code blantantly ignores most ruby conventions (e.g. underscore_method_names) and uses (what looks like) java based naming schemes everywhere
Is an expectation to migrate this sdk to use ruby conventions ever going to be reasonable for a major release? I wouldn't mind helping, if that isn't something you would be opposed to
The text was updated successfully, but these errors were encountered: